Forum Replies Created

Viewing 15 posts - 991 through 1,005 (of 2,462 total)

  • RE: Statement giving tempdb space errors - help!

    definitely Tempdb settings adjustment required here.may be multiple files reuired. do check the percentage of used and free of files here for tempdb.

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: UPDATE STATISTICS for tables with / as job

    have you hard coded this update stmt in job or using the maintenance plan for it ?

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: query needs optimizinG

    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...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: query needs optimizinG

    OP can you please post the related index definition too?

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: clearing tempdb from buffer cache

    almost 4 years old post 😀

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: multiple drives for database files and log files

    see this link http://sqlserverpedia.com/wiki/Configuring_Database_Files_for_Optimal_Perfomance

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Rebuild index is running a fragmentation query

    aaron.reese (5/1/2012)


    I have run the Alter Index ()... Rebuild .... Script and activity monitor is showing the reindex as being blocked by another process (activity shows as DBCC)...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Slow performance periodically, SQL restart fixes

    Ramkumar (LivingForSQLServer) (5/1/2012)


    My few cents here.

    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*...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Slow performance periodically, SQL restart fixes

    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?

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Throwing error while restoring msdb database.

    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...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: ORDER BY clause

    @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"...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: ORDER BY clause

    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:

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: ORDER BY clause

    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...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: ShrinkData files in 24/7 Environment

    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...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: ShrinkData files in 24/7 Environment

    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...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

Viewing 15 posts - 991 through 1,005 (of 2,462 total)