Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
3k views

VS 2010 build database project receive SQL04151

I just started working with the Visual Studio 2010 Premium database project. I must say it does indeed rock. One thing I can't figure out is how to avoid the SQL04151 warning Procedure: ...
6
votes
1answer
2k views

Is there a way to suppress SQL03006 error in VS2010 database project?

First of all, I know that the error I am getting can be resolved by creating reference project (of type Database Server) and then referencing it in my Database project... However, I find this to be ...
5
votes
1answer
97 views

Does wrapping nullable columns in ISNULL cause table scans?

Code analysis rule SR0007 for Visual Studio 2010 database projects states that: You should explicitly indicate how to handle NULL values in comparison expressions by wrapping each column that can ...
5
votes
1answer
193 views

Vs2010 Data Generation Plan fails with “Data generation failed because of the following exception: Column ”xyz“ does not allow DBNull.Value”

I'm fairly new to Vs Data capabilities, and this is my first data generation plan. I have implemented a database using a Vs2010 database project, and used it to deploy to a sql server express 2008 ...
5
votes
2answers
442 views

Is there a way in a visual studio database project to exclude certain object during deployment?

I have a scenario where I am using a visual studio 2010 database project to deploy changes to multiple database installations, but on certain ones I want to exclude a set of views from that copy. Is ...
4
votes
2answers
332 views

vsdbcmd data loss may occur, but where?

When using vsdbcmd to deploy my database: vsdbcmd.exe /a:Deploy /manifest:MyDatabase.deploymanifest I Get: SQL01268 .Net SqlClient Data Provider: Msg 50000, Level 16, State 127, Line 6 Rows ...
3
votes
2answers
99 views

Schema Compare and Update comments out unused code

I have a Visual Studio 2010 Database Project. It works great for most stuff. However one thing is very annoying. Say I have a table called dbo.MyCoolTable. If I go the the database and rename it ...
3
votes
1answer
220 views

RedGate SQL tools v Microsoft Visual Studio Team System Database Edition (Data Dude)

I've been looking at RedGate's SQL tools and Microsofts Visual Studio Team System Database Edition (formerly Data Dude) for use within a testing and continuous integration environment. What we need ...
3
votes
1answer
278 views

Visual Studio 2008 Database Project generating ALTER DATABASE during schema compare

I have a new Visual Studio 2008 Database Project (Data Dude). It was generated by pointing at our existing database. I have now made a few changes (new columns, tables, indexes, etc) and I am trying ...
3
votes
3answers
1k views

VS 2010 Database Project dropping data on column name change

I am testing out the new database project features of Visual Studio 2010 and want to change the name of a column in a table. I changed the name in the create script and deployed it against the ...
3
votes
1answer
85 views

Visual Studio For Database Professionals 2008

Anyone know any a few good references for getting familiar with the SQL Server 2008 Database projects? I am getting a bit overwhelmed and would love to find a walk through for putting this project ...
2
votes
1answer
58 views

Frequent Setup and Tear Down of SQL Server Replication

I am using the Visual Studio Database Project for my database. I have it setup to auto-build twice a week. When it builds it drops the database and recreates it from scripts. I really like the tear ...
2
votes
0answers
95 views

How to merge changes from a source-controlled VS2010 database project to local development DB

We're trying out VS2010 database projects for a new development, using the following dev cycle: Use Management Studio to develop changes on a local DB instance (using the designers etc) Use VS2010 ...
2
votes
3answers
815 views

Is there a table designer for VS2010 database project?

Am I missing something here? It seems that the only options to create a new table in a database project in VS2010 is: Create a table object as a file, then create all constraints (defaults) as ...
2
votes
1answer
405 views

Circular references in Visual Studio Database Edition

I'm using Visual Studio Database Edition to script a number of databases. Many of the databases have references between them - for example, view in database A might do select ... from B..TableX This ...
2
votes
1answer
176 views

VS for Database Developers: Lookup Tables

How to you handle the contents of lookup tables that should be treated as "code" rather than data?
2
votes
1answer
420 views

Syncing permissions between a Database project and a database using Visual studio

I have a database project in visual studio (2008) that I am using to keep my database structure in a version control system (Git). I use the data schema compare tool in VS to maintain this database ...
1
vote
2answers
238 views

VS2010 Database project deploy - “SqlDeployTask” task failed unexpectedly, NullReferenceException

I have a solution in Visual Studio 2010 with a number of SQL Server 2008 database projects. I'm trying to do a 'Deploy Solution' and I'm getting the following error for one of the database pojects: ...
1
vote
1answer
65 views

VS2010 Partial Database Projects, will they help in my scenario?

Can I use partial Database Projects in the following scenario? I have numerous databases which are all inter-dependent on each other. Database2 executes SPs on Database1 and Database3 and Database3 ...
1
vote
1answer
243 views

When deploying a database project with vsdbcmd I get the error “Vardecimal support is enabled for the database but disabled for the project”

