Forum Replies Created

Viewing 15 posts - 46 through 60 (of 1,068 total)

  • RE: Database Backup Strategy

    shohelr2003 (11/27/2012)


    There is no log backup in our plan. If transaction log grows larger, we just shrink the log file to 1 MB.

    You can consider to change the recovery...

  • RE: Service Pack Update error

    Check the setup log and Windows event log. You might find details if any thing failed during setup.

  • RE: Service Pack Update error

    Looks like you have installed SP on one of the nodes in the cluster.

    I think installing SP on other other node would fix the issue.

  • RE: Unable to lanuch replication monitor

    Do you get any error message?

    Do you have permission to access the distributor?

  • RE: deadlock-- immediate solution required

    stillconfused (10/25/2012)


    ...

    I want this job to be completed at any cost every time.

    ...

    You can try this idea:

    Make sure that no other session is using this database.

    Take the database to...

  • RE: urgent@@Help in Modify the query

    Check the view [TBL_Data]

  • RE: Index question

    sunny.tjk (10/18/2012)


    So, indexes can be applied only on columns with integer values?

    If it were so, SQL Server would not have allowed you to create index on char type column.

  • RE: Missing Indexes

    sunny.tjk (10/10/2012)


    So, can I create separate NC indexes on OFFR_TYPE_CD and CRETD_DT columns

    No. Single composite index is better.

    also can I create a composite index on [LKUP_ID] and [ATTR_VAL]...

  • RE: SQL user test mail not working?

    USE MSDB before running the above...

    use msdb;

    go

    exec msdb..sp_addrolemember @rolename = 'DatabaseMailUserRole'

    ,@membername = '<myuser>';

  • RE: unable to start the sql service

    Does SQL Server service account has write access the new path?

  • RE: DBA task for large production database

    50GB is not large. You should be able to handle it just like any other smaller DB.

    Integrity check is a must for all DBs whether small or large.

  • RE: Code suddenly stopped working and Im stumped!

    If it is on remote server, I guess query should be as follows:

    SELECT 1

    FROM RemoteServerName.EWH_Staging.dbo.STAGE_REMP_VCC_Distinct vcc

  • RE: Code suddenly stopped working and Im stumped!

    wedgemail (9/28/2012)


    First thing I think is EWH_Staging has been dropped. No EWH_Staging ever existed on the local server

    Check whether table/view called STAGE_REMP_VCC_Distinct exists in the database EWH_Staging.

  • RE: Sql Index

    vijayarani87.s (9/28/2012)


    I never used any of this in my project.

    You might have used them unknowingly!

    For example, when you created a Primary Key constraint, by default it creates a clustered...

  • RE: How to increase indexes performance for fast queries results

    neellotus07 (9/27/2012)


    After this i running query "Select * from "Tbl_Inv" then it taking 1.24 minutes but before this it was taking 2.53 minutes to complete

    Why are you SELECTing all the...

Viewing 15 posts - 46 through 60 (of 1,068 total)