Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
7answers
2k views

What are the real benefits of Visual Studio Team System Database Edition (GDR)?

Interested if anyone has used VSTS Database Edition extensively and, if so, which features did you find the most useful over the standard Visual Studio database projects? What are the most compelling ...
3
votes
1answer
566 views

Auto-tuning tools for Postgres?

I am looking for tools to auto-tuning for postgresql database. Do you know any tools for postgres like DB2 Design Advisor in DB2, Database Tuning Advisor in Microsoft SQL Server or SQL Access ...
3
votes
1answer
256 views

VSTS database schema comparison not saving comments

We use VSTS 2008 with SP1 and GDR R2 installed. Found the next problem: 2 identical databases (for example Database1 and Database2); Database1 is a working database, Database2 is a production one; ...
2
votes
4answers
215 views

PostgreSQL schema design

What is your preferred way of designing PostgreSQL schemata? Would you recommend the use of specific graphical design tools or just design the schema on paper and create everything by hand?
2
votes
2answers
499 views

VSTS Database Edition Schema Comparison

We use VSTS Database Edition to version control our database schemas. I like the idea of how it is supposed to work but have a big issue with the Schema Comparison feature. I like to use it for my ...
1
vote
3answers
297 views

Concept of In Memory Database and how to see if my data is being populated in HSQL DB?

I am using HSQL in memory database for test purpose of my application and using SQL Server as main database, now when am doing test then HSQL Database is being populated with same data that I have in ...
1
vote
4answers
198 views

PHP - Where can I find a simple database tool that is easy for non-technical users to use?

I'm looking for a simple database admin tool that will allow non-technical users to perform data-entry into a database (imagine a striped down version of phpMyAdmin). It would preferably allow the ...
1
vote
5answers
4k views

Is there an easy way to backup Oracle SQL Developer's User Snippets?

I love Oracle SQL Developer so I find myself using it a lot to complete my daily tasks. The thing is that my collection of custom snippets only keeps growing so I though it'd be interesting to learn ...
1
vote
3answers
3k views

How do I join two tables from two different databases?

Is there any way to use a query and join two tables that is in two different database on the same server for DbVisualizer? I used the following for the SQL server Select * from table union select * ...
0
votes
1answer
25 views

Sqlite administration tool for inserting images from the file system ? (OSX or Linux)

Is there a free sqlite administration tool that let me easily insert/update images from the file system as blobs in certain tables ?. I am looking for a tool compatible with OSX and/or Ubuntu Linux.
0
votes
3answers
37 views

How to monitor SQL (which uses prepared stataments)?

When first developing an PHP app (MySQl, but using ODBC interfaces to allow for future expansion), I was simply assigning my SQL to a variable and calling odbc_exec(). That made debugging simple, as ...