Viewing 6 posts - 226 through 231 (of 231 total)
create table #t1(col1 varchar(200),col2 varchar(200))
insert into #t1 select 'john','trovolta'
insert into #t1 select 'trovolta','john'
insert into #t1 select 'carlos','moya'
insert into #t1 select 'john','candy'
insert into #t1 select 'candy','john'
delete x from
( select...
March 18, 2009 at 9:36 am
for 2005 this one shd work..
create table #t1(col1 varchar(200),col2 varchar(200))
insert into #t1 select 'john','trovolta'
insert into #t1 select 'trovolta','john'
insert into #t1 select 'carlos','moya'
delete x from
( select row_number() OVER...
March 18, 2009 at 9:12 am
It heavily depends on how much RAM you have and how many users are going to access, how much of data on your query..what kind of settings on SQL Server...
March 18, 2009 at 8:08 am
Hi terry,
Are you trying to find the name of the table associated with a particular index?
As per BOL 'id' on sysindexes maps to table name, so it find it easily.
Am...
March 18, 2009 at 7:33 am
while querying on sysindexes just try
select object_name(id) from sysindexes where name like ''
Silly but definitely makes sense
March 18, 2009 at 4:44 am
If you can afford to create an identity column/ transfer rows to an temp table
with identity column then this can work
create table #t1 ( id int identity(1,1) ,cid1...
March 18, 2009 at 3:35 am
Viewing 6 posts - 226 through 231 (of 231 total)