Viewing 15 posts - 106 through 120 (of 196 total)
I use Nero and just got nero to burn the image to a CD. No Problem with CD.
June 14, 2005 at 1:13 am
Thanks Frank.
This did help, except for the numbers and precision I am using, but now i can work around the situation.
February 7, 2005 at 11:39 pm
One other thing to Remember, a Null <> Null so you could have the Following Row a, b, c, Null, d in the table And sitll insert a, b, c, null,...
September 23, 2004 at 8:57 am
There is something a bit odd in this Trigger. MAybe I do not quiet understand what you are trying to do.
If it is triggered by an update statement the Row...
September 23, 2004 at 8:47 am
In That Case You Are Looking for:
Select
[Product Code], [Part#]
,Month = Convert( Varchar(7), [Replacement Date], 120 )
,Qty = Sum( [Replacement Qty] )
From SourceTable
June 21, 2004 at 3:27 am
Your Question is a bit vague. Please post the source table structure and what the results should look like.
June 21, 2004 at 2:35 am
Simply add This:
CompletedReq = Sum( Completed )
,UnCompleted = count(ClientGroup.fk_clientid) - Sum( Task.Completed )
or
,UnCompleted = Sum(
Case Task.Completed
)
April 21, 2004 at 2:17 am
Why not just
Where a.Dt >= b.StartDt
And a.Dt <= b.EndDt
Sql's Datetime datatype is treated as one.
April 21, 2004 at 1:54 am
HI. Thanks foor the esponse. I have tried this. Even at Complexity levels below 0.1( highly likely to cause a split) the tree is Very short. I...
January 22, 2004 at 4:18 am
Reading your mail made me go Check Some Settings, and you were spot on. My Desktop did not have Permissions on the Sorce SqL DataBase. Thanks, Pretty Dumb...
December 18, 2003 at 3:35 am
I had the same problem and also tried the instructions given in BOL. We had to Reboot the server ( not just restart the Service ) in order to...
October 6, 2003 at 8:51 am
instead of
where (@P1 is null or table.p1=@P1) and
(@P2 is null or table.p2=@P2) and
(@P3 is null or table.p3=@P3)
Try using
where (table.p1= isnull( @P1, table.p1) and
(table.p2=isnull( @P2, table.p2...
September 26, 2003 at 2:42 am
Tasks use a connection( referenced by name [Actually the DTS Connection Description]).
By changing the Connection Properties the Tasks will be function correctedly. It is like changing the properties of...
September 12, 2003 at 5:14 am
/*********************
Move DAta to Tempt table with RowID ordered by SPID, loginTime
*/
Insert into #tmp
Select SPID, LoginTime, DT, CPU
FRom cpu_usage cpu1
order by SPID, LoginTime, DT (desc ) -- This is Important
Select
...
September 12, 2003 at 4:20 am
Viewing 15 posts - 106 through 120 (of 196 total)