Viewing 15 posts - 196 through 210 (of 4,745 total)
yes it is, there could be an issue somewhere in the i/o stack, get your storage people to check it out.
May 14, 2014 at 6:09 am
DJH-445911 (5/12/2014)
OK so let it run unless there is a reason to re-initialise. Thank you.
And I can take a full backup at any time and...
May 12, 2014 at 7:25 am
just let it run, No need to reinitialise unless you get an error (lose a log backup or something)
Your full backups do not need to be copy_only either, that only...
May 12, 2014 at 6:42 am
http://www.sqlservercentral.com/scripts/Permissions/76450/
read the comments as well for final version
May 7, 2014 at 10:39 am
Eirikur Eiriksson (5/7/2014)
george sibbald (5/7/2014)
river1 (5/7/2014)
Hi,I would like to know in with date did a SQL Server 2005 instance was installed on a server.
Can I know This using t-sql?
from glenn...
May 7, 2014 at 10:24 am
without the msdb you cannot retrieve that information.
If you still have the old msdb as a backup or OS files you could restore or attach it as a user database...
May 7, 2014 at 10:13 am
river1 (5/7/2014)
Hi,I would like to know in with date did a SQL Server 2005 instance was installed on a server.
Can I know This using t-sql?
from glenn Berrys diagnostic queries
-- When...
May 7, 2014 at 9:23 am
Koen Verbeeck (5/6/2014)
The SQL Server team has the tendency lately to release more and more cumulative updates, and less service packs.
For SQL Server 2012, there's still...
May 6, 2014 at 6:40 am
try these two, searches plan cache for your index name
WITH XMLNAMESPACES (DEFAULT 'http://schemas.microsoft.com/sqlserver/2004/07/showplan')
SELECT
DB_NAME(E.dbid) AS [DBName],
object_name(E.objectid, dbid) AS [ObjectName],
P.cacheobjtype AS [CacheObjType],
P.objtype AS [ObjType],
E.query_plan.query('count(//RelOp[@LogicalOp = ''Index Scan'' or @LogicalOp = ''Clustered Index...
May 6, 2014 at 6:31 am
its not really a disadvantage as you are allowing your secondary to be gainfully used, but you will not be able to restore transaction logs to the secondary whilst users...
May 6, 2014 at 6:23 am
paul.knibbs (5/2/2014)
Bhaskar.Shetty (5/1/2014)
The good one and part of our Daily routine
Is it? I can't recall a situation where I've actually used this facility, although I knew the correct answer...would be...
May 2, 2014 at 3:14 am
save to a new file. Makes restore process easier.
Backups are i/o intensive, so backup to a different drive. CPU will also increase if compression is used. Use of the database...
April 29, 2014 at 5:13 am
Gail,
cheers
george
April 28, 2014 at 4:03 pm
Gail, is this for performance reasons or safety reasons (CI is changed or dropped), what about the redundancy and space considerations of the CI column(s) appearing twice?
April 28, 2014 at 10:44 am
Viewing 15 posts - 196 through 210 (of 4,745 total)