Forum Replies Created

Viewing 15 posts - 166 through 180 (of 5,103 total)

  • RE: Indexs on Views (Do the call to a view uses index on a containing table)

    madamcurie2005 (4/30/2009)


    Hi

    I have created a view on my server A which is caling a table from Server B. The table that its calling...


    * Noel

  • RE: Result set

    That seems to indicate a client-side, not a server side issue.


    * Noel

  • RE: Performanceproblem with bcp

    Here are some points to help you get started:

    Do you have the Transaction log with too many VLFs ?

    Is the recovery more of the DB set to BULK_LOGGED at bcp...


    * Noel

  • RE: Hide tables in SSMS Object Explorer if user doesn't have permission

    I don't think that's implemented in SSMS.


    * Noel

  • RE: Merge Replication Conflicts

    jpdlp (4/30/2009)


    noeld (4/29/2009)


    jpdlp (4/29/2009)


    Example:

    In the table [article table] , the column [article stock] is 5

    subscriber 1 sells 1 unit and updates [article stock] to 4

    subscriber 2 sells 2 units...


    * Noel

  • RE: Log shipping error

    Why the database showing both standby/read-only?

    If it is in stand-by, it has to be in read-only mode so that next Transaction log backup can be applied.

    And that is the expected...


    * Noel

  • RE: isolation level

    I don't understand why you want to do that but here is a shot.

    If that person using RDP is going to use SSMS you can set the default Isolation level...


    * Noel

  • RE: Alter table commad taking more time to update table structure.

    ruchi (4/29/2009)


    Hi,

    We are trying to add one column with some default value in a table, which contains 25 crores rows of data. The query (Alter table command)is running from the...


    * Noel

  • RE: Merge Replication Conflicts

    jpdlp (4/29/2009)


    Example:

    In the table [article table] , the column [article stock] is 5

    subscriber 1 sells 1 unit and updates [article stock] to 4

    subscriber 2 sells 2 units and updates...


    * Noel

  • RE: log backup full during rebuild index

    If the rebuild of a table starts at the last VLF you are likely to run out of space if the space is tight.

    You should, BEFORE running the re-index, FORCE...


    * Noel

  • RE: DTC + Round Robin Reads?

    icarus (4/22/2009)


    My co-worker proposed the idea of setting up a SQL 2005 configuration where we have two database servers, connection strings from the application servers will point to a DNS...


    * Noel

  • RE: Log shipping error

    check service permissions on the share.


    * Noel

  • RE: log backup full during rebuild index

    dallas13 (4/29/2009)


    I have one database in my system,less frequently used with low transaction rate on them

    We have sql server event alert for error number-9002 which indicates full log.

    every sunday when...


    * Noel

  • RE: how can i find out if a table has an identity column programatically?

    if exists (select 1 from sys.columns c where c.object_id = object_id(@tname) and c.is_identity =1)

    begin

    -- identity column exists

    end

    else

    begin

    -- identity column does not exists..

    end

    But if you give us what you...


    * Noel

  • RE: ASYNC_NETWORK_IO

    Heather (4/28/2009)


    I'm seeing a lot to ASYNC_NETWORK_IO is activity monitor.

    I know this related to the network or client being slow. The network seems fine based on the looking at...


    * Noel

Viewing 15 posts - 166 through 180 (of 5,103 total)