Reputation: 721
So all my searches, regardless of combinations of keywords, end up showing me articles that assume I know all about SSDT.
Can someone please explain to me...
Upvotes: 4
Views: 6464
Reputation: 6856
Basically there are different project types for SSDT, they are visual studio project types and so have been created specifically for visual studio.
If you are developing SSIS or SSAS then you need to use SSDT (or pay for something like the varigence mist product), now it seems like you are talking about SSDT for database projects which is a template that lets you create tables, views, stored procedures (and quite a few other types).
SSDT for database projects is normally what people talk about when they say "why should I use ssdt over ssms", what I normally say is that ssms is an administration tool, and ssdt is the developer tool.
If you have a simple database and it is not very complex then ssdt is probably an overhead you don't need. If you have a complex database where you need to make changes to - ssdt is great because it gives you:
For a full rundown of why I think you should use ssdt see:
https://the.agilesql.club/blogs/ed-elliott/2016-01-05/What-Is-SSDT-Why-Should-I-Bother
Ed
Upvotes: 4
Reputation: 5745
Upvotes: 3
Reputation: 412
Like "Flicker" said, it's a plugin for Visual Studio for developing: SSIS (ETL), SSRS (Reporting) and SSAS (Cubes)
When you install SQL Server you need to select SSDT for installation. It's not installed automatically. I
You can see SSDT plugin when you are creating a new project in Visual Studio. You can then choose to create a "Business Intelligence" project, like: - Analysis Services (SSAS) - Reporting Services (SSRS) - Integration Services (SSIS)
You can also setup database projects which can be very handy. The database compare tool is excellent!
Upvotes: 0
Reputation: 6683
SSDT is SQL Server Data Tool, which is a plug-in for visual studio for developing BI projects (SSIS, SSRS and SSAS). It is not anything like Object Explorer.
When you install SQL Server, it installs a light-weight visual studio IDE on your machine and also installs SSDT as add-in so you can create/open BI projects.
SSDT is also available for download to install on machines w/o SQL Server. You need to have VS 2008 and later to use it. Each visual studio has it's own version.
Upvotes: 0