Get command line to return name of database it installed
jquevedo
Posts: 2
I have an installer that I'm making that I'm allowing the user to rename the database when they run the packager exe file to create the database. However I later on need to know the name of the database they entered in the packager. Is there anyway to get it to return the name of the database it just installed?
Comments
SQL Packager packages do echo back the database name like this: so if you can parse the output from the package, you could look for the text "Creating database:" and then parse for the next word - that should be the name of the new database you created with the /makedatabase switch.