Viewing 7 posts - 16 through 22 (of 22 total)
...
alter table mytable alter column colname int not null;
cheers,
R
February 28, 2008 at 8:53 am
create table tutu (fid int)
create nonclustered index ix_tutu_fid on tutu (fid)
sp_helpindex tutu
-- ix_tutu_fidnonclustered located on PRIMARYfid
create unique clustered index ix_tutu_fid on tutu (fid)
WITH (DROP_EXISTING = ON);
sp_helpindex tutu
-- ix_tutu_fidclustered,...
February 28, 2008 at 8:02 am
This one works for me if this is what you are looking for, the idea is to create the temporary table before and insert the rows later.
CREATE TABLE #test (val...
January 25, 2008 at 12:32 am
...
I would do first a check on these files:
select * from sys.traces
Watch the maximum size of the files which is in MB I think and if everything is...
January 8, 2008 at 5:54 am
Hi ..
If you say something like below:
1.set statistics xml on
SELECT top 100* INTO TraceData
FROM ::fn_trace_gettable('D:\TraceInformation.trc', default
set statistics xml off
2.click on result and save the file with sqlplan extension somewhere...
January 8, 2008 at 4:24 am
Thank Andras, I will take it in consideration.
R
October 24, 2007 at 5:05 am
Thank yo mate but I am more concerned about locks on the table and so on ... I was just doing some tests and it seems the table is locked...
October 24, 2007 at 5:04 am
Viewing 7 posts - 16 through 22 (of 22 total)