VS2013 Virtual Database how to use [closed] - sql

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Im wondering for what the SQL database project template exists. I have created one and inserted a table with some col. Now i saved that, so i want to write Into that mdf-file Form a Windows forms project. I dont know how to acces that or even if this SQL project template is ment for that sort of usage. Is this a good solution for a local database?
Sry for that kind or basic question

The database project exists so that you can store the database structure in source control, generate and deploy the database (or upgrade scripts).

Related

can we convert vb6.0 application to latest vb.net using visual studio 2019.If so please guide me on this. Application connect with oracle 11g also [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 days ago.
Improve this question
Need to convert vb6.0 application to latest vb.net application. Can we do it using vs2019. Please guide me for migration steps. Application connects with oracle11g currently .migrating to oracle 19c.ANd uses following code packages in vb applications Infragistics Data Widgets,racle Objects in house wrapper (dbOracleObjects.dll etc),Excel Objects (Excel 2000).

How to go about scraping and writing a script for an Oracle database [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
My manager has asked me to write a program that pulls data from a database that I have access to (it's an Oracle database and I'm using SQL developer). The idea is to get the data they want and put into an excel sheet in a way they would like. I haven't really wrote scripts before nor have I ever wrote a scraper, I was wondering what the first step is here and what resources I should use to get started? I have a couple of weeks to do this but I don't really know where to start.
I would start with an SQL query to find the data your manager wants. If you got the right result on screen, just right-click into the query result, select 'Export', and format= Excel...

Local DB for Universal Windows App [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 4 years ago.
Improve this question
I'd like to know what's the best solution to manage a database into a Universal Windows App. I was used to use SQL Server Compact CE, but of course it's not compatible with UWP. Is there a Microsoft way to do that, which integrates well with Entity ?
Database for Universal Windows Apps is provided through SQLite. See this example http://blogs.u2u.be/diederik/post/2015/09/08/Using-SQLite-on-the-Universal-Windows-Platform.aspx

Apply Database Changes after edit SQL Server [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
I have a DataBase SQL , I did some changes in tables and datatype of this data base
but this data base contains data
I used a select Insert statement from the old database to the new one after edit
Is it the best way to bring he data to the new database or I can use better way ??
It depends why you are doing it and when.
If you are doing this as a one off process on your development machine and there is only a small number of simple tables then this approach will be fine
If you are doing it for a larger number of tables, need it to be re-runnable or want a GUI then use SSIS or "SQL Server Import and Export Wizard". It's easy to use.

migrate my project to use Core data [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 9 years ago.
Improve this question
i have developed an ios application (not finished), and know i would like to migrate my project to use core Data, it's this possible ? if yes How ?
without giving any specifics it is difficult to be specific in an answer.
What you need to do is to link to the binary of the CoreData Framework in your solution.
You need to decide which storage you wish to use (sqlite etc). Is the information to be persisted user preferences? Is is a mini database? Is is one flat file store?
At the end of the day you'll need to do some reading based on which of the types of backing store you choose.
Hope this helps as a starting point.