Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Move ContactStore to new server 4

Status
Not open for further replies.

jeffthephoneguy

Programmer
Jul 20, 2009
437
0
0
US
I am moving contact store 7.2.9 to a new server, the install pdf is lame and I don't understand how to backup the MSDE database. anyone got a better way to this?

Jeff
"the phone guy"
 
Copy C:\Program Files\Witness\calls\XXXXXX.....should have all yor calls in it.....

MW2 needs new Maps....ASAP
 
>Copy C:\Program Files\Witness\calls\XXXXXX.....should have all yor calls in it....

That is only 25% of the story

1) copy the files as suggested
2) Install msde on new server
3) install CS on new server - do not start services


On old server

4) stop CS service

5) Locate exe file called OSQL (c:\program files\microsoft sql server\com\tools\binn)
6) from command prompt run OSQL -E -s .\contactstore
7) you should get a prompt 1>
8) type
Code:
1> backup database eware to disk='c:\backup folder\eware.bak'
2> go
[i]message saying backup complete[/i]
1> exit
9) stop MSDE service
10) from a second command prompt navigate(i.e cd \<path> to c:\program files\witness\mssql$contactstore\binn
Code:
sqlservr -m -s contactstore
[i]loads of startup info[/i]
11) back to other command prompt
Code:
1> backup database master to disk='c:\backup folder\master.bak'
2> go
[i]message saying backup complete[/i]
1> exit
12) in sql command prompt hit ctrl c
13) copy eware.bak and master.bak to new server in folder eg. c:\msdeback
14) open command prompt and navigate to (i.e cd \<path> to c:\program files\witness\mssql$contactstore\binn
Code:
sqlservr -m -s contactstore
[i]loads of startup info[/i]
15) open new command prompt
Code:
1> restore database master from disk='c:\msdebackup\master.bak'
2> go
[i]message saying restorecomplete[/i]
1> exit
16) in SQL window hit ctrl c
17) start msde service
18)
Code:
1> restore database eware from disk='c:\msdebackup \eware.bak'
2> go
[i]message saying restorecomplete[/i]
1> exit
19) start Contact store service

there you go.




Take Care

Matt
I have always wished that my computer would be as easy to use as my telephone.
My wish has come true. I no longer know how to use my telephone.
 
<bows>

Cheers tom

Take Care

Matt
I have always wished that my computer would be as easy to use as my telephone.
My wish has come true. I no longer know how to use my telephone.
 
Cool post guys, thanks for the info! From time to time we get IPoffice customers with these types of requests and its cool to know there is a known process for moving applications like CS.
 
Jeff did you see this doc?



Avaya_Red.gif

___________________________________________
It works! Now if only I could remember what I did...

Dain Bramaged
___________________________________________
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top