Viewing 15 posts - 1 through 15 (of 18 total)
Sysprocesses has the information you need in it when the trigger fires. You can get the information you need with a cross join since there is only 1 row in...
December 14, 2005 at 10:55 am
Because the case statement is wrong. The rows that say "In B" are actually "In A" and vice-versa.
should be
case
when B.[START DATE/TIME] is null then 'In A'
else 'In...
December 2, 2005 at 8:54 am
something like this:
declare @Foo table (
dbkey int,
dbdata varchar(10))
declare @foo2 table (
dbkey int,
dbdata varchar(10))
insert into @Foo values (1,'one')
insert into @Foo values...
December 2, 2005 at 7:45 am
<ctrl> + 0 will insert a null. Hold ctrl and press 0 key. Tab out of field to see the null.
December 1, 2005 at 8:41 am
Missed the parentheses around your in clause list.
(IIF( Fields!COST_ELEM_CTGY.Value IN "C", "P", "R", "V", "X"), "3OTHERS"),
should be
(IIF( Fields!COST_ELEM_CTGY.Value IN ("C", "P", "R", "V", "X")), "3OTHERS"),
November 21, 2005 at 7:34 am
Doesn't really stink. You can use any .NET compatible language to create your own custom tasks or data flow components.
VB.Net doesn't really have any serious shortcomings when it comes to...
November 1, 2005 at 12:09 pm
Props to you Steve for doing the right thing.
July 27, 2005 at 8:56 am
Update UserName.CallLogRevenuesTEST set dateOnlyEnd = SUBSTRING( dateOnlyEnd, 9, 2) + '/' + SUBSTRING( dateOnlyEnd, 6, 2) + '/' + SUBSTRING( dateOnlyEnd, 1, 4)
Where CHARINDEX('2005', dateOnlyEnd) = 1
July 1, 2005 at 8:27 am
I thought question of the day was questions about SQL Server. Exactly how would anyone who does NOT have\use Litespeed know the answer to...
March 7, 2005 at 7:26 am
Interesting answer, but absolutely wrong. Creation of a temporary table, (either local # or global ##), results in the table being owned by dbo in tempdb. This is rather easy...
March 4, 2005 at 7:37 am
In addition to the fact (mentioned by chrismj) that this returns a reference to the object, not the value of the object, this particular call would return an error stating:
The...
December 9, 2004 at 11:27 am
I've been wrong before. I'll be wrong again.
The thing I dislike most, is when I'm right, yet "SOMEONE" thinks I'm wrong. Even though THEY are wrong, they have the power...
March 2, 2004 at 8:47 am
We use a packaged software application that is designed to be used differently by different companies. Their method of allowing customization for each company is to provide generic fields in...
March 1, 2004 at 8:09 am
Thank you for the clarification. Didn't know about getting points for submitting qod's.
February 20, 2004 at 1:25 pm
I didn't answer correctly, because I failed to note the "SQL Server 2000 Standard Edition" part of the question. I don't like trick...
February 6, 2004 at 7:52 am
Viewing 15 posts - 1 through 15 (of 18 total)