generate html overview from db table & column comments & metadata [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 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

Related

Create DDL scripts for other db systems [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 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.

Data table that is searchable, filterable, sortable, orderable, exportable, server-side [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 4 years ago.
Improve this question
For work, I need a framework/library/plugin or set of tools that would provide a data table with the following features:
Searchable
Filterable
Sortable
Orderable
Exportable (xls, csv, ..)
Server-side processing (large datasets)
Our project is currently in rails, so preferably something that works well with it.
Bonus would be if there are data visualization features such as generating charts from the table data..
So far, I've considered DataTables, Handsontable, Superset,... but nothing checks all the boxes.
Use 1.Pentaho Data integration tool
Link about pentaho
It has community and license version. You can use any of them

SQL Server datasets [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
I would like to know if there are any SQL Server ready datasets which one can use. I know there's AdventureWorks (which i'm already using), but i would like to know if there are more.
I also open for paid solutions.
Thank you,
Vítor Barreto
Kimberly "The Queen of Indexing" Tripp of SQL Skills fame has a few very good, pretty large sample downloads available for free:
https://www.sqlskills.com/sql-server-resources/sql-server-demos/
And if you want a really enourmous data set - you can download the whole (anonymised) Stackexchange dump from here:
https://archive.org/details/stackexchange

Sample sql product Data [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
Looking for a open source range of data. Needs to be a range of products with variations e.g. books, shoes, hats, cds, dvds, dog toys, you get the idea, random products.
Also needs to be for a sql database.
Anybody got any suggestions where I might find such data?
Try doing a search for Northwind database samples. Microsoft also has some free database setups to us for practice. You can download these from their website.

SQL Server Entity-Relationship Model generation [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
What's the best tool to reverse engineer an SQL Server 2005 to an entity-relationship Model diagram? Could it be done usin SSMS?
Do you need more than the Database Diagram functionality provided in each database in SSMS? This will generate a diagram with any tables you choose and any relationships that are defined.
I've also used Visio which is useful if you have a large number of tables and need more control over the diagram.