Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 General SQL Server Forums
 Database Design and Application Architecture
 Table Design

Author  Topic 

abc123
Starting Member

47 Posts

Posted - 2009-03-25 : 08:40:20
I have one table EmployeeDetials as follow

CREATE TABLE [dbo].[Employee_Contact_Details](
[EmployeeID] [bigint] NOT NULL,
[HomeTelephoneNumber] [varchar](50) NULL,
[WorkTelephoneNumber] [varchar](50) NULL,
[EmailAddress] [varchar](50) NULL,
[FaxNumber] [varchar](50) NULL,
[MailingAddressStreet] [varchar](50) NULL,
[MailingAddressStreet2] [varchar](50) NULL,
[MailingAddressCity] [varchar](50) NULL,
[MailingAddressCounty] [varchar](50) NULL,
[MailingAddressState] [varchar](50) NULL,
[MailingAddressZip] [varchar](50) NULL,
[ContactDetailType] [varchar](10) NOT NULL)


so many times following columns have null values.

could u plz tell me wheather it is proper desing of
table containg many columns with null values?

Plz suggest me on the same

SwePeso
Patron Saint of Lost Yaks

30421 Posts

Posted - 2009-03-25 : 08:48:27
Are you using SQL Server 2008?
Then try to make the columns as SPARSE.



E 12°55'05.63"
N 56°04'39.26"
Go to Top of Page

abc123
Starting Member

47 Posts

Posted - 2009-03-25 : 08:58:56
i am working on SQL server 2005
Go to Top of Page

abc123
Starting Member

47 Posts

Posted - 2009-03-26 : 07:07:50
Any suggestion on the same
Go to Top of Page
   

- Advertisement -