Viewing 15 posts - 796 through 810 (of 860 total)
anam (1/18/2009)
Krishna_DBA (1/17/2009)
CREATE TABLE ContactPhone
(
--Numbers for NANPA--
AreaCode_NPA nvarchar(10),--Area code for NANPA
Exchange_NXX nvarchar(10),--Exchange code for NANPA
Number_XXXXnvarchar(10),--Last 4...
January 18, 2009 at 10:55 pm
Jeff Moden (1/18/2009)
Krishna_DBA (1/17/2009)
CREATE TABLE ContactPhone
(
--Numbers for NANPA--
AreaCode_NPA nvarchar(10),--Area code for NANPA
Exchange_NXX nvarchar(10),--Exchange code for NANPA
Number_XXXXnvarchar(10),--Last...
January 18, 2009 at 9:38 pm
CREATE TABLE ContactPhone
(
--Numbers for NANPA--
CountryCode_NPAnvarchar(10),--Country code for NANPA DEFAULT '1'
AreaCode_NPA nvarchar(10),--Area code for NANPA
Exchange_NXX nvarchar(10),--Exchange code...
January 17, 2009 at 9:32 pm
Yes, I know what you mean now Jeff. It would rather be cumbersome and will also make the application slower.
So, I have to create separate table for NANPA phone numbers...
January 17, 2009 at 8:32 pm
Thanks for that,
But as per my scenario, the contact numbers sometimes could be interntational and sometimes they are not, purely depending upon the customer(Politician). We would have to store whatever...
January 17, 2009 at 7:13 pm
Hello People,
I have creatd something like this:
PhoneType Table:
CREATE TABLE PhoneType
(
PhoneTypeIDintNOT NULLPRIMARY KEYIDENTITY(1,1),
PhoneDescriptionnvarchar(20)
)
ContactPhone Table:
CREATE TABLE ContactPhone
(
CountryCodenvarchar(10),
AreaCodenvarchar(10),
Exchangenvarchar(10),
PhoneNumbernvarchar(10)
)
ALTER TABLE ContactPhone ADD ContactID int References Contacts(ContactID)
ALTER TABLE ContactPhone ADD PhoneTypeID...
January 17, 2009 at 1:50 pm
Hi guys,
First let me thank you for your kind replies. I really appreciate that.
Let me get you the right scenario. I am involved in designing database storage for Politicians Contact...
January 16, 2009 at 12:20 pm
Oh thanks, That's true I shall delete the ON Update Cascade.
But i want to work it out this way:
If a customer changes the card details, I would like that...
January 12, 2009 at 9:18 pm
Thanks a lot for your reply Steve.
But I really would like to try and install it remotely, I want to experiment you see.
After struggling a lot for couple of...
January 11, 2009 at 12:19 pm
Hi,
Since you are focussing more on minimising data loss and huge transactions/sec you definetely need Transaction log backups for ever 15-20 minutes depending on how much loss of data your...
January 3, 2009 at 2:34 am
Hi,
Your question has already been discussed, refer this link:
http://www.sqlservercentral.com/Forums/Topic533052-146-1.aspx
December 27, 2008 at 6:35 am
Did you view the statistics to see whether SQL server is using the required indexes? Did you update the statistics? Did you check whether Autostats option is ON?There is a...
December 23, 2008 at 6:09 pm
Check this link and it explains to step wise how to setup linked server
December 23, 2008 at 5:53 pm
Oh!..Lazy sunday I kept on editing my posts today....:hehe:
December 21, 2008 at 8:49 am
mahamed_elsirty (12/18/2008)
if you want to get high score study from pass4sure i upload the exame for u this version is still valid ...
December 21, 2008 at 8:35 am
Viewing 15 posts - 796 through 810 (of 860 total)