Viewing 15 posts - 256 through 270 (of 519 total)
When using the 4 part identifiers, sql query optimizer handles it behind the scenes, so to speak using DTS and passing table results. It's just when using openquery or designing...
December 29, 2002 at 12:30 am
I thought of something else. At times when writing files out from SQL, I've encountered issues from spaces and such in the path. By enclosing the full path and filename...
December 27, 2002 at 11:41 am
As far as getting the parameters, that's easy, grab the text from the system table containing the stored proc, and using the structure of Create Proc Name param1,param2,param3 AS you...
December 27, 2002 at 11:36 am
I use UNC paths all the time to import text files. Your format is fine, and like jaybmehta said, you need the correct permissions to the share. I just wanted...
December 27, 2002 at 11:25 am
Since OPENQUERY passes a string through as it does, I don't believe you can get around that part. However, you can do a lot by creating a stored proc on...
December 27, 2002 at 11:18 am
The three most widely used tools of reporting from what I've seen, have been Crystal reports (Most widely functional and since version 8.1, getting decent but still a programmer's tool),...
December 26, 2002 at 9:12 pm
I agree with mromm.
I also would suggest using sp_sqlexec instead of exec if you stay with dynamic sql. It generates a much more reusable execution plan, and has the added...
December 26, 2002 at 9:03 pm
This is kinda a kludge, but a quick workaround to get something in excel format is to simply write the data as a tab delimited format, and save it with...
December 26, 2002 at 8:58 pm
I think I agree with mromm. One of my previous jobs was dealing with documents uploaded by end users, converted to adobe pdf, and stored on the system. The end...
December 26, 2002 at 10:29 am
Union All works the same in Sql. Just create it using a script rather than the EM, as that's one of the limits of EM.
December 26, 2002 at 8:03 am
When you say you script them, have you applied the script to a different server? One without UDT's defined on it already? And it worked?
And when you say,
"Frankly if...
December 20, 2002 at 6:27 pm
Even though some of us were aware, It's always great to see. In my case, I haven't though of it in years that I can remember. It's not something that's...
December 20, 2002 at 5:15 pm
I agree with both paulhumphris posts. I've seen the drops in performance myself in particular situations, but with a little work, you can set the level for considering a...
December 20, 2002 at 4:51 pm
Viewing 15 posts - 256 through 270 (of 519 total)