Forum Replies Created

Viewing 10 posts - 1 through 10 (of 10 total)

  • RE: Query very slow

    Yes the paging is also done i have taken the query into stored procedure there i used the temp table and when my application request me the number of rows...

  • RE: Query very slow

    RGR'us

    Very fast not even one second retrieves nearly 10,000 rows

    Enthusiast

    All indexes are done , before indexing it is more slower

     

  • RE: Query very slow

    335K

  • RE: Query very slow

    RGR'us

    Check the below query this returns me  3,34,516 rows

    SELECT JS.Code, FC.Name, JS.CompanyCode FROM JOBS JS LEFT OUTER JOIN CUSTOMERS FC ON JS.Code = FC.CCode and JS.GNumb = FC.GNumb

    WHERE JS.sdate...

  • RE: Query very slow

    RGR'us

    We need to display all these rows in a LOOK UP screen where the user can select the code  , we are using date ranges to display the result set but in...

  • RE: Query very slow

    My Executions Plan

     |--Sort(ORDER BY[JS].[Sdate] DESC, [JS].[Code] ASC))

           |--Hash Match(Right Outer Join, HASH[FC].[CCode], [FC].[GNumb])=([JS].[CCode], [JS].[GNumb]), RESIDUAL

  • RE: Query very slow

     

    My query is as below

    SELECT JS.Code, FC.Name, JS.CompanyCode FROM JOBS JS LEFT OUTER JOIN CUSTOMERS FC ON JS.Code = FC.CCode and JS.GNumb = FC.GNumb

    ORDER BY JS.sdate desc ,...

  • RE: Truncate Log

    Follow the below two steps 

    Step 1.

    BACKUP LOG HR_database WITH TRUNCATE_ONLY

    Step 2.

    DBCC SHRINKFILE(HR_database_log,5)

    Your log should come to 5 MB

     

    Cheers

    Krishna

  • RE: Administration

    Thanks Phill

  • RE: Alias Name in Where Conditions

    Yes for ORDER BY it is working i have implemented in many queries, but for condition problem occurred , any way Thanks for the reply no way to run now ....

Viewing 10 posts - 1 through 10 (of 10 total)