Options

display automatically sqlserver instance ???

senior_oraclesenior_oracle Posts: 6
edited January 6, 2010 3:41PM in SQL Packager Previous Versions
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 !

Comments

  • Options
    Thanks for your post.

    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.
    Chris
Sign In or Register to comment.