Visual studio 2010 database project data - visual-studio

I have Database project in my visual studio 2010 solution. When I deploy this database some data is also added in sql server in tables. I want to know where in database project that data is saved. I want to alter this data, so that when I click deploy in visual studio, new data is loaded in SQL Server.

Hi : I found the scripts under scripts\post deployment folder in database project. Thanks.

Related

SSIS package store from Visual studio

I create an SSIS package from visual studio 2013, and it works, now I want to create a job (it's the first time that I create one) in SSMS (sql server 2008) under step , SSIS package store it's empty.
Could you please help me because I don't know how to create a package?
PS I don't find DTS folder under sql server folder.
Thank you
SSIS package store it's empty
The package store is empty because you likely haven't created an SSIS catalog and haven't deployed your project to the SSIS Package store.
It looks like you are on SQL Server 2008, so if you are on SSIS 2008, use this MSDN article to deploy your project.
If you are on SSIS 2012 or greater, then see this detailed step-by-step walkthrough on how to setup and deploy your SSIS Packages. SSIS Projects: Setup, Project Creation and Deployment

how to create oracle database project in Visual studio 2013

I was trying to create a new oracle Database project in Visual studio 2013 but not able to find the right framework to do so. The closest I can find in VS 2013 is "SQLserver Database project" , which is not Oracle.
I am looking for a solution(plug-in/ tutorial) to create the same from couple of days but didn't get anything helpful.
following are the closest but didn't help for a beginner like me :
How to create Oracle database project using Visual studio 2010?
How to create a database project in Visual Studio 2013
If you are using the Ultimate/Enterprise editions of Visual Studio, here is the information you need to connect.
Oracle Developer Tools for Visual Studio (ODT) is a tightly integrated "Add-in" for Microsoft Visual Studio. Download ODT here: http://www.oracle.com/technetwork/developer-tools/visual-studio/overview/index-097110.html
Then, connect your application to an Oracle database using the .NET Framework Data Provider for Oracle. [source]
In the Choose Data Source dialog box, select Oracle Database, and click OK.
If the Add Connection dialog box opens, and the Data source is not Oracle Database, click Change to open the Choose/Change Data Source dialog box. For more information, see Choose/Change Data Source Dialog Box.
Type the name of the server where the database you want to access is located.
Type the User name and Password used to access the database, if required. For more information, see Add/Modify Connection (Oracle).
Click OK.

Some options(table definition,show table data,etc) were lost in Server Explorer in Visual Studio 2013

I just followed the http://www.asp.net/mvc/tutorials/mvc-5/introduction/adding-a-new-field tutorial, and exercise in Visual Studio 2013. When I finished migrating the database, I opened the database file, and connected into Server Explorer. When I right click the table of database, I just find copy, refresh, property, but other options(table definition,show table data,etc) were lost. How can I see the table data and definition in the Visual Studio?

Cannot open database.mdf after opening in Visual Studio 2012

Ive been working on some stuff with Visual Studio 2008, and SQL 2008 aswell..
Then i opened the project on another computer with 2012 version.
And now when im trying to work with the files in 2008 again, i cant open my database.mdf, becouse the 2012 sql has upgraded my database file...
Anything i can do to save it?
(Btw. the data aint that important, but more the whole table setup and relations)
Install 2012 SQL Server Express with Management tools, attach the MDF and extract the schema by generating "create" scripts for the objects you want using the wizard, then re-run the scripts on the new 2008 DB, don't think there's a way to downgrade. See here.
Or you can just keep developing on top of SQL2012, shouldn't be a problem even if you use visual studio 2008.

Autogenerated codes of Database in Visual Studio

I created a database in Visual Studio 2010 from Server Explorer. I want to see the auto generated codes created by Visual Studio. Where to find them?
There is no auto generated code. It creates a database on the server you specified in the Create New SQL Server Database dialog box.

Resources