Visual Studio Database Projects allow developers to create, manage, update, and deploy databases with the same development tools and processes as any other source code project.

learn more… | top users | synonyms

0
votes
1answer
15 views

Execute stored procedure from Visual Studio 2012 Database project

I have imported a SQL Server database into a Visual Studio 2012 database project. I am able to see the tables and stored procedures just fine. I would now like to execute stored procedures from that ...
1
vote
0answers
16 views

Get cdc tables in visual studio 2012/2010 database project

I am trying to create a database project in Visual Studio 2012/2010 where I need the CDC tables , because lot of my views are dependent on the CDC tables. I couldn't find any way to import the cdc ...
1
vote
0answers
36 views

“The target database schema provider could not be determined” With VSDBCMD but Only When /ConnectionString is Specified

I have been developing a deployment script to deploy our database project to multiple database instances. I'm testing it by running it manually. It is a very simple script, and just runs VSDBCMD ...
0
votes
1answer
44 views

How to handle users and logins in Visual Studio Database Project?

I've built a database in SQL Server 2008 R2 and am using Visual Studio 2010 Ultimate to create a database project for it. I've created both a SQL Server project and Database project to represent my ...
0
votes
2answers
43 views

how to update an existing Visual Studio 2012 SQL Server Database project from a database?

I'm trying to use VS 2012 SQL Server Database project for versioning control of our database schema. However, our database schema is being updated by another team/tool, instead of through the Database ...
1
vote
2answers
50 views

pull stored procedures from sql server to database project

I have a sql server database which has a number of stored procedures. I would like to add these stored procedures to TFS source control in to database project. It would be a difficult and time ...
0
votes
0answers
51 views

SSDT Register Data Tier Application

I am having problems publishing a SSDT database project and registering it as a data tier application. Let me explain. I have a database (A) which references two other databases (B & C) through ...
-5
votes
2answers
41 views

Type 'StoredProcedures' already defines a member called 'AddNumber' with the same parameter types

I have created Visual C# SQL CLR Database Project. I added two Stored Procedures: test1.cs and test2.cs. I have a function in test1.cs as AddNumber. In test2.cs i want to have a function with the ...
0
votes
0answers
26 views

Can I import BACPAC with data into DB project?

I have a database with data that I want to turn into a Visual Studio 2012 SQL Database project. I tried using "Import->Data-tier application (*.dacpac)..." - I get no errors but no data gets imported ...
0
votes
1answer
30 views

Can Visual Studio Database Projects create individual diff scripts for each object that has changed?

I'm beginning to work with Database Projects in Visual Studio 2010, and I know that it will generate a script that will deploy all of the changes (e.g., adding tables to columns, new ALTER PROC ...
1
vote
1answer
37 views

Deploy database project without knowledge of target database

I've got a question. I'm used to using Teamcity + Database project which was able to deploy the database to all of the DTAP servers. I loved the way that worked - it allowed me to deploy to production ...
0
votes
0answers
30 views

Visual Studio DBProj unmanaged tables not in build

I am new to visual studio 2010 database projects, and I would like to know how easy it is/hard it is to do what I am trying to do...If anyone has experience or has links to articles I would greatly ...
1
vote
1answer
53 views

Visual Studio Database Project Constraints - Table Script or separate file?

In Visual Studio Database Projects I've seen table constraints being added in 2 different ways: As part of the same script file used to create the table, after the CREATE TABLE statement; In a ...
0
votes
0answers
36 views

VS 2010 Database Project: Which determines sql03006 or sql04151

I am still researching, but I have not been able to figure this out. I reverse engineered a project from one database and all my unresolved references came through as SQL03006 errors that kill the ...
2
votes
3answers
137 views

Visual Studio 2012 - Database Project - setting a default profile for publish

Just wondering if anyone knows how to set a saved publish profile as the default i.e. profile that's automatically loaded when I select publish. I love the new profile approach but I'm a bit over ...
1
vote
0answers
32 views

Database project - deploy everything without files checked out by others

I have database project stored in TFS and the issue is that when two people works on the same database they overwrite changes to each other's when they deploy their not checked in versions. For ...
4
votes
0answers
541 views

Using database project and SQL Data Tools in Visual Studio 2012 : How do I get temp tables to resolve?

