Tagged Questions
7
votes
5answers
10k views
How do I check if a column exists in SQL Server?
How do I check if a column exists in SQL Server 2000?
2
votes
6answers
1k views
How do I know if CONSTRAINT_NAME is a Primary or Foreign Key?
Using this SQL on SQL Server 2005
SELECT CONSTRAINT_NAME
FROM INFORMATION_SCHEMA.KEY_COLUMN_USAGE
WHERE TABLE_NAME = @TableName
AND COLUMN_NAME=@ColumnName
I get the Primary Keys AND the Foreign ...
1
vote
1answer
41 views
What would be the best table structure?
I'm developing an app that will store MLS (Multiple Listing Service) Property Listings from several different MLS's. The majority of my customers will only use one MLS, however, some will use mutliple ...
0
votes
1answer
29 views
Database table structure Guidance
I am trying to build a web application that enables users to refer people to the site. A user can refer up to 10 people to the site and can have up to 7 generations, meaning that each person referred ...
0
votes
2answers
47 views
How to make tasks double-checked (the way how to store it in the DB)?
I have a DB that stores different types of tasks and more items in different tables.
In many of these tables (that their structure is different) I need a way to do it that the item has to be ...