Viewing 15 posts - 8,581 through 8,595 (of 9,641 total)
Why use substring and LTRIM? Shouldn't STR give you the string representation you need?
May 14, 2008 at 8:15 pm
Even with the backup and restore the execution plans could be different as the plans are cached in memory not in the database, so you should compare execution plans.
Are the...
May 14, 2008 at 4:32 pm
Well, if there is a cursor I would always try to remove it if there is a set-based solution which there usually is. As far as the why there...
May 14, 2008 at 2:58 pm
Great, I love learning something new. I would suggest creating the control and then submit the instructions to SSC as a How To article, then we all benefit. ...
May 14, 2008 at 9:57 am
Matt Miller (5/14/2008)
Jack Corbett (5/14/2008)
May 14, 2008 at 9:39 am
I use the SQL Prettifier. Someone mentioned it in another forum thread and I have used it since. It is an extra step, but I find it makes...
May 14, 2008 at 9:34 am
Here are 3 options. Option 1 is simpler, but it will create rows even if you do Update TicketCallMain set AgrPKey = AgrPKey, while Options 2 is not complex...
May 14, 2008 at 9:30 am
SQL Server does not have before triggers. In SQL Server you would use an after trigger and then use the virtual inserted and deleted tables. I will post an example...
May 14, 2008 at 9:04 am
TheSQLGuru (5/14/2008)
1) Several people here have a mis-conception about what a clustered index scan is. It IS a table scan in this case.
I agree with your other 2 points,...
May 14, 2008 at 7:44 am
riga1966 (5/14/2008)
select * from scan
where boxid = 'RET0018438'
and
(((client in ('MCP','JNJ','PCP','PCR','HOS')) and
(client in (select clientcode from policy where deduct_ship = 'N')...
May 14, 2008 at 7:30 am
KC (5/14/2008)
May 14, 2008 at 6:57 am
Viewing 15 posts - 8,581 through 8,595 (of 9,641 total)