I am learning Visual Studio 2012's "database project" system, using Visual Studio 2012 with Update 1, plus SSDT. I am finding it very good at finding real problems in my database, especially ...
1
vote
1answer
28 views

Scripting FileTables

Scenario: I have 3 environments that I am using, Dev, UAT and Live. Each of which having it's own database, MyDb_Dev, MyDb_UAT, MyDb_Live. Then I have a VS2012 Database project in my solution that ...
1
vote
0answers
37 views

VS2010 Extension for database projects

I'm trying to create a VS2010 extension (managed VSPackage) for SQL Server Database Projects. What I'd like to do is capture the "query executing" event from the Transact SQL editor window: And ...
1
vote
0answers
120 views

Do VS Database projects and Entity Framework work together?

I've always been intrigued by Visual Studio Database Projects, and while they seem to be quite capable, I've never used them to any great degree outside of simplistic proof-of-concept work. I want to ...
2
votes
1answer
65 views

Database Project - Error with INSERT statement

I am trying to seed my database using a Database Project in Visual Studio 2012. As park of my Post Deployment script I have a statement similar to the following: INSERT INTO SomeTable (SomeTextCol) ...
2
votes
5answers
629 views

How to properly manage database deployment with SSDT and Visual Studio 2012 Database Projects?

I'm in the research phase trying to adopt 2012 Database Projects on an existing small project. I'm a C# developer, not a DBA, so I'm not particularly fluent with best practices. I've been searching ...
0
votes
2answers
98 views

Using VS2012 Database Projects: Cannot open database “my_database” requested by the login

I'm trying to get a VS2012 Database Project up and running for an existing product. I schema compared my database to populate my new database project and everything looked good. It appears to deploy ...
0
votes
0answers
55 views

post deployment script to populate data to multiple databases

I'm in a weird situation here: I have 3 database projects, 1 to hold lookup tables and their data, lets call this project "Common", and other two projects that reference "Common". I'm using a ...
1
vote
1answer
31 views

VS 2010 database projects and tables created by “select into”

I am trying to move an existing database into a VS 2010 database project. This database has been around for a very long time and has a lot of stored procedures. Many of those stored procedures ...
0
votes
2answers
44 views

VS 2008 Database Project - During Deploy 'DatabaseName' undefined

I am using VS 2008 and have inhertied a database project that I am trying to deploy. The deploy I am doing is to a new database. (as if I were setting up a new installation) The Deploy Action is: ...
3
votes
1answer
321 views

SQL Database Project: build different scripts depending on build configuration

The problem I want to solve is to build different scripts depending on build configuration. Say we have two instances of SQL Server: Enterprise version with connected Linked servers LocalDb version ...
0
votes
1answer
463 views

MSBuild & SQL Server Database Project: bind the deploy and publish desination to the build configuration

Visual Studio 2012. SQL Server Database Project. Four build configurations were created in solution: Debug, DevDb, TestDb, LocalDb. Three publish profiles were created in project: ...
0
votes
0answers
46 views

How convert a partial project VS2010 database to VS2012 database project

I would like to upgrade VS 2010 database project to VS 2012. Project is spitted by many partial projects due to many customization and configurations. Is there any feature similar to partial ...
1
vote
1answer
78 views

How do you get the database name in a Visual Studio Database project script?

I want to enable change tracking in my database using a Visual Studio database project. The command is ALTER DATABASE ##database name## SET CHANGE_TRACKING = ON (CHANGE_RETENTION = 2 DAYS, ...
0
votes
1answer
137 views

Default to the T-SQL Pane view within Visual Studio 2012 Database Project

When working with a Database Project in Visual Studio 2012, VS defaults to the "Design-View" pane when you add or edit a table. While you can work in split-screen mode, the T-SQL pane defaults to the ...
0
votes
0answers
184 views

WITH CHECK | NOCHECK OPTION FOR EXISTING DATA CHECK ENFORCEMENT IS IGNORED

I am using Visual Studio 2012, with a SQL database project and running database analysis against this database and it is raising the following warning: WITH CHECK | NOCHECK OPTION FOR EXISTING DATA ...
0
votes
0answers
40 views

Database project warnings

I've imported an existing database into a database project in Visual Studio. I'm getting a few types of warnings which I want to make go away: The database objects have quite a few references to the ...
0
votes
1answer
120 views

