Forum Replies Created

Viewing 15 posts - 31 through 45 (of 246 total)

  • RE: Backup Failing

    Ravi,

    try

    BACKUP DATABASE QAS

    TO DISK ='Q:\SQLBackups\QAS.BAK'

    Tanx 😀

  • RE: synchronization

    Make sure you don't have any conflicting primary keys.

    Tanx 😀

  • RE: SP_PREPEXEC and SP_UNPREPARE blocking

    Please help...........

    Tanx 😀

  • RE: query

    Jinu try this:

    select distinct

    emp.First_Name,emp.Last_Name,emp.Middle_Name,

    comp.employee_id,comp.request_dt,comp.numofdays,

    comp.reason,comp.request_by,comp.approve_dt,

    tech.First_Name+' ' +tech.Last_Name+' '+isNull(tech.Middle_Name,'') as REQUESTEDBY,

    comp.approve_status,comp.approve_desc,

    ...

    Tanx 😀

  • RE: error timeout

    Try doing these

    First:

    In database property set query time out to 0, It's default vaule is 600.

    Second:

    In your connection string add "Connection Timeout = 0"

    Third:

    When you executing your stored procedure or...

    Tanx 😀

  • RE: SP_PREPEXEC and SP_UNPREPARE blocking

    Please help...........

    Tanx 😀

  • RE: query

    Ken McKelvey (7/16/2009)


    Try this:

    SELECT DISTINCT

    emp.First_Name

    ,emp.Last_Name

    ,emp.Middle_Name

    ,comp.employee_id

    ,comp.request_dt

    ,comp.numofdays

    ,comp.reason

    ,comp.request_by

    ,comp.approve_dt

    ,tech.First_Name + ' ' + tech.Last_Name + ' ' + COALESCE(tech.Middle_Name, '') AS REQUESTEDBY

    ,comp.approve_status

    ,comp.approve_desc

    ,COALESCE(approve.first_name + ' ' + approve.last_name, '') AS APPROVEBY

    FROM employee_tbl emp

    JOIN l_compoff_tbl...

    Tanx 😀

  • RE: synchronization

    Elliott W (7/16/2009)


    Transactional Replication perhaps?

    CEWII

    Elliott,

    What about Merge replication for bi-directional synchronization.

    Tanx 😀

  • RE: "[DBNETLIB][ConnectionOpen(Connect()] Sql Server does not exist or access denied"

    You may receive this error message when the following conditions are true:

    • SQL Server 2005 or SQL Server 2000 is installed on a cluster.

    • You are connecting to a SQL...

    Tanx 😀

  • RE: Tempdb Data file Not Shrinking

    The issue was caused by a an sp that was running for a long time which did some indexes and some sortings....

    Couldn't figure out what exactly it does...

    But once i...

    Tanx 😀

  • RE: Tempdb Data file Not Shrinking

    Ya had tried that

    I killed the processes accessing the tempdb and the shrunk the data file...

    And that worked....

    Is this the case for every other databases should we kill the...

    Tanx 😀

  • RE: SQL Server Maintenance Plan

    Check if the user has sufficient privileges to exec the jobs.

    Check if he has these roles

    # SQLAgentUserRole

    # SQLAgentReaderRole

    # SQLAgentOperatorRole

    Tanx 😀

  • RE: SQL 2000 Jobs

    Check if the user has sufficient privileges to exec the jobs.

    Check if he has these roles

    # SQLAgentUserRole

    # SQLAgentReaderRole

    # SQLAgentOperatorRole

    Tanx 😀

  • RE: KB913090,failed to install

    Actually a user had problem in installing SP2 so it caused error while installing SP1 since some parts of the SP2 got installed and the registry got updated.

    Now we successfully...

    Tanx 😀

Viewing 15 posts - 31 through 45 (of 246 total)