home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 February (DVD) / PCWorld_2008-02_DVD.iso / akce / MS Visual Studio 2008 Express Edition / VWDExpress / WCU / SQLPub / SqlPubWiz.msi / readme < prev    next >
Encoding:
Text File  |  2007-08-09  |  2.8 KB  |  80 lines

  1. SQL Server Database Publishing Wizard
  2. (c) Copyright Microsoft Corporation, 2006. All rights reserved.
  3. Website: http://www.codeplex.com/sqlhost
  4.  
  5. =======================================
  6. What is the Database Publishing Wizard?
  7. =======================================
  8.  
  9. The Database Publishing Wizard enables the deployment of SQL Server databases 
  10. (both schema and data) into a shared hosting environment.  The tool supports 
  11. both SQL Server 2005 and 2000 and does not require that source and target 
  12. servers are the same version.
  13.  
  14. The tool provides two modes of deployment:
  15.  
  16.   1) It generates a single SQL script file which can be used to recreate
  17.   a database when the only connectivity to a server is through a 
  18.   web-based control panel with a script execution window.
  19.  
  20.   2) It connects to a web service provided by your hoster and directly
  21.   creates objects on a specified hosted database
  22.  
  23. The tool may also be used by hosters to script out databases for backup or 
  24. transfer purposes.
  25.  
  26. =====
  27. Usage
  28. =====
  29.  
  30. The Database Publishing Wizard provide both a graphical and a command-line
  31. interface.  To use the graphical interface, simply execute "sqlpubwiz.exe"
  32. without any arguments.
  33.  
  34. To retrieve details on the arguments supported by the command-line
  35. interface, execute the following command:
  36.  
  37.   sqlpubwiz help
  38.  
  39.  
  40. The tool also integrates directly into Visual Web Developer 2008 Express 
  41. Edition and all non-Express SKUs of Visual Studio.  Right click on any
  42. SQL Server database connecton and select "Publish to provider..." to launch
  43. the wizard.
  44.  
  45. For further details on usage please see:
  46.  
  47.   http://www.codeplex.com/Wiki/View.aspx?ProjectName=sqlhost&title=Database%20Publishing%20Wizard
  48.  
  49. ======================================
  50. Simple Command Line Scripting Examples
  51. ======================================
  52.  
  53. The following command will script the FooDB database existing on the local
  54. machine and default instance using the Windows credentials of the executing
  55. user to C:\FooDB.sql:
  56.  
  57.  
  58.   sqlpubwiz script -d FooDB C:\FooDB.sql
  59.  
  60.  
  61. The following command will script the FooDB database from the default
  62. instance on a machine named MYSERVER using SQL Server authentication with
  63. the username "Alice" and the password "7h92-v6k3" to the file C:\FooDB.sql:
  64.  
  65.     
  66.   sqlpubwiz script -d FooDB -S MYSERVER -U Alice -P 7h92-v6k3 C:\FooDB.sql
  67.  
  68. ============
  69. Known Issues
  70. ============
  71.  
  72. For a list of known issues, please see:
  73.   http://www.codeplex.com/Wiki/View.aspx?ProjectName=sqlhost&title=DPW%20Known%20Issues
  74.  
  75. ================================================
  76. Support, Feedback, Bug Reports, Feature Requests
  77. ================================================
  78.  
  79. For support and any feedback on the tool, please use the following forum:
  80.   http://www.codeplex.com/Project/ListThreads.aspx?ProjectName=sqlhost&ForumId=1807