Forum Replies Created

Viewing 15 posts - 61 through 75 (of 163 total)

  • RE: Out of memory message when user try to login on application

    Sue_H (8/29/2016)


    EasyBoy (8/29/2016)


    Hello,

    We have a very small database with SQL server 2014 (10 GB of ram). From the last week , when users were trying to login to through the...

  • RE: File Group Running out of space frequently

    Few days ago, we had nearly 200 GB of space available and now we have only 30-40 GB space left.

    Is there any script/method to find out who is filling the...

  • RE: File Group Running out of space frequently

    We are adding, dropping and updating data on daily basis. But, it doesn't seems to be that much 😉

  • RE: Optimize very frequent running SP

    Thanks all for your inputs. I will try all recommendation on our test environment and share my outcomes with you guys.

  • RE: Optimize very frequent running SP

    Eric M Russell (4/7/2016)


    I'm not understanding the following. Is [GDML.eResults.UserStore] a database with an odd 3 part name containing periods, or is this a reference to a remotely linked database/table?

    [GDML.eResults.UserStore].[dbo].[vw_aspnet_UserProfiles]

    That's...

  • RE: Slow running query

    GilaMonster (1/20/2016)


    Rather get a backup restored somewhere you can test. Because a test table with dummy data will behave differently.

    That's what i think earlier, but backup size is too large...

  • RE: Slow running query

    GilaMonster (1/20/2016)


    EasyBoy (1/20/2016)


    This index is already exist.

    CREATE INDEX [ix_tblEventSample_FkSample_fkEventtype] ON [dbo].[tblEventSample]([fkSample], [fkEventType]) WITH FILLFACTOR = 97 ON [INDEXDBGROUP]

    GO

    No it doesn't.

    Andrew recommended an index with the key fkeventtype, fksample....

  • RE: Slow running query

    Andrew G (1/19/2016)


    CREATE NONCLUSTERED INDEX ix_tblEventSample_fkeventtype ON dbo.tblEventSample (fkeventtype, fksample) WITH FILLFACTOR = 90 ON [INDEXDBGROUP] --[PRIMARY]

    That seems to resolve the index scan. See how long after that.

    This index...

  • RE: Slow running query

    EasyBoy (1/19/2016)


    GilaMonster (1/19/2016)


    EasyBoy (1/19/2016)


    Sean Lange (1/19/2016)


    Can you post the actual execution plan instead of the excel version? It shows a lot more detail which helps with the insight as to...

  • RE: Slow running query

    GilaMonster (1/19/2016)


    EasyBoy (1/19/2016)


    Sean Lange (1/19/2016)


    Can you post the actual execution plan instead of the excel version? It shows a lot more detail which helps with the insight as to what...

  • RE: Slow running query

    Sean Lange (1/19/2016)


    Can you post the actual execution plan instead of the excel version? It shows a lot more detail which helps with the insight as to what can be...

  • RE: Rewrite query for better performance

    GilaMonster (12/16/2015)


    And does tblEventSample have any nonclustered indexes? If so, please post definitions of all of them.

    Only one Nonclustered index:

    nonclustered : fkSample, fkEventType

  • RE: Rewrite query for better performance

    GilaMonster (12/16/2015)


    Picture of the plan is useless, and you should have mentioned it's SQL 2000, as that removes a lot of options.

    Please run the query with SHOWPLAN_ALL and put the...

  • RE: Rewrite query for better performance

    It is SQL server 2000. So, i am not able to save the sqlplan.

    Anyhow, i have captured the main part and attached for your consideration.

    Thanks

  • RE: Tune SQL Query with very large tables

    ScottPletcher (11/20/2015)


    Would need to see the view definition and related table definitions.

    If you're serious about tuning the tables, rather than just this specific query, would also need to...

Viewing 15 posts - 61 through 75 (of 163 total)