Forum Replies Created

Viewing 15 posts - 76 through 90 (of 147 total)

  • RE: instances nammed kbmss

    Does your system has a SQL Express default instance as well as another instance named KBMSS installed???

  • RE: Failover not happeing

    yes using the same profile on both the nodes

     

    yes have set the outlook separately on both the nodes independent of each other.

     

  • RE: Failover not happeing

    Outlook is installed on both the nodes. I'm getting this error.What does this means

     

    "[265] Unable to resolve email recipient name 'USNATMBSQLAdmin' (reason: The MAPI Call failed)

  • RE: Access to Prod Database SQL Server to developers in order to Work with DTS

    well this approach is really not good. The DTS packages were done directly on the production. You should have got the drivers and all...

  • RE: Help with a Delete query syntax

    well either u can create a cursor and delete all the duplicate records. Somthing like this

    Declare @id int,

            @name varchar (50),

            @cnt int,

            @salary numeric

    Declare getallrecords cursor local...

  • RE: Autogrow cancelled or timedout

    If this is a production box then autogrow feature takes a toll and hampers the performance during the production time evrytime the database gows. So I would suggesst you to to...

  • RE: db owner change

    I have a server where the owner of Model database is not SA but some other user. I don't know how it happened because I noticed it recently.

    So I need...

  • RE: Is it possible to Add Column to the table without copying data

    Well never use the EM to alter a table which is huge because the EM creates a new table,copies the entire data there and then deletes the old table. So...

  • RE: Autogrow cancelled or timedout

    This is INFORMATIONAL message added in Service Pack 4.

    There might be some operation going on (which caused file to grow) which was cancelled.

    If you have profiler for same...

  • RE: Change the owner of objects

    yes it worked when I specified the owner name.

    But in this case I just had one object by this name and the owner was XYZ. then also why was it...

  • RE: Change the owner of objects

    It gives the same error as above.

  • RE: Extract text

    Well the developers have saved the data like this.Now they just need to extract the text out of this.

  • RE: Need reult in one line

    Thanks a Lot.hat made things really clear

  • RE: Need reult in one line

    Hi

    Thanks a lot..Have written the query properly now.

     

    SELECT TBLA.Loginname,TBLA.updatecount,TBLA.refreshercount,TBLB.testcount 

    from

    (select E.LoginName,

    sum(case when type='Update' then 1 else 0 end) as UpdateCount,

    Sum(Case When type='Refresher' then 1 else 0 end) as RefresherCount

    from...

  • RE: Need reult in one line

    Hi

    Thanks a lot it worked.But just one more thing.

    You have written that " JOIN syntax also allows you to avoid conditions like "NOT IN (select ....)", because this can...

Viewing 15 posts - 76 through 90 (of 147 total)