I have never developed a database using SQL Server. How do you save a SQL Server Database in a specified location....like in the directory where your source code.
Thanks,
Blake
Printable View
I have never developed a database using SQL Server. How do you save a SQL Server Database in a specified location....like in the directory where your source code.
Thanks,
Blake
You don't.
The databases are in a central repository. It's not like MS-Access, where you can move your MDB file around. Instead, you can use the query analyzer or enterprise manager tools to work with the databases.
You can also make backups and move dbs around to other SQL Servers. You can reinstantiate it via RESTORE command.
Jon
thanks guys...