Viewing 8 posts - 46 through 53 (of 53 total)
ravi@sql (12/3/2012)
ok cant i point my log file path any other drive ? if yes how can i do that ? pls share the query ?Thanks
Ravi@sql
If you want to move...
December 3, 2012 at 6:11 am
You can try the below options:
Increase the size of 'MAX GROWTH' (If ample space is available in the drive hosting t-log)
If not, you can try this
USE MASTER
GO
DBCC FREESESSIONCACHE WITH NO_INFOMSGS
GO
DBCC...
December 3, 2012 at 6:01 am
Space in t-log is made reusable in SIMPLE recovery model as soon as the transaction is Committed/ written to the database. Have you restricted your t-log growth? If you don't...
December 3, 2012 at 5:51 am
What is the recovery Model of the database?
What is the size of t-log and growth options?
December 3, 2012 at 5:43 am
Hello,
Please refer to the below links:
http://www.techrepublic.com/blog/10things/10-tips-for-upgrading-to-sql-server-2008-r2/2376
http://msdn.microsoft.com/en-us/library/ms143699(v=sql.105).aspx
Let us know if further help is required.
Regards..
December 3, 2012 at 4:51 am
Hello Dearone,
SQL Server 2005 has grown old now (though it is still being used in production by many). The latest version of SQL Server is 2012.
I believe your question should...
December 3, 2012 at 4:17 am
Hello,
Renaming a database will include the keyword 'ALTER'.The backup schedule was unaffected by renaming of the database because the triggers you have acts on events of 'CREATE' and 'DROP' and...
December 3, 2012 at 4:07 am
Viewing 8 posts - 46 through 53 (of 53 total)