Viewing 15 posts - 121 through 135 (of 440 total)
My standard answer would be to add an int indentity column if you can. Narrow, unique and ever increasing is a good candidate for your clustering key. Keep in mind,...
March 26, 2012 at 2:49 am
Personally I love framing
March 22, 2012 at 11:08 am
March 21, 2012 at 8:28 am
First of all, I am really a fan of CTEs, as they give a lot of flexibility and readable code. However, in this case I find that the CTE is...
March 13, 2012 at 5:11 am
kaplan.dani (3/12/2012)
Is it possible to have the system/resource databases stored on both node so 1 nodes backups the other one ?dani
No, this is not possible. SQL Server 2012 have...
March 12, 2012 at 8:25 am
Basit Farooq (3/12/2012)
okbangas (3/12/2012)
March 12, 2012 at 8:20 am
I really dislike to rebuild system databases, thus I will have a file backup of the system databases (database and log). In the case of such a scenario that you...
March 12, 2012 at 8:01 am
First of all, today I would install SSMS fro SQL Server 2012 RTM, not RC0. And yes, they do very well co-exist on my laptop.
March 8, 2012 at 2:42 pm
Sorry, no offensive intended. I'll try to remember 🙂
March 6, 2012 at 3:53 pm
A few thoughts: Why are you concerned about locking of the temp tables, they're only accessible from your own session.
Furthermore, option maxdop 8 does allow for parallelism yes, but...
March 6, 2012 at 2:32 am
Gail is correct in his definition. To elaborate a bit: If you use 4 cores for 2 seconds, you'll see a CPU time of 8s whereas the elapsed time is...
March 5, 2012 at 1:55 pm
what is the result of the following statement?
exec master.dbo.xp_readerrorlog 0, 1, 'Using Locked Pages For Buffer Pool';
March 4, 2012 at 11:55 pm
Please have a look at this article: Managing Transaction Logs in SQL Server[/url]. Transaction logs are crucial to SQL Server, and you really have to understand how it works.
March 2, 2012 at 10:14 am
Totally agree with Gail. Itzik is great, and if you should happen to get the opportunity to attend one of his sessions or courses, do so.
March 2, 2012 at 10:10 am
Viewing 15 posts - 121 through 135 (of 440 total)