Viewing 15 posts - 76 through 90 (of 204 total)
Great question, it taught me something new today, thank you Paul! I got it wrong because I believed that log backups will be smaller (did not even notice a lot...
June 8, 2010 at 2:53 pm
Wayne already provided an excellent solution in the post above. Here is the alternative utilizing the filtering you need based on the having predicate. I will have to start with...
June 7, 2010 at 3:41 pm
There is no way I can possible dislike when my post is commented by you Jeff. When I wrote that I liked that you picked on my post, I actually...
June 7, 2010 at 2:37 pm
Jeff Moden (6/4/2010)
June 7, 2010 at 12:32 pm
Rick Lang (6/7/2010)
June 7, 2010 at 10:05 am
This is a very cool question, thank you Hugo. In addition to requiring some brain racking to understand and answer it correctly, it is also the best example I have...
June 7, 2010 at 9:18 am
I found the solution to your problem on MSDN blogs site. It really makes sense (as all these problems do in the end). The bottom line is that the source...
June 4, 2010 at 10:36 am
And the ad hoc distributed queries option is set to 1 right?
sp_configure 'Ad Hoc Distributed Queries';
shows 1 in both config_value and run_value columns?
Oleg
June 4, 2010 at 10:18 am
Did you try to run the text file, just to make sure that there is nothing wrong with openrowset queries?
declare @contents varchar(max);
select @contents = f.BulkColumn
...
June 4, 2010 at 8:43 am
Jeff Moden (6/3/2010)
June 3, 2010 at 3:19 pm
WayneS (6/3/2010)
Are you saying that you actually have Excel loaded on your server? Excel (all Office products) are not supported on a server.
I was trying to say that Excel file...
June 3, 2010 at 2:49 pm
For sanity check you can still try checking for locks though. I don't know which process you have in place to write Excel files, but in theory what is possible...
June 3, 2010 at 2:38 pm
I was able to reproduce the error you are getting. Here are the steps:
Create the xls file on the server (C:\Useless\sample.xls)
Run the script to get the data:
select *
from openrowset
(...
June 3, 2010 at 12:19 pm
May be what I am trying to suggest is dumb, please forgive me if it is. Does the aforementioned xls file exists in C:\Mraf folder where C: is the server...
June 3, 2010 at 11:52 am
Whenever you need to execute a set based update which modifies data in the linked server table, the MSDTC will execute your updates row-by-row despite the fact that your statement...
June 3, 2010 at 10:25 am
Viewing 15 posts - 76 through 90 (of 204 total)