Viewing 15 posts - 13,126 through 13,140 (of 18,923 total)
Not to mention that this trigger will fail if you update more than one row at the time... Take a look at the inserted/deleted tables.
September 19, 2005 at 1:11 pm
Quite simple to do actually... but why do you need to have a model like this? Why can't you just use the quantity and date data as is?
September 19, 2005 at 1:00 pm
Just use a bigger range of dates and add a group by for the months and you're golden.
September 19, 2005 at 12:21 pm
When you need to keep foreign dialects like chinese in the db. You need to use unicode for this task (N). Note that these datatypes take double the...
September 19, 2005 at 11:52 am
Wouldn't it be simpler to use the numbers table to do the splitting of the text fields??
September 19, 2005 at 11:39 am
If I were in that situation I think I would start to write one function per important project in rotation so that each project gets the same attention all the...
September 19, 2005 at 11:36 am
What's the authentication mode?
Did you try the sa account?
Did you check the WINDOW'S application even log?
September 19, 2005 at 11:29 am
You may want to read this before going down that road :
September 19, 2005 at 11:27 am
So how did you make him change his mind about that??
September 19, 2005 at 11:26 am
Can you post the query??
If you can't create a new query or change this one, then I suggest that you might be screwed.
September 19, 2005 at 11:20 am
Can't really help you without the table definition and required output...
Select * from dbo.YourTable Y inner join
(Select key1, key2, max(date) as date from dbo.YourTable group by key1, key2) dtY
on Y.key1...
September 19, 2005 at 10:09 am
Can you rephrase that???
What information is available, what information do you need to extract??
September 19, 2005 at 9:59 am
Can we see the whole code?? there's just no way that this can take a long time (asssuming there's no locking problems).
September 19, 2005 at 9:29 am
print @VariableName
then execute from QA
September 19, 2005 at 8:57 am
Viewing 15 posts - 13,126 through 13,140 (of 18,923 total)