October 16, 2002 at 12:34 am
Greetings All
I have one sql server 7.0 installed . Since th installation was done by somebody else who has left the organization..
Now we are using backup exec Veritas 8.6 to
backup sql 7.0 on a seperate backup server.
while trying to retsore the veritas backups on a freshly installed sql 7.0 server...
i am starting with restore of master db ...
veritas says" the new SQL server shoul be installed with same sortorder,char set,clooation sequence as that of original server whose backup veritas has taken.."
Now i dont know all thses properties...
How can i find these properties on an sql server?
sort order,collation sequence,character set,unicode locale id,unicode comparison style
Thanks in advance ..
Deepa
October 16, 2002 at 2:35 am
In Query Analyzer run this:
sp_configure 'show advanced options', 1
GO
RECONFIGURE with override
GO
sp_configure
You will find all the informations you need.
Remember to set 'show advanced options' to 0 again after you have done.
HTH
Regards
Franco
Franco
Franco
October 16, 2002 at 3:56 am
Use sp_helpsort.
"Don't roll your eyes at me. I will tape them in place." (Teacher on Boston Public)
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply