Create DDL scripts for other db systems [closed] - sql

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I know that its possible to generate DDL scripts with JetBrains DataGrip, but is there any way to generate a DDL script for other db systems. In my case i must migrate my PostgresSql db to a MsSQL.

It is not possible with DataGrip.
The only workaround you can use is to copy the table to other data source of another vendor via pressing F5 on a table. It will show you the dialog where DDL preview is available. This DDL is the DDL for your "new" data source with appropriate type conversions.

Related

What database do i choose if I need to make an inventory system [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I need to develop an inventory system(Windows application).
This INV System will be installed on the HQ(always online) and on different sites(locations) which works off line and goes online only once to transfer the data to the server on HQ.
Which database(free)(huge data) can be used is my first question.
Secondly, how to update daily changes made on local database to database on server.
You can use Microsoft SQL Server Express for this. For transfer of data you can either run scripts in SQL or create packages in SSIS that will pull data from sites. These package can be a scheduled jobs or can be run manually.

Create script from existing database in SQLite 3 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
Do you know any way to create sql script from existing database in SQLite 3?
I need to create tables and insert script.
You can use the sqlite3 command line tool and use .dump to output the SQL that creates the database schema and inserts the data there.

generate html overview from db table & column comments & metadata [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Is there an opensource tool which generates html overview for db tables based on table & columnt comments & all other db metadata (types of columns). I'm working with a new db which is well documented in comments and like to have a html/pdf overview of the entire db (meta level).
Please take a look at SchemaCrawler, an open-source and free tool that generates database metadata documentation, including column comments, column data-types and so on, in HTML format. You can even generate database diagrams.
Sualeh Fatehi, SchemaCrawler

What is a good, free database scripting tool [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am looking for a free tool that will allow me to specify a SELECT statement on a table and then generate the result set as a series of INSERT statements to transfer to another database. I have the SQL Publishing Wizard, but that only allows me to generate statements for the entire table, and I can't specify a WHERE clause to filter the data it publishes. So far the only tool I have seen is made by Red Gate, which my employer only gives to DBA's. Are there any free tools out there that will let me do the same thing, without having to go and bug a DBA everytime I need to update some data in a database?
SSMS Tools Pack has a good collection of features, including generating insert statements. Works on MS SQL 2005 and beyond.
I've used this one in the past, I don't think its been updated recently:
http://vyaskn.tripod.com/code/generate_inserts.txt

How to generate Entity-Relation diagram from SQL DDL? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
For example DbVisualizer can be used to connect to a DB and create nice diagram out of existing tables and their relations. But in this specific case I do not have a live database but I have bunch of create table and alter statements.
Is there any tool to generate similar diagrams out of SQL DDL?
I found the MySQL tool MySQL Workbench to do a great job. There is a Mac OS X version. More information can be found at http://dev.mysql.com/doc/index-gui.html.
SQLFairy will generate graphics from plain SQL DDL files:
http://sqlfairy.sourceforge.net/
Visual Paradigm for UML can do this.
I believe that Embarcadero's ERStudio can import a SQL script into a diagram, but it's a pricey tool to use just for something like this. You could always just create an empty database and run the scripts then point to that.