Viewing 15 posts - 2,686 through 2,700 (of 6,486 total)
Jeff Moden (7/3/2008)
Matt Miller (7/3/2008)
but still - technically possible....Maybe THAT'S where you should use a cursor! 😀
I'm assuming that's what the poor specialist would be doing...cursing...a LOT....:w00t:
Hey -...
July 3, 2008 at 10:37 pm
Of all the problems you could possibly have - picking the wrong date range on the the verification is the easiest one to fix....:D All I can say is...
July 3, 2008 at 7:54 pm
Lynn Pettis (7/3/2008)
Yep! That's why I tried the logical exercise. Pretty much helps put it in perspective though.😎
It's late on a thursday before a holiday, so I had...
July 3, 2008 at 1:53 pm
SQL Profiler will capture the info if you use the stored proc sp* events. If will show you what is being fired....
July 3, 2008 at 1:49 pm
The CASE statement needs to be able to consistently return a single data type (so all of the "then's" are getting cast to a single datatype). In this case...
July 3, 2008 at 1:30 pm
Jim - that trigger is working. It's just not doing what you want of it.... you're looking for some kind of runing total, and that syntax ain't going...
July 3, 2008 at 1:25 pm
The OP mentioned that the DAY column is the clustered index key. Assuming that's the case - there's not going to be a table scan, but a clustered index SEEK....
July 3, 2008 at 12:49 pm
Rod at work (7/3/2008)
In the...
July 3, 2008 at 11:46 am
Assume you had the following
Employee table
employeeID Title
1 boss
2 ...
July 3, 2008 at 11:35 am
GSquared (7/3/2008)
Jeff Moden (7/2/2008)
GSquared (7/2/2008)
cast a curse of impotence on the original coder and all his descendants for a thousand generationsUmmmm... isn't THAT a bit of an oxymoron? 😀
Didn't say...
July 3, 2008 at 11:17 am
sead.j (7/3/2008)
BTW. Now I'm breaking my...
July 3, 2008 at 11:13 am
andy.gray (7/3/2008)
I understand your concerns about performance but I do need to do a lot of string manipulation. I'm trying to work around a...
July 3, 2008 at 10:51 am
You have to build the entire string in a variable FIRST, then issue the exec on the variable.
Something like:
DECLARE @FirmCode as varchar(5)
SET @FirmCode = 'File1'
declare @sql as varchar(500)
set @sql =...
July 3, 2008 at 10:09 am
Just curious - what made you go for a CLR trigger instead of a T-SQL one? This would be a whole lot more straightforward if the process stayed in...
July 3, 2008 at 10:04 am
rbarryyoung (7/3/2008)
What an excellent choice by Microsoft. What really strike me about Gail is the incredible precision and accuracy of her responses. Despite...
July 3, 2008 at 9:55 am
Viewing 15 posts - 2,686 through 2,700 (of 6,486 total)