Viewing 15 posts - 31 through 45 (of 285 total)
Please read the following article to see why that's probably the worst way to do such a thing.
This woke me up from a nap after lunch...
March 21, 2012 at 3:30 am
Check the table and its dependent objects. One of the objects in your replication set up would have missed.
March 13, 2012 at 2:06 am
sqlzealot-81 (2/22/2012)[hr
Write a sub query filtering the values from tableb and then join.Try the below...I dint really try it in SSMS.
SELECT
FROM ...
February 23, 2012 at 9:50 pm
Divine Flame (2/23/2012)
February 23, 2012 at 2:55 am
EasyBoy (2/22/2012)
sqlzealot-81 (2/22/2012)
This is the easy way to create a temp table.Use this temp table(#TempInts) for the query.
Apart, I would recommand you to use Exists...
February 23, 2012 at 12:46 am
SELECT number into #TempInts FROM iter_intlist_to_table(@keyPlantOperatingStatusExt)
This is the easy way to create a temp table.Use this temp table(#TempInts) for the query.
Apart, I would recommand you to use Exists instead of...
February 22, 2012 at 11:30 pm
and (x0_0.KeyPlantOperatingStatusExt in (SELECT number FROM iter_intlist_to_table(@keyPlantOperatingStatusExt))
The above snippet is not present in your query. Please use the same and look at the execution plan.
Or other way, change it...
February 22, 2012 at 11:10 pm
Try using PIVOT... That would help you for sure.
February 22, 2012 at 10:14 pm
SQL_Surfer (2/22/2012)
---------
SELECT
FROM Table a
LEFT JOIN Table b ON a.ID= b.ID AND b.BMonth= 2 AND BY= 2022
...
February 22, 2012 at 10:12 pm
GilaMonster (2/9/2012)
I should also add that in the cases where there's other apps on the server (SSIS, IIS, etc) you'd probably want to reduce the max server memory..
Okei, if only...
February 9, 2012 at 5:51 pm
sqlzealot-81 (2/9/2012)
GilaMonster (2/9/2012)
sqlzealot-81 (2/9/2012)
Will there be a situation for kernal memory pressure?Yes, as an example when there's more than 8GB physical RAM and /PAE is on.
I dont understand this point,...
February 9, 2012 at 5:43 pm
GilaMonster (2/9/2012)
sqlzealot-81 (2/9/2012)
Will there be a situation for kernal memory pressure?Yes, as an example when there's more than 8GB physical RAM and /PAE is on.
I dont understand this point, say...
February 9, 2012 at 5:42 pm
Divine Flame (2/9/2012)
sqlzealot-81 (2/9/2012)
GilaMonster (2/9/2012)
February 9, 2012 at 5:27 am
GilaMonster (2/9/2012)
February 9, 2012 at 3:34 am
Viewing 15 posts - 31 through 45 (of 285 total)