Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
irxn
Starting Member
13 Posts |
Posted - 2012-09-20 : 09:41:54
|
Hi,I get following error when I force a SQL Statement from another SQL Server:Execution terminated by the provider because a resource limit was reached.In the settings of the server and the linked server, query timeout and connection timeout is set to 0.But this error occurs.Server A: SQL Server 2008Server B: SQL Server 2005Server A wants to retrieve data from Server B.Is there anything else I can do?Best RegardsPeter |
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
irxn
Starting Member
13 Posts |
Posted - 2012-09-21 : 03:51:23
|
select Artikelposten.[item no_] collate latin1_general_ci_as as Artikel_nr, round(convert(float, sum(Artikelposten.[remaining quantity])), 4) as Restmenge into dbo.temp_Bestand_Abgleich_nav_tabfrom navision.nav_orig.dbo.[01haubenberger$item ledger entry] Artikelposten where artikelposten.[location code] = 'FW' and [remaining quantity] <> 0group by Artikelposten.[item no_] quote: Originally posted by tkizer Show us the query.Tara KizerMicrosoft MVP for Windows Server System - SQL Serverhttp://weblogs.sqlteam.com/tarad/Subscribe to my blog
|
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
|
|
|
|