Viewing 15 posts - 256 through 270 (of 360 total)
Will a restore work for getting the backup into a readable active log?
~BOT
January 5, 2009 at 1:26 pm
You don't need a third party tool.
use DBNAME
SELECT * FROM ::fn_dblog(null, null)
GO
With some poking around in 'pre-emergency' time you should be able to figure out
what you're looking at. ...
January 5, 2009 at 10:58 am
Andrew Gothard (1/5/2009)
January 5, 2009 at 10:28 am
I just wrote one and have a new one coming out on the 12th or 13th. Keep your eyes peeled.
http://www.sqlservercentral.com/articles/career+growth/64632/[/url]
~BOT
January 5, 2009 at 10:24 am
That's irritating, isn't it.
I think for data storage purposes I use varchar(128) when I need to store sysname data.
Typecases between varchar(128) and sysname are implicit, so it doesnt' matter how...
January 5, 2009 at 10:20 am
george sibbald (1/3/2009)
January 3, 2009 at 1:10 pm
Or you could just rebuild them 🙂
Rebuilding is fine with page level locking disabled... it's just reorg that fails.
Rebuild online if possible.
~BOT
January 3, 2009 at 10:20 am
Thanks Barry!
I like it!
CASE replaces an if/then/else block and the ; terminator issues the commands. Clever.
My one complaint is that it might be difficult to write in good error...
January 3, 2009 at 10:10 am
Jeff Moden (1/2/2009)
SQLBOT (1/2/2009)
RBarryYoung (1/2/2009)
SQLBOT (1/2/2009)
January 2, 2009 at 5:46 pm
RBarryYoung (1/2/2009)
SQLBOT (1/2/2009)
It probably...
January 2, 2009 at 1:23 pm
Nice Article,
I don't think that useful and necessary cursors are that rare.
Can you loop through dm_db_index_physical_stats and reindex all the databases that require reindexing without an iterative structure? It's...
January 2, 2009 at 12:36 pm
That's worth looking into, but the error happens /any/ time the dbcc's run and /only/ on master and /only/ on 3 out of 8 instances.
These Instances are on a server...
December 24, 2008 at 12:57 pm
Remember too that SQL 2005 has metadata visibility "issues".
so if you don't own it you won't see it in the results in stored proc or fuction output
December 24, 2008 at 10:52 am
They'll have to pry the cursor from my cold, dead fingers...:w00t:
~BOT
December 24, 2008 at 10:45 am
I've seen this before.
sp_helprotect might show you some things.
Remember that DENY statements take precedence over grants.
December 23, 2008 at 8:16 pm
Viewing 15 posts - 256 through 270 (of 360 total)