Viewing 15 posts - 1 through 15 (of 27 total)
Hi David,
Sorry that was a tupo, its not 10K items , its 100K items. Considering the fact that we have 16MM records and 33 index on the item table.
Rows...
August 21, 2012 at 2:53 pm
I just did a select * from table
in 2005 and 2008.
2005 - it took 35 mins for 16 million rows
2008- took 48 Mins for 16 Million Rows.
I see...
August 17, 2012 at 7:52 am
Sandeep,
what details you need let me know? We did an in-place upgrade. Run time comparison is from the application log.
August 16, 2012 at 8:59 pm
Seems like the table structure. I have a column named 'Source/Class' could this be causing a problem?
Thanks
Dev
August 26, 2009 at 1:55 pm
Close EM and open new instance.
This seems to be a bug in EM. I have faced it many times.
Thanks
Dev
August 26, 2009 at 1:27 pm
Hi Gail-
SELECT * FROM SysUser WHERE CHARINDEX('_' ,Name ) > 0 --> Works and gives me 4 records
select * from SysUser where name like '%/_%' --> No...
April 9, 2009 at 1:01 pm
Wow so quick...thanks Guys that helps. Here is another wasy to do that
SELECT * FROM Table1 WHERE CHARINDEX(@SearchParam , Col1) > 0
Thanks Again..:)
April 9, 2009 at 12:58 pm
Thanks all for your help.. Appreciate it.
That answered my question.: So if rollback in continuing and we try to kill it it will not do any thing. will jsut display...
August 28, 2008 at 12:34 pm
This describes what is the blocking and the blocked process.
You can see here both are same. i.e. 65. So this says its a self blocking, on the table as mentioned...
July 29, 2008 at 10:58 am
select suser_sname(owner_sid) from sys.databases where name = 'YourDB_Name'
Cheers
Dev
July 25, 2008 at 3:52 pm
I would also like to know if this is possible?
July 25, 2008 at 3:16 pm
select name as column_name from syscolumns where xtype in
(select xtype from systypes where name NOT IN (text, image, ntext))
and id = (select id from sysobjects where name like 'Your_table_name')
You...
July 25, 2008 at 1:13 pm
You have to join sysobjects, syscolumns and systypes.
This should give you the desired result.
July 25, 2008 at 12:49 pm
Viewing 15 posts - 1 through 15 (of 27 total)