Viewing 15 posts - 151 through 165 (of 395 total)
There is no sqquence object in SQL Server, instead there is an identity property for tables
April 11, 2005 at 11:23 pm
Select * from Tablea,Tableb Where TableA.Fname + ' ' + TableA.Lname = Tableb.Fullname
April 11, 2005 at 11:20 pm
DO you have any web site or link with regards to that
April 11, 2005 at 10:32 pm
You can simply check this by enabling Execution plan (Ctrl +K) in the query analyser.
April 11, 2005 at 2:08 am
u can use link servers as well
April 8, 2005 at 2:28 am
You can add new column to the existing table by this
alter table a add b int identity(1,1)
but if u want to do a change to an existing column it is...
April 8, 2005 at 2:18 am
Then what about a 21 days books
I normally think that if you want to get average knowledge on any software, 21 days books are ok (mind you that is my...
April 6, 2005 at 7:03 am
Thank Bell,
But my question is it is not a overflow or divide-by-zero so then why it is giving such a error!
April 6, 2005 at 6:42 am
Professional SQL Server 2000 Programming (Programmer to Programmer) by Robert Vieira
more info
http://www.amazon.com/exec/obidos/ASIN/0764543792/102-1276361-4448908
April 6, 2005 at 6:05 am
select * from information_schema.routines where Specific_Name not like 'dt%'
April 5, 2005 at 4:31 am
yes u are correct phillcart.
I just enable all the phases just to give an idea as u said it is not a compulsory thing to do.
March 29, 2005 at 1:06 am
you can do this by setting nessesary permisions
March 21, 2005 at 12:00 am
Select max(dt)a from ( select max(Date1) dtfrom ads_tariff union select max(Date2) dt from ads_tariff) b
March 11, 2005 at 6:29 am
Viewing 15 posts - 151 through 165 (of 395 total)