Viewing 15 posts - 991 through 1,005 (of 2,463 total)
sumit.tembhare (5/4/2012)
:w00t:Use Sp_Who2 and kill that processes which is using MSDB database.
Killing is not an optimal solution it should be last weapon to use.
May 4, 2012 at 3:47 am
definitely Tempdb settings adjustment required here.may be multiple files reuired. do check the percentage of used and free of files here for tempdb.
May 2, 2012 at 10:34 am
have you hard coded this update stmt in job or using the maintenance plan for it ?
May 2, 2012 at 10:25 am
1 .statistics out of date for every table.
2. non-sarge-able column use which causing the index scan here.
3. function use also affecting here.
4. check if you have properly used the...
May 2, 2012 at 6:53 am
OP can you please post the related index definition too?
May 2, 2012 at 6:43 am
May 2, 2012 at 5:35 am
aaron.reese (5/1/2012)
May 2, 2012 at 5:17 am
Ramkumar (LivingForSQLServer) (5/1/2012)
2. isolate the db having the pain. sys.dm_io_virtual_file_stats dmv will help you to find that.
3. identify painful objects in key databases. sql server sys.dm_db_index*...
May 2, 2012 at 5:04 am
can u tell us the hardware configuration of server box? no if databases ? size of databases? disks ? and is any reporting intsance sitting on same box?
May 2, 2012 at 5:03 am
The operating system returned the error '32(The process cannot access the file because it is being used by another process.)' while attempting 'RestoreContainer::ValidateTargetForCreation' on dv file path
Another...
May 2, 2012 at 4:24 am
@kinston,
i liked you reply it helped me but one doubt ?
do we really need
case when c.name LIKE '%[0-9]' then '' else c.name end -- needed to sort "count_stub"...
March 20, 2012 at 12:42 am
Expected output
acct_id
count_stub
prod_count_stub
count_id
count_1
count_2
count_3
count_19
count_29
count_30
count_100
count_sss
means i need all values(having numbers as their suffix) in a sequence.
my order by clause is not working as expected :crying:
March 20, 2012 at 12:00 am
Thanks Lynn but my actual requirement is declare @t table (name nvarchar(50))
insert into @t
select 'count_1'
union select 'acct_id'
union select 'count_19'
union select 'count_2'
union select 'count_29'
union select 'count_3'
union select 'count_30'
union select 'count_100'
union select...
March 19, 2012 at 10:45 pm
it seems that u don't require the space actually. Then y are you trying to reclaim the space ? additionally if you really wanted to reclaim it you should have...
February 16, 2012 at 9:23 pm
Viewing 15 posts - 991 through 1,005 (of 2,463 total)