Viewing 15 posts - 46 through 60 (of 230 total)
You say that for the re-installation to put the master database anywhere I like and then I can use the "good" master database after.
If this it true, then I would...
November 14, 2002 at 6:24 am
If you restore over an existing database, what will remain is exactly whats in the backup you are using.
Everything will be overwritten.
November 12, 2002 at 2:30 pm
If you want to backup only tables, then create the tables on a Filegroup. Then backup the Filegroup.
- good for a large size table.
If want just the table schema then...
November 12, 2002 at 2:26 pm
This is what I have come up with and its a pretty good solution. This script creates linked servers and runs an extented procedure to check drive space.
I then...
November 12, 2002 at 8:17 am
I put a call into Microsoft for this because it applies to how/when we do our Ghost Images.
Microsoft said that only Installation, Master DB, Service Packs and Full Text catalogs...
November 11, 2002 at 8:42 pm
are there any other major entries in the registry that SQL Server has for databases or database configurations?
November 11, 2002 at 3:44 pm
Works now.
Had to run:
USE master
EXEC sp_serveroption 'SQL_STG1', 'rpc', 'on'
USE master
EXEC sp_serveroption 'SQL_STG1', 'rpc out', 'on'
Thanks!!!
November 11, 2002 at 2:26 pm
figured it out.
I had to edit the registry and change the startup values.
(-d, -l, -e)
November 11, 2002 at 11:33 am
Those are great ideas. Thanks.
But I like where I am heading with creating one script that creates Linked Servers to all my boxes and returns the free drive space.
Any...
November 11, 2002 at 8:19 am
SQL1_DEV is a linked server.
This works fine:
SELECT *
FROM
SQL1_DEV.Master.dbo.sysdatabases
This has an error:
EXEC SQL1_DEV.Master.dbo.xp_fixeddrives
"Server: Msg 7411, Level 16, State 1, Line 1
Server 'SQL1_DEV' is not configured for RPC."
Any ideas?
November 10, 2002 at 4:15 pm
ok.
Scenario:
C drive - O.S. binaries and minimal sql server binaries(COM & TOOLS folders)
E drive - all data and log files.(master, user db's, etc)
---
Hardware failure that lost the C: drive. Are...
November 7, 2002 at 4:10 pm
So data files do not care about registry settings at all?
Does SQL Server make changes to the registry as time goes on? (Thus backing up the registry it is a...
November 7, 2002 at 3:26 pm
So any registry changes that SQL Server did after the ghost image will not be there now.
This is not a problem?
The registry and data files will be out of sync.
...
November 7, 2002 at 1:35 pm
"moving the DBs back into proper position"
- what do you mean here? how is this done?
Also, does SQL Server write entries to the registry after it is installed?
November 7, 2002 at 1:13 pm
What do you mean by immediately?
Will the engine even start then?
November 7, 2002 at 11:02 am
Viewing 15 posts - 46 through 60 (of 230 total)