Viewing 15 posts - 91 through 105 (of 302 total)
This SQL box has 6 GB of total memory.
Mininum memory is 0 and maximum memory is 2147483647 MB which is default.
Should I change maximum memory to 6000 MB and what...
May 19, 2009 at 3:43 pm
It's a 64 bit Enterprise Edition of sql server and I believe sql serer is paging out to disk. I am not changing the memory but creating two Page File...
May 19, 2009 at 2:04 pm
Thanks guys,
Yes, it's 64 bit machine.
I am thinking of creating two virtual files. One will be the default on c drive and other will be on D drive and the...
May 19, 2009 at 1:28 pm
I think I solved the issue. I am tyring to shink in a smaller chunks, like 50 MB and it's working.
DBCC SHRINKFILE (DataFil1, 25000)
go
DBCC SHRINKFILE (DataFil1, 25950)
go
DBCC SHRINKFILE (DataFil1, 25900)
go
...and...
May 7, 2009 at 3:44 pm
I already ran sp_who2 and there is not blocking except self blocking of that process.
This shrinking process is blocking by itself. there is no other blocking going on.
I am thinking...
May 7, 2009 at 3:25 pm
Transac is a view which is based on two partitioned tables. We access transac view for insert,delete and update.
Create view Transac
as
select * from transac_archive
union all
select * from transac_live
May 5, 2009 at 3:46 pm
Yes, Transac is a view based on two partitioned tables archive and live. It's really weird that sometime it is working slow and sometime works just fine. Long time back,...
May 5, 2009 at 3:12 pm
Actually, It's not a zip file. I just rename the extension to zip so that I can upload into this website.
You just need to change from .zip file to...
May 1, 2009 at 2:15 pm
are you renaming the zip file into sqlplan extention. ?
May 1, 2009 at 2:08 pm
Sorry about that. Here is the attached sqlplan file.
I rename to zip file because this website does not upload sqlplan file. please rename back to sqlplan extention so that you...
May 1, 2009 at 1:16 pm
Thanks for your reply, I have attached the query plan. May be it will help.
May 1, 2009 at 12:36 pm
Yes, You are correct Jack.
Thanks a lot.
April 17, 2009 at 9:43 am
I think I figured out the issue. It's a design issue at our part. Data gets loaded into temp table first and then from temp table to real table.
I think...
April 16, 2009 at 5:07 pm
Viewing 15 posts - 91 through 105 (of 302 total)