Viewing 15 posts - 76 through 90 (of 340 total)
If your Sql Server is running currently under local system account then if you drop builtin the Sql agent service will not start.
So before dropping it you need to...
May 27, 2008 at 4:07 am
Your only option is to use T-Sql query to backup the database,
Backup database dbname to disk='Path\filename.bak'
May 27, 2008 at 4:04 am
You can make use of the below query and see if it helps,
xp_regread @rootkey='HKEY_LOCAL_MACHINE',
@key='SYSTEM\ControlSet001\Services\SQLServerAgent',
@value_name='ObjectName'
May 26, 2008 at 6:48 pm
You can start Sql Server in single user mode using net start command as well as shown here for default instance of Sql Server. You need to type the below...
May 26, 2008 at 6:39 pm
For all the user databases and model,msdb you need not stop the services. Its just a normal restore. But inorder to restore the master database you need to start Sql...
May 25, 2008 at 10:29 pm
You can save your packages as .dts file and then later import them into Sql Server. Regarding the assemblies I am not sure if you can script it. As Mobasha...
May 22, 2008 at 6:36 pm
Can you confirm whether there is sufficient folder permission to create the sparse file ? Please check the if that particular login has permissions to the NTFS folder permission to...
May 21, 2008 at 6:55 pm
Check this thread from MSDN and see if it helps,
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=258365&SiteID=1
May 21, 2008 at 6:41 pm
Just for confirmation, did you apply SP2 for SSMS as well ? Click Help - about it will display the version of SSMS
May 21, 2008 at 6:31 pm
You can rebuild system databases in Sql 2005 and specify the collation as well using the below command,
start /wait CD or DVD Drive\setup.exe /qn INSTANCENAME=MSSQLSERVER REINSTALL=SQL_Engine REBUILDDATABASE=1 SAPWD=NewStrongPassword SQLCOLLATION=NewSystemCollation
But before...
May 20, 2008 at 1:49 am
We use Sql Server native backup for backing up medium sized databases. In few servers where there are large databases we use litespeed. The compression of the backup file is...
May 19, 2008 at 10:19 pm
I think you are trying to connect to the remote server using the SA password. Please ensure that the SA password is correct for the remote server.
May 19, 2008 at 10:15 pm
You can also make use of database publishing wizard to accomplish the same. Refer, http://www.microsoft.com/downloads/details.aspx?familyid=56E5B1C5-BF17-42E0-A410-371A838E570A&displaylang=en
May 19, 2008 at 6:51 am
I think your only option is uninstall Sql 2000 EE and install Sql 2000 Std and restore the databases from backup, script the logins before uninstalling etc..
May 18, 2008 at 10:14 am
Check these Microsoft KB articles and see if it helps,
May 18, 2008 at 2:54 am
Viewing 15 posts - 76 through 90 (of 340 total)