Tagged Questions
The database-deployment tag has no wiki summary.
6
votes
4answers
1k views
How do I deploy an Oracle database?
I have an ASP .NET application that connects to an Oracle or a SQL Server database. An installer has been developed to install a fresh database to an existing SQL Server using sql commands such as ...
4
votes
1answer
1k views
Problems with Database Deployment using VS2010 (Package/Publish SQL tab)
Background:
I am using the deployment tools in Visual Studio 2010.
I right clicked my project and selected Package/Publish settings. Put all my settings in there ...
I am then using "web deploy" to ...
2
votes
2answers
118 views
How to deploy my application if it requires a database with tables created?
I was previously using a database in SQL Server CE. That's kind of easy, because I can have a database in a simple .sdf file and deploy it with my application (either empty or with data already ...
2
votes
1answer
209 views
Deploying my application that uses Entity Framework and creating databases on the client machine
I created the model in Entity Framework, and then created the database from that model.
What would be the best way of doing this in the client machine?
If Entity Framework try to connect to the ...
2
votes
3answers
119 views
SQL Server: pushing development to production?
I'm currently using SQL Server Management Studio.
I have a development database, and access to a live database.
I just want to able to migrate my development tables to the live server.
I'm ...
1
vote
3answers
47 views
VS1010 Database Projects and reference data scripts
Just wondering the best way to handle the following....
I want to have a VS2010 database project to keep the schema of my database in the dev, integration test and production environments in sync.
...
1
vote
0answers
171 views
Where to deploy a database file to have read write privileges?
I've made a Setup Project in Visual Studio 2010 and I have a .sdf database file. I've created a custom folder so that I can set the default location [LocalAppDataFolder][ProductName] so that I can ...
1
vote
0answers
289 views
How to automatically deploy Visual Studio database project after build
I'm trying to automate the build process of a database project so that it would automatically be deployed to a database server against which I could run database unit tests. I'm really new to ...
1
vote
2answers
102 views
How do you manage your sqlserver database projects for new builds and migrations?
How do you manage your sql server database build/deploy/migrate for visual studio projects?
We have a product that includes a reasonable database part (~100 tables, ~500 procs/functions/views), so ...
0
votes
0answers
16 views
Deploy a database project build output (dbschema & co) to various databases
I am trying to build a database project, and then use the output along with VSDBCMD to deploy it to different databases. I have added different sqldeployment & sqlcmdvars files corresponding to ...
0
votes
2answers
42 views
How does an Entity Framework .edmx.sql file generate database in a deployed application?
I'm building a c# application in Visual Studio 2010, that uses database.
To create the database I used Entity Framework model-to-databse approach.
So in VS i added a "ADO.NET Entity Data Model" file, ...
0
votes
1answer
122 views
How to Deploy Database in Application Installtion
I have an application which uses Sql Server Express Edition to store data. I have a database with 8-10 tables in it. I have mdf and ldf file with me. Now i want to install my application in some other ...
0
votes
1answer
83 views
How to make database name a parameter on deploymanifest?
I am trying to customize default TFS build process by adding a step where a database is deployed using the database project. I followed [these steps][1] and the DB deployment works when the database ...
0
votes
2answers
496 views
TFS2010 Team build - how to deploy databases before running unit tests
I followed How to prepare database for TFS deployment walkthrough
and my build script successfully deploys the database at the end of the build process. However, I need the database to be deployed ...
0
votes
1answer
442 views
TFS build - VSDBCMD.EXE cannot find deploymanifest
I have the following problem.
I am trying to customize default TFS build process by adding a step where a database is deployed using the database project. I strictly followed these steps, the only ...
0
votes
0answers
82 views
Is it possible to force MSBuild to read the project .user file database connection property?
I have a solution that is currently built with a TFS build 2010 workflow and I'm trying to deploy it (it has a SQL CLR proj in it) automatically after testing. So I have a simple MSBuild activity that ...
0
votes
4answers
581 views
Visual Studio 2010 SQL Server 2008 Database Project - Custom Updates
In Visual Studio, say you've got a SQL 2008 Database Project and you add a non-nullable column to a table. When you go to deploy the database now, if that table has data in it it should fail. (Right?) ...
0
votes
1answer
436 views
How to Package/Publish SQL databases with ASP.NET MVC 2 Website?
I'm trying to deploy my ASP.NET MVC 2 Website for the first time on a local IIS 7 server, which is configured and running. I've made successful deployments using the Web Deploy option without the ...