SQL Server Data Tools (SSDT) introduces an ubiquitous, declarative model that spans all the phases of database development and maintenance/update inside Visual Studio. The developer can use SSDT TSQL design capabilities to build, debug, maintain and refactor databases whether working with a database ...
0
votes
2answers
12 views
Only slight changes between 2 database projects
So for better or worse we've got two database projects that have essentially the same schema. The only differences being that Database 2 has a few more indexes than Database 1. Is there an easy way ...
0
votes
1answer
44 views
Using SSDT Publish (.dacpac) to deploy non null foreign key schema updates
I've been using .dacpacs to deploy database updates to our various environments. I have found a scenario that is causes the the publishing of a particular update to fail.
I need to add a new table ...
1
vote
1answer
36 views
Is it possible to transform connection strings when deploying reports? (SSDT BIDS For VS 2012/SSRS)
Firstly, this is not my area of expertise, so I apologise in advance for my lack of intuition and naivety when it comes to this sphere. I am merely trying to help out a colleague. Also, please let me ...
0
votes
0answers
11 views
Microsoft SSDT (10.3.21208.0)/Data-tier Project (MSVS 2010) and “Sharing”/Copied Certificates between the Project and Referenced Database Project
I am writing a "framework" of SQL Server (targeting 2008R2 and 2012) stored procedures and common/reference tables. Each SSDT/Date-tier project represents a different component (can be within the same ...
0
votes
0answers
36 views
SSDT & redgate source control - how to link?
We currently have our database objects in TFS2012 and happily use redgate sql source control to check in & getlatest. So far this works great.
I now want to use SSDT in order to create a dacpac ...
0
votes
1answer
55 views
SQL Server Data Tools (SSDT): Difference between Build, Publish, Deploy, and Compare+Update
Can anybody please clarify the difference between build, publish, deploy, and compare+update in SQL Server Data Tools (SSDT) 2012 ?
0
votes
1answer
19 views
How to make custom DatabaseSchemaProvider compatible with Visual Studio 2012?
I have built a custom DatabaseSchemaProvider deployed using a VSIX package.
Under VS2010 and VSTSDB/10 it works great and is used for supporting our custom database language infrastructure in ...
0
votes
0answers
11 views
SSDT emits spurious SQL71502: Function: [dbo].[***] contains an unresolved reference to an object
I have a number of SqlClr aggregate functions that were once in a separate project...but now with SSDT, I can have them all a single db project. Cool. All of them are in the global namespace. They ...
0
votes
2answers
88 views
Dacpac Upgrade database Times a little silly
Edit: Updated to state it isn't hanging, just takes AGES!
I'm trying to update an existing sql server database using a dacpac.
I can create a new SQL server database with the (stripped down) example ...
0
votes
0answers
43 views
Failed to publish a VS2012 Database project
I have a solution with 4 SQLCLR projects and 1 Database project which references the 4 SQLCLR projects. So I only need to publish the Database project to create the database.
But on TFS2010, the ...
0
votes
1answer
19 views
SSDT with DB project reference throwing strange compile error
I have a solution with 2 SSDT database projects, one referencing the other. In one of the stored procedures I have a simple update statement that looks something like the following:
update ...
0
votes
0answers
49 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 ...
0
votes
1answer
29 views
SSDT Parameters
I am trying to use SSDT to deploy a report that will allow for the input of 2 parameters that I can use for the start and the end of a log file. My parameters are declared as DateTime under the ...
0
votes
0answers
31 views
Visual Studio Schema Compare Doesn't Handle Variables Properly
If I have a variable, say $(someDb) as in
select * from [$(someDb)].[dbo].[SomeTable]
when I do a schema compare and there is another difference in the code, then even these variables get marked as ...
0
votes
0answers
15 views
SSDT Reformats Links in SSIS
I have just started using SSDT 2012 in Visual Studio 2012. One thing that's driving me up the wall is the way it keeps screwing up the layout. I have an XML source that feeds multiple elements into ...
3
votes
2answers
122 views
WiX project that references an SSDT project fails to build in TFSBuild - Undefined preprocessor variable '$(var.DatabaseProject.TargetDir)'
My project which is part of a larger solution was converted from a dbproj to asqlproj (SSDT). The solution includes a WiX installer which references the SSDT project. The WiX project builds fine on ...
0
votes
2answers
49 views
Publish data with SSDT?
I have a SSDT-project. When publishing a new version I want to publish/initialize some data in the database as well. Can that be done using SSDT?
0
votes
1answer
83 views
How to get address of Shadow SSDT?
I want to get the address of SSDT and Shadow SSDT using windbg.Windbg successfully connected to vmware .which commmand i have to use to get the address of these tables?
0
votes
2answers
177 views
Practical Development with VS2012, SSDT, and TFS
With SSDT/VS2012/TFS, stored procedures are saved as CREATE scripts.
I also have database references, which I use in some scripts like
select * from [$(MyOtherDatabase)].[dbo].[someTable]
If I open ...
0
votes
1answer
51 views
How to deploy multiple database on Team build
I tried the following in MSBuild Arguments but this didn't work out.
/t:Build;Publish /p:SqlPublishProfilePath=McMData1.local.publish.xml
/p:SqlPublishProfilePath McMData1.local.publish.xml
1
vote
0answers
60 views
Issue with ldap query in SSIS
I'm currently using an execute sql task in SSDT that queries AD. Here's what I have:
< LDAP://ou=groups,dc=blahblah, dc=com>;
(|(cn=*_BI_*)(cn=*.BI.*));
cn
The results eventually write to a ...
1
vote
1answer
274 views
Creating SSIS Package in SSDT. Conditional Split in Data Flow Task Causes Package To Break
I'm trying to export a table from SQL SERVER 2012 to An Excel 2007 Workbook.
The simple task from OLE DB Source -> Excel Destination works perfectly.
I have a field called [POD Assignment], I want ...
0
votes
2answers
44 views
Can you create a graphical view of a database using SSDT?
I have just started using SSDT. Is there any way I can get a graphical view of my database and the relations between the tables?
Thanks!
0
votes
0answers
98 views
VS2012 Database project build failed
In VS2012, I have a solution with two database projects : the project 1 (MyProjectSQLCLR) and the project 2 (Database) which reference the project 1. In the project 2, a pre-build event do a xcopy of ...
0
votes
1answer
207 views
Editing RDL Reports with SSDT (SQL Server Data Tools)
I have a few RDL reports hosted on my SharePoint 2010 website. I recently installed SSDT tools for VS 2012, and I can create a new reporting project to mess around with some report data sources and ...
1
vote
1answer
56 views
Why does select source for a SQL Schema Comparison cause VS2012 to crash?
For seemingly no reason, choosing SQL > Schema Compare > New Schema Comparison and then attempting to "select source" causes Visual Studio 2012 to crash. (It has been working as expected for months).
...
0
votes
2answers
112 views
SQL Server Data Tools and Edmx
So we're using the new SSDT Microsoft released, pretty cool stuff. We are keeping a database project under version control with all the schemas, and an offline database for development and we can ...
1
vote
1answer
146 views
How to build .sqlproj projects on a build server?
I have many .sqlproj projects that need to be built on our build server. I don't want to install all of Visual Studio on the build server just so I can install SSDT to build these. How can I build ...
0
votes
2answers
46 views
What is the syntax for adding multiple arguments onto the “Variables” parameter in sqlpackage.exe?
I am using SqlPackage.exe for my deployment. I have read the documentation here for the usage of SqlPackage.exe.
The documentation only states the synax for one variable:
Specifies a name value ...
4
votes
0answers
520 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 ...
0
votes
1answer
205 views
Unresolved Reference Error SQL71561 with SQL Server Data Tools 2010
I am getting an error when using SSDT 2010 (latest updates, v10.3.21208.0) with multiple database projects in a single solution. The error reads the following:
SQL71561: View: [dbo].[View] has an ...
0
votes
1answer
155 views
How can MDX query take parameters to filter by Fact Table datetime attribute
We have a fact table that has a datetime field [Log Entry].[Time Entry].
We would like to filter the following query based on a date range: where the [Log Entry].[Time Entry] was between two ...
2
votes
5answers
601 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 ...
1
vote
1answer
61 views
Specify a particular foreign key field as a link between two tables in the SSAS data source
I am quite new to SQL Server Analysis Services and now try to build my first cube (the first except for Adventure Works tutorial)
The problem is how to specify a particular field in a table to serve ...
1
vote
2answers
43 views
SQL tools leaking over into Visual Studio 2012 tools and has me confused
I normally have SSMS on one screen and VS 2012 on the other .. but with the development of SQL tools that are being integrated into VS 2012 the functionality seems to be overlapping.. It seems to me ...
1
vote
1answer
111 views
SQL Server Data Tools (SSDT) - Decide data type at deploy time?
does anyone know of a technique to decide the data type of a column at deploy time with SSDT / dacpac deployment, depending on what features are available on the target SQL Server instance? Concrete ...
0
votes
0answers
218 views
SSIS 2012 + Script Component + Custom .dll reference
Working in SSDT (Visual Studio 2010)
I got code for custom dll in C# (Visual Studio 2010) with Target Framework .net 4.0.
When I refer to above dll in my SSIS Script Component from the location ...
0
votes
1answer
87 views
Where I can find the T-SQL Dom generated by the SQL Server ScriptDom parser?
I'm playing with the Microsoft.SqlServer.TransactSql.ScriptDom library.
I found the way to navigate all the tokens I can get from a TSqlFragment:
TSql100Parser parser = new TSql100Parser(false);
...
0
votes
0answers
21 views
The value 4.5 for property ProjectVersion was not valid; a default value was used instead
I have application with .Net Framework 4.5, SSDT.
I want to remove below warning message:
The value 4.5 for property ProjectVersion was not valid; a default value was used instead. You must fix this ...
0
votes
1answer
29 views
Does Visual Studio 2010 provide any enhancement or additional features to a server with and existing installation of Microsoft SQL Server Data Tools?
Microsoft SQL Server Data Tools, SSDT, installed in addition to SQL server 2012 provides a Visual Studio shell. I'm curious if installing a full version of Visual Studio 2010 provides any enhancement ...
3
votes
1answer
318 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
450 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: ...
1
vote
1answer
119 views
SQL Script format in VS2012
Normally we can format code or markup in visual studio with Ctrl + K + D shortkeys.
How we can format sql script code like stored procedures or views etc using shortkeys?
Note: I am using SSDT ...
0
votes
2answers
66 views
How to incorporate drift back into my Sql Server Database Project?
With the usual source control solutions, a programmer will update his code from the repository and then check in his changes to the repository.
The only way I know how to incorporate drift back ...
0
votes
1answer
137 views
MS SQL Server Data Tools Conditional Split: Check if row is already in DB
I need to create a data flow for an existing MS SSDT project that inports a flat CSV file into an existing database table. So far so good.
However I would like to reject all entries where the column ...
0
votes
1answer
114 views
Incorporate data migrations with SSDT publish?
Is there a systematic way to incorporate data migration scripts with an SSDT publish?
For instance, deploying a new feature that requires a new permission be added to the database in the form of a ...
0
votes
0answers
142 views
SSDT - Reference non-dbo schema
In the case of having 2 database projects in a SSDT solution; DatabaseA and DatabaseB.
DatabaseB has a schema named 'ops' and a table name Person; ops.Person.
In DatbaseA, I would like to build a ...
1
vote
0answers
177 views
Sql Schema Compare will not update after CLR object installed 'Source schema drift detected'
After installing a custom CLR object Sql Server Developer Tools (SSDT) VS2012 will not allow an update. The error is "Source schema drift detected. Press Compare to refresh. After refresh same ...
0
votes
1answer
33 views
How to restore legacy data during re-create a database by sql server data tools?
i try to restore the aged data automatically while i re-create the database with the "publish" function of the database project in visual studio 2010.
Does anyone know which preference i have to ...
1
vote
1answer
77 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, ...


