Viewing 15 posts - 10,396 through 10,410 (of 49,566 total)
Briceston (1/15/2014)
GilaMonster (1/15/2014)
WHERE ((([Serial Query].SER_OR_ADM_IND) = 'A'))
AND t1.DISCHARGE_DISP ! = 'VVX'
AND t1.VISIT_DATE = CONVERT(varchar,GETDATE(), 101)
AND (t1.Diag_Code1 =...
January 15, 2014 at 8:38 am
I suspect (without any ability to test) that you want this
WHERE ((([Serial Query].SER_OR_ADM_IND) = 'A'))
AND t1.DISCHARGE_DISP ! = 'VVX'
AND t1.VISIT_DATE = CONVERT(varchar,GETDATE(), 101)
AND (t1.Diag_Code1 = '' OR...
January 15, 2014 at 7:58 am
What's the purpose here? Why do you want a column dynamically named (I pity the front end app which uses that)
January 15, 2014 at 5:54 am
I'm not a fan of dev and prod on the same server (mess up dev and you can take prod down), but don't move just on account of memory, each...
January 15, 2014 at 5:38 am
Update or insert a row into a table and check via the front end whether or not you can see the change.
January 15, 2014 at 5:34 am
Right, standard edition.
Standard is hard-capped at 2GB of memory. It can't use more so the other 4GB of memory you have on that server is wasted. So the 1.6GB looks...
January 15, 2014 at 5:15 am
When you're debugging or performance tuning, try one thing at a time, test, evaluate, try something else. Change a bunch of stuff and you'll never be able to figure out...
January 15, 2014 at 5:12 am
Probably means SQL doesn't need more. If you're not running load on it, it won't use more memory than it needs.
That said, that looks like 32-bit without AWE or /3GB....
January 15, 2014 at 5:09 am
Plateau (1/15/2014)
GilaMonster (1/15/2014)
Oh, and turn boost priority OFF. It's a setting that should almost never be enabledWill do Gail, would you mind explaining this?
Not being argumentative just wanting/trying to understand
Books...
January 15, 2014 at 5:07 am
Oh, and turn boost priority OFF. It's a setting that should almost never be enabled
January 15, 2014 at 4:50 am
Don't use Task Manager to check SQL's memory, it displays incorrect values.
January 15, 2014 at 4:45 am
Or, unless you're pressed for space, leave them at 20GB?
January 15, 2014 at 4:43 am
rodjkidd (1/15/2014)
January 15, 2014 at 4:35 am
Sort and hash warnings are in-memory operations that don't fit into memory and hence spill to TempDB, they're not an indication that TempDB is too small (that would be autogrow...
January 15, 2014 at 4:21 am
Stuart Davies (1/15/2014)
But something tells me that the the #temp table won't be visible to the dynamic sql.
It will be, but since it's not referenced anywhere inside the dynamic SQL...
January 15, 2014 at 3:02 am
Viewing 15 posts - 10,396 through 10,410 (of 49,566 total)