Viewing 15 posts - 4,426 through 4,440 (of 4,745 total)
The question is correct.
I got it wrong because I always refer to it as mssqlsystemresource and thought 'resource' was incorrect shorthand, but turns out microsoft refer to it as the...
May 8, 2008 at 5:25 am
both a full backup and a log backup will issue a checkpoint and put a marker in the log at the end of the backup process, this is the point...
May 7, 2008 at 3:51 pm
how about add the NT roles to db_datareader in model database then this set up will be in every db created in the instance....
May 7, 2008 at 3:09 pm
Both from microsoft -
theres sqlio which will tell you the maximum io throughput you can expect
and
sqliosim -which will simulate generic Sql activity and give you an idea of io...
May 6, 2008 at 12:45 pm
8.00.194 is the base RTM version. Apply SP4 and see how u get on.
May 6, 2008 at 3:20 am
Marios,
if it helps, the following actions flush the proccache:
http://blogs.msdn.com/sqlprogrammability/archive/2007/01/17/10-0-plan-cache-flush.aspx
hopefully MS will work on only flushing the cache of objects for the database the action is upon. If you think they...
May 5, 2008 at 8:56 am
Grant,
hate recompiles? see this:
http://blogs.msdn.com/sqlprogrammability/archive/2007/01/17/10-0-plan-cache-flush.aspx
and this:
http://www.sqlservercentral.com/Forums/Topic494663-149-1.aspx#bm494664
May 5, 2008 at 6:11 am
it can be caused by parallelism, waittype will generally be 'cxpacket', and there will be multi connections with the same spid.
Can also be caused by i/o, waittype will be various...
May 4, 2008 at 5:18 pm
just watched my proccache on a 2000 box before\after a log restore and did not see this behaviour..............
May 3, 2008 at 1:08 pm
thanks Jack, I like the idea of taking chunks out of this table a day at a time.
I'll post results which will be next week now, way too much...
May 2, 2008 at 12:44 pm
Todd Engen (5/2/2008)
Don't know about the log, but if that's the DELETE statement it's removing all your current records and leaving the ones older than 6 months.
very good catch, could...
May 2, 2008 at 11:02 am
database read only -
add an if statement in the cursor loop to only execute code if database not read only, i.e.
if (SELECT DATABASEPROPERTY(@dbname, 'Isreadonly')) = 0
begin
...
May 1, 2008 at 2:27 pm
If your .mdf and .ldf are large but contain a small amount of data so the .bak file is much smaller, it could take longer to do detach\attach than backup...
April 30, 2008 at 12:49 pm
then I am afraid I am not sure, any other log shipping table list anything reflecting an error or the status of the job runs.
April 30, 2008 at 10:50 am
If sql agent jobs are not failing don't quite see where error is. The 'message' column in the table will tell you what the error is if there is one.
April 30, 2008 at 10:12 am
Viewing 15 posts - 4,426 through 4,440 (of 4,745 total)