Viewing 15 posts - 1,261 through 1,275 (of 7,498 total)
Gianluca Sartori (1/23/2013)
Also, lots of useful code in there.
Thanks for sharing.
ALZDBA (1/23/2013)
In my test, [vs].[logical_volume_name] is blanc !
Win2008R2 / SQL2012DE (64-bit) SP1 (11.0.3000.0) with fixed...
January 23, 2013 at 2:30 am
Nice article, Erin.
In my test, [vs].[logical_volume_name] is blanc !
Win2008R2 / SQL2012DE (64-bit) SP1 (11.0.3000.0) with fixed drives.
So I suggest altering the last query to :
SELECT DISTINCT
...
January 23, 2013 at 1:16 am
This may be one of the cases where BOL is just wrong. :angry:
This does the trick you aim for:
Create default [MinusOne] as (-1);
go
/* Syntax error near Default --> CREATE TYPE...
January 21, 2013 at 2:00 am
as you will know Tempdb is a special db, available and used by everyone in the instance.
General usage of tempdb: http://msdn.microsoft.com/en-us/library/ms190768.aspx
Great post by Gail Shaw which highlights indexing and how...
January 21, 2013 at 1:50 am
if you copy/pated the statement in your previous reply ...
you typed dfault in stead of dEfault.
Chances are you overlooked the typing error.
January 21, 2013 at 1:35 am
it will write tempdb stuff to disk all right, it's just not at checkpoint time, like with regular db.
Why: tempdb is re-created every time SQLServer is started, so there is...
January 20, 2013 at 6:28 am
did you check with books online ?
Create type:
http://msdn.microsoft.com/en-us/library/ms175007(v=sql.105).aspx
My advice: Avoid like hell because they cannot be altered when they are in use. It's not all gold that shines
January 20, 2013 at 6:25 am
IMO it should return no row at all because of the where clause condition 1 = 0
January 18, 2013 at 3:21 am
With such findings, it is best to always mention the actual engine version on which you performed the test.
Select Serverproperty('ProductVersion') as ProductVersion
, Serverproperty('ProductLevel')...
January 18, 2013 at 3:07 am
Here's a good article to help you to get to your answer: SAN Replication vs. Clustering vs. Mirroring Which should be used when? by Denny Cherry.
It also contains an interesting...
January 18, 2013 at 3:00 am
- If the time interval is near constant, just start a sqlprofiler trace to capture all the needed and analyse it afterward.
- how are the backups being created at your...
January 16, 2013 at 12:48 pm
Isn't creation date and time information of the bak-file enough ?
To assemble a recovery requence, IMHO it is best to just pull all the needed data out of the msdb...
January 11, 2013 at 6:59 am
Keep in mind you cannot connect Object Browser using and admin:server\instance connection.
You must use a Query panel ( New Query ) and then connect using admin:server\instance .
January 11, 2013 at 3:40 am
Also with SQL2012, only a single active DAC is allowed !
only one DAC is allowed per instance of SQL Server. If a DAC connection is already active, any new request...
January 9, 2013 at 11:52 pm
Here's a good starter article to get to your answer: SAN Replication vs. Clustering vs. Mirroring Which should be used when? by Denny Cherry.
You've posted in a SQL2005 forum. If...
January 4, 2013 at 1:58 am
Viewing 15 posts - 1,261 through 1,275 (of 7,498 total)