Viewing 15 posts - 42,346 through 42,360 (of 49,571 total)
And if you want advice for performance, as you well know by now, we need the table definitions, the index definitions and, if on 2005 or higher, the execution plan...
December 16, 2008 at 11:30 am
extremenovice (12/16/2008)
So if this is the case then could the mdf and ldf files be attached as a new db?
Of the current DB, or of one of the backed up...
December 16, 2008 at 11:25 am
Lee Hart (12/16/2008)
In the event of a failure, you can't "backup the log tail"
Depends on the disaster. If the log drive is accessible and SQL is running, you can.
HOW...
December 16, 2008 at 11:12 am
Did you restore over the existing database, or alongside?
Did you make copies of the old mdf and ldf before the restore?
December 16, 2008 at 11:09 am
To demonstrate:
Create table #Errors (id int primary key)
set nocount on
go
-- testing pk violation
insert into #Errors values(1)
insert into #Errors values(1)
print 'pk error thrown'
go
-- testing conversion
insert into #Errors values ('abc')
print 'conversion error...
December 16, 2008 at 10:48 am
RBarryYoung (12/16/2008)
If the severity is 15...
December 16, 2008 at 10:26 am
hawg (12/16/2008)
He asked what would happen if an error occurred within the transaction without error handling.
Depends on the error. There are three kinds of errors in SQL. Statement...
December 16, 2008 at 10:24 am
leonp (12/16/2008)
Gail,I guess I would want to know about all 3 - memory/disk performance analysis, advice on app and the disk layout (per your convenience).
Then you're going to have to...
December 16, 2008 at 9:33 am
Here's another one that needs some help in asking questions. Not a twit, I just don't think he knows what he's after.
http://www.sqlservercentral.com/Forums/Topic620018-360-1.aspx
December 16, 2008 at 9:15 am
leonp (12/16/2008)
I was just hoping someone took a look at my post and told me what they thought about my problem.
I'm still not getting what you want.
All I...
December 16, 2008 at 8:22 am
leonp (12/16/2008)
Was there anything I could have done better to have some one reply?
I'm not quite sure what you're asking.
December 16, 2008 at 7:59 am
Grant Fritchey (12/16/2008)
December 16, 2008 at 7:55 am
Also note that the kb article mentioned (and the public url is http://support.microsoft.com/kb/960828/ as not everyone has access to the premier site) is not available at this point.
December 16, 2008 at 7:38 am
Asked and partially answered here - http://www.sqlservercentral.com/Forums/FindPost620292.aspx
December 16, 2008 at 7:37 am
redwinec (12/16/2008)
Also, recovery allow you go place the database to a point in time.
That's restore, not recovery. You can, using tran lock backups, restore a database to a point...
December 16, 2008 at 7:35 am
Viewing 15 posts - 42,346 through 42,360 (of 49,571 total)