Viewing 15 posts - 39,766 through 39,780 (of 49,552 total)
Sorry, I'm not following you. Could you maybe show the procedure and explain a bit more what it currently returns and what you want it to return?
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 14, 2009 at 1:25 am
Delete them
.mdmp file are memory dumps, from when SQL has access violations or other similar errors. If you're getting them currently, call MS's customer support. If they're old and the...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 14, 2009 at 1:22 am
A certification alone without any experience is unlikely to get you anything than a very junior job, if that. The certs are designed for people who have some experience (a...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 13, 2009 at 3:26 pm
There's a lot more to consider than performance.
Truncate deletes all the data in the table. Delete can have a where clause allowing conditional deletes.
Truncate does not fire triggers, delete does.
Truncate...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 13, 2009 at 1:35 pm
sreddy (4/13/2009)
selectuser.userid,
user.name,
count(news.userid)
from user
inner join news on user.userid = news.userid
group by user.userid,
user.name
Why count(userid)?
j1a4l0: What do you want returned for a user that has no news items?
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 13, 2009 at 12:54 pm
http://www.microsoft.com/learning/mcp/certifications.mspx
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 13, 2009 at 12:48 pm
jcrawf02 (4/13/2009)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 13, 2009 at 9:04 am
Vijaya Kadiyala (4/13/2009)
These are great articles but i am not able to add any comments 🙁
I can't help you with that. Mail or PM the Simple Talk people (Tony Davis)....
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 13, 2009 at 8:46 am
Please post the table design, index definitions and the estimated execution plan (saved as a .sqlplan file, zipped and attached)
If there query blocked by some other connection?
Is that SELECT *...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 13, 2009 at 8:35 am
Bob Hovious (4/12/2009)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 13, 2009 at 7:36 am
There's no upgrade exam from 431 to 432. The upgrade is from the 2005 ITP certs to the 2008 ITP certs.
If you've studied for the 2005 exam, write the 2005...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 13, 2009 at 7:30 am
Check the SQL error log, there may be more details there.
just as a precaution, please run the following for the DB in question (during a quiet time)
DBCC CHECKDB (< Database...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 13, 2009 at 7:23 am
cmrhema (4/13/2009)
Thanks for the prompt replyBut one question(sorry if its too silly),
should i install
SQL Server 2005 Express Edition,
or
SQL Server Management Studio Express,
SQL Server 2005 Express...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 13, 2009 at 7:22 am
Gaby Abed (4/13/2009)
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 13, 2009 at 7:15 am
Management Studio Express is, as the name implies, just Management Studio, ie the client components. If you want SQL Server Express Edition, it's a separate download.
It's on the same page...
Gail Shaw
Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
April 13, 2009 at 7:11 am
Viewing 15 posts - 39,766 through 39,780 (of 49,552 total)