Viewing 10 posts - 1 through 10 (of 10 total)
saranya.megalai (5/14/2010)
if flag is alias then can we use next statement likeselect [flag='y'].some_data from [where]?
Yes it would look like:
Select [flag ='y' ].some_data from [where] [flag ='y' ]
May 14, 2010 at 6:04 am
Nope we had tried statistics and I updated all stats with fullscan. Still no effect.
March 30, 2009 at 10:55 am
I'm done looking at the SQL Server side. I've looked at the code and we definitely have some inefficiencies where we are executing the query more than is necessary....
March 30, 2009 at 8:58 am
I did a test on the prod box. I shut down the SQL 2000 instance so that all the machine resources would be available to the SQL 2005 instance...
March 30, 2009 at 6:42 am
Actually that's what puzzled me. BOL says that GO is not a T-Sql command but a command recognized by Sqlcmd, Osql, and the SSMS Code Editor. It also...
August 25, 2008 at 8:24 am
Here's my interpretation of what happens. Note if you select and execute the lines by themselves you get different results than you do if you combine them into a...
August 25, 2008 at 7:41 am
Note the USER_ID function will also be removed in a future version according to the SQL Server 2005 Books Online.
January 3, 2006 at 6:10 am
Great interview Steve. I'm looking forward to the others!
July 28, 2005 at 6:12 am
Grasshopper,
Ahh! I couldn't see it for anything. What I meant was not what I typed. I wanted the difference like what follows:
Create trigger dbo.bkiTriggerTest_Instead
on dbo.bkiTriggerTest
INSTEAD OF INSERT
AS
...
March 23, 2004 at 11:26 am
Gopal (ext5qxt)
If I test for @@ROWCOUNT equal to zero, then I won't execute the second insert when there are dups. But I want to execute both statements because there may...
March 23, 2004 at 11:22 am
Viewing 10 posts - 1 through 10 (of 10 total)