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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

MIcros 9700 microsdb password 2

Status
Not open for further replies.

themicrosman

IS-IT--Management
Jul 30, 2013
81
US
I have a database that I am trying to recover and import to a lab system that I use. After the import, I try to start EMC and I get the following error.
“Unable to connect to the specified database server”
“Login failed for user ‘microsdb’
Enter the database server name and try again.

Does anyone know how I can change the microsdb password so I can open the EMC? Or any other ideas?
 
Here's a thought. When you open EMC, what are you entering as the computer name? Are you using localhost or another name?

Connect to the Micros Database (via SQL Studio Management) and Open up a SQL Query Window.
Type the following: SELECT @@servername
run the query. This will return the correct server name to connect to.

You can rename the server name to your current/restored to name
Type the following in the Query window:

sp_dropserver 'old_name'
GO
sp_addserver 'new_name', local
GO


Where old_name and new_name are, replace them with the old name you got from the first query, and replace the new_name with the new server name.

Close the Connection to the Database.
Stop and Start the SQL Server Service (where the db is located).

See if you can connect now using the new/current Server name.
 
Nstanoszek could you post such tool? So we could try it? I would greatly appreciate it
 
I have the utility as well. Micros put it on a 3700 system. I have never used it or tested it. No idea if it will work for a 9700 system.
I don't want to post it the app on here as don't think it should be out there for everyone. If somebody wants to take a look at it and use it in a testing environment let me know and I will try and get it to them. My understanding is it will just grab the dba credentials out of an SQL database
 
I have a 9700 Lab Environment, if you want to send it to me, I can check it out. Let me know if you want my info.
 
I actually have a test setup for 3700 that I would like to test it on.
Give me a heads up if you need my info.
 
Not sure I know how to get you the info, other than posting it here and we're not supposed to do that. ;-)
 
Just need to have a managers login and password for the database and should be good to go....
Let me know if it works on 9700
 
Wildbar, can you post it again. I don't remember where I stored it.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top