Viewing 15 posts - 226 through 240 (of 321 total)
Lynn Pettis (5/9/2008)
May 9, 2008 at 10:37 am
I believe you need to have it wrapped in quotes or double quotes.
SET @ExportLocation = '''C:\SQLData\Exports\Sales-' + @ExportDate+ '.xls'''
or
SET @ExportLocation = '"C:\SQLData\Exports\Sales-' + @ExportDate+ '.xls"'
May 6, 2008 at 8:03 am
I wish I did know more about IIS, but I don't. I do know, however, that IIS didn't wake up one morning and decide that Windows Authentication just wan't good...
May 6, 2008 at 7:47 am
Jack Corbett (5/2/2008)
Tom Garth (5/2/2008)
http://www.simple-talk.com/sql/t-sql-programming/sql-server-excel-workbench/
Will someone PLEASE tell me how to...
May 2, 2008 at 10:39 am
Everything you ever wanted to know about working with Excel using T-SQL can be found at this link.
www.simple-talk.com/sql/t-sql-programming/sql-server-excel-workbench/
Thanks for the answer Jack:Will someone PLEASE tell me how to properly post...
May 2, 2008 at 10:16 am
It's nice to see that I'm not the only one who is avoiding doing any real work this morning.
TGIF
May 2, 2008 at 9:44 am
magarity kerns (5/2/2008)
May 2, 2008 at 9:30 am
Michael Valentine Jones (5/1/2008)
declare @ int set @=0while @<100begin set @=@+1print left(@,sign(@%3*@%5)*3)+
left('Bizz',4-sign(@%3)*4)+left('Buzz',4-sign(@%5)*4)end
Short and easy to understand 🙂
Here is a...
May 2, 2008 at 9:00 am
One thing to note: If you have a 32 bit app that you want to run on the server's OS, and if it uses ODBC, you will want to dig...
May 1, 2008 at 5:51 pm
WOW! 21 pages as of this post. Stimulating. I got here late and had to stop reading after page 9. I thought i would throw in another approach that I...
May 1, 2008 at 4:30 pm
schumi (4/30/2008)
April 30, 2008 at 10:07 am
Stephen,
Interesting article. Thanks.
Ian,
I've been using QA for a long time and didn't know that trick. Thanks a bunch.
This is why I read the posts after an article.
April 30, 2008 at 7:45 am
a7mad.sayed (4/29/2008)
If triggers created in this order :
TRA
TRB
TRC
Then execution...
April 29, 2008 at 9:50 am
Ken Gaul (4/29/2008)
So a trigger on orderdetail that updates the order header totals which has a trigger that goes and modifies some...
April 29, 2008 at 8:12 am
Why not commit after each row. Not only that, but drop the connection and get a new one for the next insert. You probably won't notice any performance difference, but...
April 24, 2008 at 8:22 am
Viewing 15 posts - 226 through 240 (of 321 total)