Tagged Questions
4
votes
4answers
4k views
Difference between clustered and nonclustered index
Ok, I'm in the middle of developing a project on my own (first time for me for this scale) and it started in a rush so my tables are kind of miserable. I need to add proper index' and need some help.
...
3
votes
5answers
280 views
“There can only be one IDENTITY column per table” - Why?
"There can only be one IDENTITY column per table"
Why is it so? Take a scenario of a vehicle, there exists a chasis number which is unique as well as the registration number which turns out to be ...
3
votes
9answers
190 views
Database design question. BIT column for deletions
Part of my table design is to include a IsDeleted BIT column that is set to 1 whenever a user deletes a record. Therefore all SELECTS are inevitable accompanied by a WHERE IsDeleted = 0 condition.
I ...
2
votes
2answers
84 views
Design question on storing meteorological data on SQL Server 2008
We're using SQL Server 2008 R2 Enterprise Edition.
We are measuring meteorological data from what we call MetMasts.
Basically this is a mast with lots of equipment; anemometers (for wind speed) at ...
1
vote
3answers
277 views
SQL Server Performance with a large table
I'm looking for some advice for a table structure in sql.
Basically I will have a table with about 30 columns of strings, ints and decimals. A service will be writing to this table about 500 times a ...
0
votes
3answers
124 views
Can a Primary Key be a Non Clusterd Index on a Clustered Table?
I am designing a Members Table to store the users of a website. It will be used every time a user logs on to the website and occasionally accessed to update user details.
The users will log on with ...
0
votes
2answers
1k views
How to show description of column in sql server 2008 table designer? [closed]
Possible Duplicate:
SQL Server: Extract Table Meta-Data (description, fields and their data types)
Dear Professionals,
Is there any way to show the description, I've already entered in ...