Viewing 7 posts - 1 through 7 (of 7 total)
nitin.iec (9/14/2009)
September 14, 2009 at 5:40 am
marc.pollacchi (9/2/2009)
SELECT HD.ID,
HD.Force,
HD.[Column A] A,
HD.[Column B] B,
PC.[Column C] C,
HD.D
FROM dbo.[Table A]HD
left outer join (select HomID,[Last Name(s)]
from dbo.[Table B]
where [Person...
September 4, 2009 at 2:14 am
Thanks for your reply
I was able to solve the way Edogg suggested.
This is really crazy.... 🙂
August 12, 2009 at 6:25 am
Hi,
I assume Primary Key index is a clustered index.
Clustered index the data rows sorted themselves. Table storage and clustered primary key index cannot be in different file group, considering its...
May 27, 2009 at 9:29 am
if your formula is always the same, I suggest it is not the proper way of table design.
You will have to put the three attributes into three different fields...
October 8, 2008 at 2:24 am
Change the data type of the field registrationno from varchar to integer if it requires only numeric value.
Because creating index on integer field will be much faster than varchar fields...
October 7, 2008 at 10:43 pm
Hi,
Thanks for your solution.
I have already downloaded the sqlbolsetup.msi from the same url.
But when I run that file, it gives me an error message,
"Installation package could not be opened
Contact the...
October 7, 2008 at 2:59 am
Viewing 7 posts - 1 through 7 (of 7 total)