Forum Replies Created

Viewing 15 posts - 616 through 630 (of 812 total)

  • RE: Failover question

    if your resource are depending on node 2 when node1 faile then yes, they will switchover to node2 and will try to find reources there and after number of retry...

    ----------
    Ashish

  • RE: Reclaim unused space from data file

    did you deleted your data and table or just flagged them as 'to be deleted'?

    You can use below query to check space consuming by tables:-

    /*

    Obtains...

    ----------
    Ashish

  • RE: model database

    if your tables are fixed then just add those tables in model. And everytime you create new database, these tables will be there. As well you can configure the users...

    ----------
    Ashish

  • RE: model database

    it will fired whenever there is any syntax like create database either by query analyzer or EM

    ----------
    Ashish

  • RE: model database

    you need to create trigger for this event and place the trigger in master. It will keep track of any new databases addedd and will execute accordingly.

    ----------
    Ashish

  • RE: Stored procedure not executing properly when set up as job

    if your problem not yet resolved then can you just corss check that you getting only the required record in your temp table

    ----------
    Ashish

  • RE: Read autorization of SP WITHOUT execute/update right possible?

    i think you can give permission as view definition for a specific SP/s

    ----------
    Ashish

  • RE: How can you see the Recovery Model?


    A related question, if we have confirmed that a given database is in full recovery, where do we look to see how often transaction logs are backed up?

    Steve

    if you got...

    ----------
    Ashish

  • RE: How to secure our MSSQL 2008 Express database ?

    create a role/s and define required permission to that role.

    Then you can add users in that role.

    It will be easy for you to manage.

    ----------
    Ashish

  • RE: SQL 2000 table performance

    ok, but thats what I mean to ask in my original question.

    ----------
    Ashish

  • RE: SQL 2000 table performance

    ok, so you mean if the isolation level is not the read commited then he will not have any performance issue

    ----------
    Ashish

  • RE: SQL 2000 table performance

    check the update statement, are they 'with lock' hint which making the table not be available for other use.

    Also what is the isolation level of the database/server?

    ----------
    Ashish

  • RE: transactional replication problem

    is your snapshot agent running everytime? Check in the history of job for snapshot agent for that perticualr publisher.

    Are you getting any error detail in replication monitor or msrepl_errors...

    ----------
    Ashish

  • RE: Update Seq

    what is the logic?

    ----------
    Ashish

  • RE: DISTINCT & MAX & GROUP BY Query

    try this

    SELECT userid,MAX(taskid) AS Maxtask

    FROM tablename

    GROUP...

    ----------
    Ashish

Viewing 15 posts - 616 through 630 (of 812 total)