display automatically sqlserver instance ???
senior_oracle
Posts: 6
how can we display automatically the .\SQLEXPRESS instance once SQL Pachager is loaded , so that the user will press only on ok and the packager will install the database , and is there a way so that the sql pachager will go quiet when performing the job ?
would appreciate any help
thank you in advance !
would appreciate any help
thank you in advance !
Comments
If you save the package as a C# project, you can set the server text in the PackageExecutor class.
e.g.
private string m_ServerName = @.\SQLExpress
Also, you can run the package without the interface if you use the /quiet switch from the command line. e.g.
/quiet
Indicates the package will run without any user interface
I hope this helps.