creating database in the installation
-
is this possible, to create a database through the installation of a program, if you know that the poerson has mssql on their computer. I have to give a client a small program and am not sure if I have to manually run a setup script for the database, or if that can be done during the installation. Thanks for the help.
-
is this possible, to create a database through the installation of a program, if you know that the poerson has mssql on their computer. I have to give a client a small program and am not sure if I have to manually run a setup script for the database, or if that can be done during the installation. Thanks for the help.
Create the DB manually. Use sql files to create tables, sp's, Udd's and functions. Now, write these sql file names in a batch(*.bat) file with isql utility(not isqlw) and with connection parameters as specified by MSDN (refer SQL Server Books Online). Double click this batch program to do your setup program. Cheers;)
-
Create the DB manually. Use sql files to create tables, sp's, Udd's and functions. Now, write these sql file names in a batch(*.bat) file with isql utility(not isqlw) and with connection parameters as specified by MSDN (refer SQL Server Books Online). Double click this batch program to do your setup program. Cheers;)