Viewing 15 posts - 61 through 75 (of 282 total)
My application is taking rest of the memory and the CPU is high when it get launched.
my question is if sql is allocated with 3 gb of RAM why it...
May 22, 2014 at 4:20 am
If millions of record are there and if delete is done on this , will the pages remain in db and occupy space?
May 22, 2014 at 2:36 am
GilaMonster (5/21/2014)
Are you explicitly inserting NEWID() into the table, or are you allowing the default to be used?
I am explicitly Inserting into table using UidcreateSequential Method
]http://msdn.microsoft.com/en-us/library/aa379322(VS.85).aspx[/url]
http://msdn.microsoft.com/en-us/library/ms189786.aspx
Thanks
May 21, 2014 at 10:56 pm
3GB for SQL server and 2 GB for Application
May 21, 2014 at 10:53 pm
My question was to will the table be fragment again if the old values where there.
I did rebuild (alter index) post changing to NEWSEQUENTIALID().
I see table getting fragmentation after changing...
May 21, 2014 at 7:04 am
free_mascot (5/21/2014)
You mean once your application launch everything become normal?
Opposite ...abnormal
on launching my app my sql server query runs slow. before launch it normal
May 21, 2014 at 6:48 am
What will happen for the pregenerated id's?
those ids are generated by NEWID() which is around 10 million record in the table.
now changed NEWSEQUENTIALID() and it starts its sequential orders.
will my...
May 21, 2014 at 6:38 am
free_mascot (5/21/2014)
Check for any hardware bottlenack. Are you facing issue...
May 21, 2014 at 6:31 am
Thanks Gail
so what if the unique id is generated from outside database
If it is from UidcreateSequential function
how the performance will be?
it is same as NEWSEQUENTIALID?
is the behaviour is same for...
May 20, 2014 at 5:28 am
What do you mean by merge in your case?
moving Database B details to Database A
1. May you have the same data in both databases?
If Q#1 = Yes:...
May 20, 2014 at 4:21 am
The pic is not clear can u tell in select statement
like 1+4 and so on....
since id 1 is not clear.
for 2 it is like ?
Select 1+4=5
Select 4+2=6
Select 2+4=6
Select 4+0=4
May 20, 2014 at 4:07 am
vignesh.ms (5/20/2014)
here is the sample
create table Sample (id int ,value int,total int)
insert into Sample (id,value) values (1,1)
insert into Sample (id,value) values (1,4)
insert into Sample (id,value) values...
May 20, 2014 at 3:49 am
GilaMonster (5/20/2014)
No, the fragmentation will be the same, both are having NEWID() specified as the value so the default is being overridden.
No Gail
I checked it ...there is less frag when...
May 20, 2014 at 3:25 am
Grant Fritchey (5/19/2014)
May 19, 2014 at 10:26 pm
Grant Fritchey (5/19/2014)
May 19, 2014 at 5:56 am
Viewing 15 posts - 61 through 75 (of 282 total)