Viewing 15 posts - 46 through 60 (of 69 total)
I replied to this thread but it seems to have been lost. So I'll do it again.
No. I will ALWAYS have one address per row. However, if I had...
February 5, 2005 at 11:47 am
Nothing. I was just trying to understand "nuances" of sql server. I have tried this on DB/2 and have been successful in past. I guess it must be the syntax....
December 16, 2004 at 8:29 am
I tried that but it didn't like it. I don't have the error with me right now but I'll post the error I got.
December 16, 2004 at 8:06 am
I have
INSERT tbl2
SELECT id,fname,lname from tbl1
WHERE ref# = '123'
This works fine but what if I just wanted to insert fname and leave lname out (which would insert NULLS...
December 16, 2004 at 7:51 am
Great. I'll be looking for that. Also, could you recommend a good "cook book" for stored procedures for sql server? Is there any book out there that takes a business...
November 30, 2004 at 1:13 pm
Sounds like creating a "domain field" is not a standard practice in SQL.
Is there any resource which shows standard practices such as naming convention suggestions for files, fields, stored...
November 24, 2004 at 8:25 am
The other "standard" that I like to keep (as far as possible) is to have non-intelligent, surrogate value for keys.
For example, I would design the Address Type table as...
November 23, 2004 at 6:45 pm
When designing State Code table, I am always a bit torn between two designs.
Here they are:
Design 1:
StateID int (pk)
StateCode varchar
StateName varchar
Design 2:
StateCode varchar (pk)
StateName varchar
The advantage...
November 23, 2004 at 10:35 am
This is a table which refers to two tables menus and roles. so menuid and roleid are pks and fks both. how would you recommend i design a join table?
October 8, 2004 at 9:22 am
One of the main things I am looking forward to is the ability to create SPs in languages that you are comfortable with. For example, I am comfortable with VB...
September 6, 2004 at 7:50 am
How would I know which index is being used for a statement. Even if I want to SQL Server to decide which one to use, is there any way for...
August 27, 2004 at 7:34 am
Viewing 15 posts - 46 through 60 (of 69 total)