Forum Replies Created

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

  • RE: Possible Memory Issue

    Thanks all. I will reduce the max to around 13 gig. This server is only used for SQL. Nothing else runs on it.

  • RE: Possible Memory Issue

    These are my counters for SQl Server memory: both look the same

    Target Server Memory:14377680

    Total Server Memory:14377680

    Should I be changing the max threshold?

  • RE: Query performance for Ordering

    I get data in seconds without the top operator. I will check out the blog. Its really frustating as i have tried rewriting it different ways, I updated stats with...

  • RE: Query performance for Ordering

    Yes I have updated the stats.

  • RE: Query Performance

    I did move the other two statements to the where clause. My only concern is that I have to force the index usage.. currently my clustered index is on LocationId,ProviderID,Network....

  • RE: Query Performance

    I added the index you suggested and there is a considerable improvement. But i have to force the query to use it, it uses the current index, if I drop...

  • RE: Query Performance

    We load the data into these tables every week with truncate data,create indexes and Update Stats. These are read only tables never updated. The updates happen in stage and we...

  • RE: Query Performance

    I saved the exec as sqlplan and Zipped it up and posted....

  • RE: Query Performance

    Thanks. Let me try that and will post.. I was finally able to find the attachement button to post the EXEC plan..please take a look at it.

  • RE: Conditional Logic in SSIS based on a Status

    Thanks. Yes I tired that and it worked.

  • RE: Count or Sum?

    create table #temp1(num int)-- cna uses a derived table too

    insert into #temp1

    SELECT COUNT(*) AS NUM

    FROM table1

    WHERE EmpTermDate IS NULL

    UNION all

    SELECT COUNT(*) AS NUM

    FROM table2

    WHERE EmpTermDate...

  • RE: DBCC SHRINKFILE

    Thanks a lot for the info, I will try running the script.

  • RE: Nulls Vs Empty String

    Thanks for the info , I also wanted to know from performance and db size point of view. Which is more effecient.

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