Viewing 15 posts - 58,621 through 58,635 (of 59,048 total)
Chris,
Yup... I agree on the data integrity thing but considering that a ROLLBACK is supposed to be (and, fortunately, is) an extremely rare occurance (and then usually only on the...
October 5, 2005 at 6:08 pm
>I can only say that I would not do that.
Why not, Chris?
October 4, 2005 at 5:27 pm
Thanks for the reply, Chris. Your experience seems to contradict what BOL says. Now, THAT's never happened before, eh?
Kinda why I asked if anyone had experience with...
October 4, 2005 at 7:13 am
Rumor has it that there are some very stiff penalties for storing unencrypted credit card information and other seemingly minor infractions on safeguards. I would say there's no such thing...
October 3, 2005 at 9:31 pm
Just for grins, how fast does it run without the ORDER BY? If it's really fast, use the 14 row result set as a derived table and select from THAT...
September 27, 2005 at 7:17 am
Just a quick thought... why does the BCP login/password need rights to anything but the destination table? Make a user that only has rights to the input staging table (you...
September 27, 2005 at 7:11 am
This will convert the number of seconds since midnight to a datetime (for today) datatype so you can do the join...
SELECT DATEADD(ss,secondssincemidnightcol,DATEADD(dd,DATEDIFF(dd,0,GETDATE()),0))
September 27, 2005 at 7:07 am
Nice job Sushila.... I use EM to troubleshoot other people's more complex joins and, occasionally, to make my own. And, I "steal" code from it and QA quite a bit...
September 26, 2005 at 4:55 am
The "best" way would be to not store data in such a fashion...
That, not-with-standing... something like this should work...
SELECT c.CategoryName,
c.CategoryID
FROM Category c,
UserCategory uc
WHERE ','+uc.CategoryID+',' LIKE...
September 25, 2005 at 7:32 pm
Admittedly, I've not done much with Federated Servers but I'm not sure why the relatively simple process of ETL would justify the need even in a world wide setting. The...
September 14, 2005 at 5:40 am
For reads, a "surrogate view" will give you that transparency. The view would just do a SELECT * from the 4 part name. (Just gotta be careful that you're not...
September 11, 2005 at 8:39 am
I'm thinking that maybe a header with the purpose of the proc, usage, and a little revision history might be something to consider... and, maybe, make all of the SQL...
September 10, 2005 at 11:50 pm
Didn't the Feds just modify the dates for DST?
September 10, 2005 at 11:44 pm
David,
According to your profiler trace, the pepper doesn't turn to fly specs until the appian.dbo.udf_A User Defined Function hits the fan... that's where your problem is and you should probably...
September 10, 2005 at 11:18 pm
I didn't think the messenger service needed to be active to do a NET SEND.
September 10, 2005 at 11:04 pm
Viewing 15 posts - 58,621 through 58,635 (of 59,048 total)