Viewing 15 posts - 46 through 60 (of 340 total)
Thanks michaela and Vidhya for correcting me..:)
June 6, 2008 at 7:05 am
You can use the below command to change the dbowner in Sql 2005 servers
ALTER AUTHORIZATION ON Database::databaseName TO serverPrincipal
June 6, 2008 at 7:02 am
sp_helpdb yourdbname will provide the necessary information..
June 6, 2008 at 6:49 am
Hi Chandramohan,
1. I think Select @@version will tell if it is x64 or x86
2. For restoring system databases you need to have the same build and same edition of Sql...
June 5, 2008 at 6:33 pm
Go to Start - run - type 'Sqlservermanager.msc' and hit enter which will open Sql Server configuration manager. Click Sql Server 2005 services and in the right side it will...
June 5, 2008 at 6:24 am
Check for any open transactions using DBCC OPENTRAN('yourdbname')
June 5, 2008 at 6:13 am
Check for any open transactions using DBCC OPENTRAN('yourdbname')
Also check the log_reuse_wait column in sys.databases using the below command,
Use master
go
Select name,log_reuse_wait from sys.databases
go
June 4, 2008 at 9:37 pm
No issues. While applying Sql Server service packs you will be prompted to select the instance to which SP2 needs to be applied. You need to choose the appropriate instance...
June 4, 2008 at 9:11 pm
You need to identify what causes the disk space to be consumed. Check the database files and its most likely the log file which grows abnormally and consumes the...
June 4, 2008 at 9:08 pm
Vivien Xing (6/4/2008)
Database is being Logged shipping from SQL2000 to SQL2005. If we can not use SQL2005 database on the destination server, what is the log shipping for? 😉
Please...
June 4, 2008 at 7:26 pm
Read through this link which describes the impact of regular shrinking,
June 4, 2008 at 7:13 pm
Can you check the permission to the database files in the path C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\ for the user with which you are running the setup. I think the user...
June 4, 2008 at 4:26 am
Take transaction log backup using the below command,
Backup log dbname to disk='Path\filename.trn'
Shrink the log file using the below command,
Use yourdb
go
Dbcc Shrinkfile('logfilename',500)
go
June 4, 2008 at 4:22 am
Without changing the compatability you cannot take t-log backup for the Sql 7 databases using the maintenance plan. But you can try using T- Sql,
Backup log dbname to disk='Path\filename.trn'
June 4, 2008 at 3:35 am
I guess you might have the Sql Server collation as case sensitive and hence the error. Can you try using xp_msver or XP_MSVER check the procedure and see the naming...
June 4, 2008 at 3:19 am
Viewing 15 posts - 46 through 60 (of 340 total)