I get: SQL01265 Vardecimal support is anabled for the database but disabled for the project I've tried changing the .sqlsettings files to have: ...
1
vote
1answer
191 views

Is it possible to run Visual Studio Database Edition schema migrations from the command line?

Visual Studio 2008 Database Edition (Data Dude) has the ability to perform schema comparisons between databases and generate a script which migrates from one database to the other. Is it possible to ...
1
vote
3answers
1k views

Why does Schema Compare in Visual Studio 2010 show differences when there are none?

I had hoped that Visual Studio 2010 would have brought some improvements to the Schema Comparison function. I suspect there are some, but I can't get something basic working. I've sucked in a schema ...
1
vote
1answer
61 views

Where to start with Visual Studio for Database Developers

Does anyone have a list of advice, best practices, getting started guides, etc. for VS for Database Developers?
1
vote
1answer
410 views

Data Dude/VS Team System Database - Use with multi project databases

My current project uses Visual Studio Team System for Database Professionals GDR2 (aka DataDude). We are the only application using the database that we model using DataDude. My company would like ...
1
vote
6answers
859 views

Using nullable columns in a WHERE clause

Assume a table definition in SQL Server as follows: CREATE TABLE MyTable ( Id UNIQUEIDENTIFIER NULL, Info VARCHAR(MAX) ) And a query: DECLARE @id UNIQUEIDENTIFIER DECLARE @info VARCHAR(MAX) ...
1
vote
1answer
469 views

DB Pro (data dude) and Wix3 SqlExtension

I'm attempting to use Wix to create a database during install. I have my database setup with the Db Pro Visual Studio SKU (Data Dude as it's sometimes referred). However, the output seems to be only ...
0
votes
0answers
4 views

Correct way to apply domain group permissions in Visual Studio 2010 Database Project?

I have a database project which deploys to a 2005 database. The database contains useful tools and will be replicated to multiple servers. I have a group on my Windows domain called 'CM_Tools' - any ...
0
votes
1answer
25 views

TSD00563 Deployment may encounter errors because it depends on [sys].[sp_executesql] and it does not exist in the target database

I'm running into a very annoying issue. One of our SPROC is building up a dynamic bit of SQL which is then executed with sp_executesql (please let's not go into the issues with building up SQL strings ...
0
votes
0answers
94 views

How Do I Specify FILEGROWTH For Visual Studio Database Project?

I guess the title pretty much says it all. I have a Visual Studio Database Project, but I can't figure out how to set a value for FILEGROWTH for when the database is deployed. The deployment SQL ...
0
votes
1answer
115 views

Scripting Server Objects in a Visual Studio 2010 Database Project

Is the Pre-Deployment script (Script.PreDeployment.sql) the best place to put sql commands that create server level objects (specifically logins in my case)? I need to create server logins for the ...
0
votes
1answer
139 views

Good datadude walkthrough

Could anyone point me to a good walkthrough of Datadude (Visual Studio Database project) and the do's and dont's, with focus on remote deployment? We've been using it for versioning and updating our ...
0
votes
2answers
477 views

VSDBCMD vs. SQLCMD

Which is a better option for deploying databases VSDBCMD or SQLCMD when using a database project (VS 2010). Is there any major drawback other than the defaulted variables (databasename, datapath and ...
0
votes
1answer
460 views

VS 2010 Database unit testing with custom testcondition

After reading the following article Create Test Conditions for the Database Unit Test Designer on MSDN i decided to try create a custom test condition for my database unit tests Ive met the ...
0
votes
1answer
53 views

Why do dropped procedures get commented out?

I'm using the GDR 2/Database Project 2008. After doing a schema comparison, dropped objects like stored procedures get created in the database project with a /* */ comment around the entire ...
0
votes
1answer
137 views

VS2010 DB Project - moving stored proc to another schema

I've got a database under source control using a VS2010 database project. I'm trying to move some stored procs from the [dbo] schema to another schema. When I change the schema name in the project ...
0
votes
1answer
74 views

How do you fix TSD02016 error in Database

I have a database I am using the Visual Studio 2010 Database Project tool vsdbcmd.exe to create a schema from. vsdbcmd /a:Import /dsp:Sql /model:"Database" /cs:"Server=SqlServer; Initial ...
0
votes
1answer
41 views

Visual Studio Database Edition memory problems and auto recompile

Currently storing database of a large application with 2,000 stored procedures in Visual Studio Database Edition. The problem I'm having is that when I try and edit a stored procedure, Visual Studio ...
0
votes
1answer
125 views

Looking for a good “create” database scripting tool (not diff scripting)

I'm looking for a db script tool which can do the following: Create "create-scripts" for each table in the database and place them in separate files. Note: these files should not contain relational ...
0
votes
1answer
590 views

Visual Studio DB GDR2 - Can I deploy to a File without SysAdmin Privleges?

I have a Data Solution that has a Database Project and a Server Project. I want to deploy to an SQL Script. I don't want to have to have SysAdmin privileges on the SQL Server (SQL 2008). Is there a ...