Search Results

0
votes

Have you ever encountered a query that SQL Server could not execute because it referenced too many tables?

Are you using SQL Server 2000 SP3? …
0
votes

SQL Database documentation?

If the column name is "StatusID", and there is a "Status" table, with "StatusID" and "Name" fields, I think it should be painfully obvious. Also, buy a bigger printer. Nothing like a 36" pr …
1
vote

What FoxPro data tools can I use to find corrupted data?

Have you tried writing a small program that just copies the existing data to a new table? Also, …
1
vote

How big would such a database be?

To be accurate, this can get really complex. For example, this is how you do it on MS SQL Server: http …
2
votes

What’s your worst database accident happened in production?

I once managed to write an updating cursor that never exited. On a 2M+ row table. The locks just escalated and escalated until this 16-core, 8GB RAM (in 2002!) box actually ground to a halt (of the …
0
votes

SQL - What are your favorite performance tricks?

Prefix all tables with dbo. to prevent recompilations. View query plans and hunt for table/index scans. In 2005, scour the management views for missing indexes. …
2
votes

Represent Ordering in a Relational Database

I'd do a consecutive number, with a trigger on the table that "makes room" for a priority if it already exists. …
0
votes

DB/Entity Design: table related to any one of multiple tables

Or, I'll have to run a join against all the tables to get the chart data. Yes, and that is fine. …