Forum Replies Created

Viewing 15 posts - 301 through 315 (of 1,409 total)

  • RE: Trace File

    ramana3327 (10/7/2014)


    It is giving that the path doesn't exist msg.

    Have you (double) checked the given path exists locally on the SQL Server? And does the SQL Server service account has...

  • RE: Solving Kerberos Issues in SSRS When Running Beside IIS

    Excellent article!

    You had a lot of issues, but managed to fix them working together with the windows and network admins. Unfortunate I'm working with external service providers who are always...

  • RE: Database Restore Issue

    Just a sidenote: if the restore command is executed with the option "WITH NORECOVERY" the database stays in the restoring state. You won't find an corresponding active RESTORE command, because...

  • RE: installing multiple editions on same computer

    You can install multiple versions on the same computer. Best practice is to first install the older version (you say you have already SQL Compact) and then continue with the...

  • RE: Trace File

    ramana3327 (10/6/2014)


    Little confuse about the profiler timings.

    Correct me if I am wrong

    When we selecting trace from Tools the time filter is in milliseconds but when we are monitoring from the...

  • RE: How to resolve deadlock issues.

    A deadlock involves two actions that both need an lock (mostly on a row or page) but the resource is already locked by the other action. Most of the times...

  • RE: Sending attachment using Database Mail

    Make sure you have set the correct permissions on the folder to the SQL Service account.

  • RE: help while displaying resultSet in SP

    With your new requirements we don't have enough information to provide a solution. You can't just only query on the existance of the parameter values anymore.

    You need to query on...

  • RE: Trace File

    Default it will read all sequential files, but you can add the desired number of files as an extra parameter,. See sys.fn_trace_gettable (Transact-SQL) for a complete explanation of this function.

  • RE: Trace File

    GilaMonster (10/6/2014)


    HanShi (10/6/2014)


    If the second server doesn't have access to the D drive of the first server you first need to copy the physical file to an accessible location. Next...

  • RE: Trace File

    If the second server doesn't have access to the D drive of the first server you first need to copy the physical file to an accessible location. Next you can...

  • RE: help while displaying resultSet in SP

    You made some mistakes in the sequence of commands (specific tyhe "SELECT 1"). Below code should do it:

    CREATE PROCEDURE [dbo].[Sproc__Save_Teacher_Details]

    -- Add the parameters for the stored procedure here

    @FacilitiDetailID...

  • RE: Add dollar to the result of floor value

    Formatting of display values is best done inside the application. Application programming languages are far better in manipulating strings.

    If you realy want to do it in SQL you need to...

  • RE: Are the posted questions getting worse?

    Last weekend attended the preconference and SQL Saturday in Vianen/Utrecht (The Netherlands). Unfortunate Learte JR couldn't make it so I missed the Powershell pre-con. So I went to Denny Cherry...

  • RE: db created in sql server 2005 to Attach in sql server 2008?

    When upgrading a database to a newer version, don't forget to execute the following steps:

    - change compatibility level to the current level (if no old syntax is used)

    - change verification...

Viewing 15 posts - 301 through 315 (of 1,409 total)