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.

 All Forums
 SQL Server 2005 Forums
 SQL Server Administration (2005)
 Execution terminated by the provider because a res

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 2008
Server B: SQL Server 2005

Server A wants to retrieve data from Server B.

Is there anything else I can do?

Best Regards
Peter

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2012-09-20 : 13:23:09
Show us the query.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page

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_tab
from navision.nav_orig.dbo.[01haubenberger$item ledger entry] Artikelposten
where artikelposten.[location code] = 'FW' and [remaining quantity] <> 0
group by Artikelposten.[item no_]


quote:
Originally posted by tkizer

Show us the query.

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog

Go to Top of Page

tkizer
Almighty SQL Goddess

38200 Posts

Posted - 2012-09-21 : 15:42:36
How many rows?

Tara Kizer
Microsoft MVP for Windows Server System - SQL Server
http://weblogs.sqlteam.com/tarad/

Subscribe to my blog
Go to Top of Page
   

- Advertisement -