Forum Replies Created

Viewing 15 posts - 946 through 960 (of 2,462 total)

  • RE: deadlock on scheduled agent jobs in sql2005

    Check both the processes(code inside job) there must be some code/ logic conflict.

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

  • RE: how to delete a POST

    thanks , can you please provide the Steve email.i haven't found it here.

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

  • RE: TempDB Nightmare

    Try these queries

    Determining the Amount of Free Space in tempdb

    SELECT SUM(unallocated_extent_page_count) AS [free pages],

    (SUM(unallocated_extent_page_count)*1.0/128) AS [free space in MB]

    FROM sys.dm_db_file_space_usage;

    Determining the Longest Running Transaction

    SELECT transaction_id

    FROM sys.dm_tran_active_snapshot_database_transactions

    ORDER BY elapsed_time_seconds...

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

  • RE: TempDB Nightmare

    Vertigo44 (6/13/2012)


    Well it looks like there is no LOG directory and no .trc files anywhere.

    select * from sys.traces can give you trace file path

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

  • RE: adding indexes on subscriber

    Script out the indexes from publication side and apply on subscriber.but do these pushes in business off hours with some settings like "sot in tempdb = on", ONLINE = on...

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

  • RE: Facing deadlock issue more offen

    setup the profiler and trace the queries which are causing time out. Column filter Error code : 2

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

  • RE: convert clustered index to nonclustered, on subsciber table

    Why you want to keep different schema.?

    Replication strong requires same PK definition

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

  • RE: How to avopid double table scan

    thanks johan

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

  • RE: index rebuild no effect

    djordan 41144 (5/14/2012)


    after I rebuild an index that has around 90% fragmentation it has no effect. The operation seem to not error.

    defragmentation generally dosesnt work for small table (1000...

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

  • RE: Security Configuration

    durai nagarajan (5/14/2012)


    my jobs are running trough DBAdmin (running SQLAgent), if remove the access will it affect the jobs

    yes but you need to replace it with another appropriate...

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

  • RE: grant select to a table on a linked server

    maryamzolfaghar (5/14/2012)


    Yes it runs successfully

    then

    Msg 15151, Level 16, State 1, Line 2

    Cannot find the object 'Table', because it does not exist or you do not have permission. it...

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

  • RE: Logshipping - Need full backup of Sencondary Database

    ravisamigo (3/19/2012)


    Hi,

    We've SQLServer 2005 logshipping configured on one of production database and the size of this db is around 1 TB. It will take more time to take the backup...

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

  • RE: Parallel DB availability

    mirroring or transactional replication could be possible solution here but first database size and transaction frequency should be revealed here.

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

  • RE: Parallelism and date predicate

    your query is returning so much of data, if optimizer is going for parallelism , i don't see any harm in it. additionally exec plan comparison can give you better...

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

  • RE: grant select to a table on a linked server

    maryamzolfaghar (5/14/2012)


    I already have set up the linked server

    is this query returning 1 row in your case

    SELECT TOP 1 * FROM [serverN].MASTER.dbo.sysobjects

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

Viewing 15 posts - 946 through 960 (of 2,462 total)