Viewing 15 posts - 151 through 165 (of 309 total)
Vincy-856784 (5/21/2010)
No, I cannot use function becuse if I understood correctly I cannot have Insert/update/Deletes in a scalar function OR may be in any function???
So, if I inderstand you correctly,...
May 21, 2010 at 6:20 am
Just make sure you do not perform any table scans after the morning run. Data that you dont read will never be loaded into RAM.
The data that you loaded in...
May 21, 2010 at 5:29 am
If you post the execution plan, table definitions, and index definitions it becomes much easier to help... 😉
May 21, 2010 at 5:22 am
I am not sure I understand exactly what you are trying to do, but I dont think it is possible to call a stored procedure for each row in a...
May 20, 2010 at 4:41 pm
wmalik001 (5/20/2010)
I already read that, but i first want to try reducing the max value,
so you are suggesting I should make it to 12gb that...
May 20, 2010 at 4:28 pm
I agree. This seems strange. This could possibly be regarded as an optimizer bug.
Even this code gives an index scan:
DECLARE @v-2 INT=45
select * from BAR where smallid =...
May 20, 2010 at 4:21 pm
wmalik001 (5/20/2010)
05/20/2010 05:33:14,spid1s,Unknown,A significant part of sql server process memory has been paged out. This may result in a performance degradation. Duration: 0 seconds....
May 20, 2010 at 3:51 pm
cgreathouse (5/20/2010)
May 20, 2010 at 3:32 pm
Maybe table_name is a view that contains an expensive join or order by.
If table_name is really a table and there is no order by involved there should be no problems
May 20, 2010 at 10:04 am
So it seems that MacAfee and SQL server is fighting each other for the last bit of memory.
Either disable the antivirus or reduce max memory for SQL server.
May 20, 2010 at 10:00 am
How slow is this statement?
You say that it takes 100% of the query according to the execution plan, but how many ms is that ?
To see this exactly you could...
May 20, 2010 at 9:59 am
SQL Server itself should not cause any paging.
Paging is probably caused by other processes on the machine.
If paging is really a problem you can try to force SQL server to...
May 20, 2010 at 9:44 am
Sorry, I have no more ideas.
Maybe time to let Microsoft look at this?
May 20, 2010 at 6:12 am
Weird. Glad you found a solution. 🙂
May 19, 2010 at 10:19 am
Exactly how are you trying to shrink the files ?
Are you perhaps using the GUI ?
Try giving the command directly:
DBCC SHRINKFILE (filename,1)
Did that work ?
If not, what was the result...
May 19, 2010 at 9:51 am
Viewing 15 posts - 151 through 165 (of 309 total)