sqlproj post-build $(Configuration) incorrect on TFS

I am writing a sqlproj using the latest version of SSDT but the post-build event $(Configuration) macro doesn't seem to be evaluated correctly using TFS. I have written the following post-build event ...
0
votes
1answer
191 views

Sql Server Project: Post deployment script(s)

I have a database project and I'm wondering what best practice is for adding pre-determined data, like statuses, types, etc... Do I have 1 post deployment script for each status / type? OR Do I have ...
0
votes
0answers
99 views

Unresolved circular reference

I have two databases projects in a single solution, Database A and Database B. They both have queries that point to each other like this Select * FROM [Database A].dbo.Table Visual Studio will ...
0
votes
0answers
59 views

Use vsdbcmd to update a database project from an existing database

I would like to be able to update a database project from changes made in a database. I know it can be done using the Data-Schema Compare however I would like to be able to do this using vsdbcmd. ...
2
votes
1answer
166 views

Limited VS2012 SQL Syntax Highlighting

I have two instances of VS2012 Premium (11.0.51106.01 Update 1) on different machines (both Win8, 64bit). Both have SQL Server Data Tools installed. In both I'm working on a same SQL Server Database ...
1
vote
0answers
57 views

VS2010 database projects - global system objects that have a user database reference

I have something like the following in a VS2010 database project: SELECT object_id FROM [$(MyOtherDB)].sys.tables In other words referencing a global system object via a user database reference. ...
3
votes
2answers
121 views

SQL Database Project References to on-the-fly Temp Tables

I am trying to take a legacy database that is now on SQL Server 2008 R2 and create a database project within Visual Studio 2010 for it. There are several stored procedures that used some "on-the-fly" ...
0
votes
1answer
148 views

How to specify database for Database Project and deploy?

I created a Database Project in VS 2012, but how do I specify a database connection for it so that it uses the database context for Intellisense tips and for deployment? Also, to deploy to the target ...
0
votes
0answers
574 views

sql71501 sql parameter has unresolved reference to build-in type

from VS2012 I created a Database project and created ad custom type CREATE TYPE dbo.TypeProductCategoryTable AS TABLE ( ProductID int, CategoryID int ) Now when I write stored procedure with ...
1
vote
1answer
430 views

Using PublishProfile in MSBuild for Database Project

I have a database project in Visual Studio 2012. I am trying to create an MSBuild project to publish the database on the build server. In my solution, I have a Publish Profile that I would like to use ...
1
vote
1answer
455 views

import a dbschema or dacpac ignoring all errors

We have been using Visual Studio Database projects for a while now and they work great for deployments. We have started capturing the current state of databases in different environments as dbschemas ...
2
votes
0answers
174 views

Is there an option to parse SQLCMD-variables doing a comparison in Visual-Studio schema-comparison?

It looks like VS Database Project does not parse SQLCMD-variables doing a schema-comparison. All my synonyms looks like CREATE SYNONYM [dbo].[addressesExtDB] FOR [$(ExtDB)].[dbo].[addresses]; but ...
4
votes
1answer
1k views

Build error in tfsbuild with database project

I have setup my .NET project in TFS Build. It builds fine locally, but I am getting this build error on the server: The imported project "C:\Program Files ...
2
votes
2answers
156 views

Visual Studio database project with Firebird

I wonder if anyone knows if it is possible to use a Database Project in Visual Studio with Firebird? It seems that the DataSource in Target connection in the Deploy tab in the project properties is ...
2
votes
1answer
123 views

Include default constraint names in generation of update script

I'm using a SQL Server Database Project with Visual Studio 2012 and have the following problem when comparing and generating an update script: In Visual Studio, I add a column with a default ...
0
votes
0answers
158 views

synonyms visual studio 2010

An earlier "answer" was posted regarding an issue with Visual Studio 2010 and SQL Server database projects with SYNONYMS. The issue in detail is that if a project contains database synonyms that ...
1
vote
1answer
265 views

How to control build action of a SQL Server Database Project in VS2012?

I just upgraded a solution from VS2010 to VS2012 that contained a Database Project. The upgrade wizard walked me through the steps of converting the project to the new "SQL Server Database Project" ...

1 2 3 4 5