Viewing 15 posts - 391 through 405 (of 860 total)
The logical file name should not change unless explicitly changed by someone. Is it just yourself who run this server?
April 1, 2009 at 1:01 pm
BACKUP DATABASE 'database-name'
TO DISK='your file path'
trry this and let us know
April 1, 2009 at 12:59 pm
Have you found a way yet?
You can use this query:
SELECT DB_NAME(database_id), LastRead = MAX(CASE
WHEN last_user_seek > last_user_scan AND last_user_seek > last_user_lookup
THEN last_user_seek
WHEN last_user_scan > last_user_seek AND last_user_scan > last_user_lookup
THEN last_user_scan
ELSE...
April 1, 2009 at 9:55 am
pedro.ribeiro (4/1/2009)
1) TempDB is all reconstructed every time the server (SQL Server) Starts, correct?
Correct
2) If the answer to the first question, is yes, this means that the stating tables that...
April 1, 2009 at 9:16 am
Backup and Restore method
Attach/Detach
SSIS
Scripting
Easiest method is Backup and Restore to 2008, change the compatibility level and fix the logins.
April 1, 2009 at 9:11 am
ichbinraj (4/1/2009)
I have Reindex the tables recently but still no performance improvements.
Only Re indexing does not help. What are your table schemas and what are your frequently running queries?Would you...
April 1, 2009 at 9:09 am
Yes, you should monitor the server when it is busy and identify the queries that are causing performance problems at least couple of them and try to tune it and...
April 1, 2009 at 9:06 am
Wooo...tht's the way to go fire back to the developers :-D, where it came from
April 1, 2009 at 9:02 am
Yes, try to trace the queries that are running against the table. Identify them and troubleshoot them.
Check to see TOP 10 waits
SELECT TOP 10
wait_type,
...
April 1, 2009 at 8:44 am
Yes, true as what Lowell advised and also you can restore v8 to v9 too. you should not face any problem in that.
April 1, 2009 at 8:37 am
Msg 3726, Level 16, State 1, Line 3
Could not drop object 'dbo.tblMemberMain' because it is referenced by a FOREIGN KEY constraint.
There is a foreign key referenced to this table, so...
April 1, 2009 at 8:28 am
Hi,
Yes, that's right it's corruption in the clustered index which is the data itself, you would be able to repair it but with some amount of data loss.
Why is your...
April 1, 2009 at 7:53 am
What are you trying to do here? I mean are you dropping any of the tables?
April 1, 2009 at 5:44 am
Am sure Paul will be around in sometime until then
Check out Paul's blog:
April 1, 2009 at 3:25 am
Its a corruption on the leaf level pages of the index, if you run REPAIR_ALLOW_DATA_LOSS obviously it would delete the data that it could to repair the database. Basically, REPAIR_ALLOW_DATA_LOSS...
April 1, 2009 at 3:21 am
Viewing 15 posts - 391 through 405 (of 860 total)