Viewing 15 posts - 1,591 through 1,605 (of 1,999 total)
you'll be able to see if connection pooling is taking place by looking in a profiler trace against that database for a lot of sp_resetconnection commands
September 18, 2006 at 10:02 am
are you using connection pooling ? that would most likely be the problem.
what jdbc drivers are you using ?
September 14, 2006 at 9:53 am
after you cut down the data did you update statistics ?
might be that the query optimiser isn't picking the best plan for you due to out of date stats
i'd also...
September 14, 2006 at 9:49 am
there is a dubious piece of information somewhere on microsoft's site stating that for "optimal" performance a database should have as many files as there are CPU in the machine...
September 13, 2006 at 3:53 am
I normally go for the approach of moving all of my indexes into a seperate filegroup first. (if this is on a different array defrags are faster)
then move text objects...
September 12, 2006 at 9:09 am
I think the biggest thing you can do to get this runing well is to make sure you put the best disk config in possible. SQL standard will only support...
September 12, 2006 at 9:03 am
this kind of naming can cause real problems - never include a decimal point or space in your database name
September 12, 2006 at 8:55 am
i'd advise changing to the following
select a.Emp_no,a.Emp_Name,a.Faulty_ItemSLNO,
b.Item_Name as Faulty_Item, a.Date_OfRep, a.Replacement_ItemSLNO,
c.Item_Name as Replacement_ItemName,a.Date_OfAlloc
from Item_Allocation a
left join Item_Master_Table b on a.Faulty_ItemSLNO=b.Item_SlNo
left join...
September 12, 2006 at 4:02 am
is sql2005 set to "allow remote logins" in the footprint configuration tool
September 5, 2006 at 5:08 am
can you post a create table statement for one of these medicservicefeed tables?
you can also use union hints
select x,y,z from a union all
select x,y,z from b
option(CONCAT UNION)
which will "attempt"...
August 30, 2006 at 7:23 am
select @@version
SELECT SUBSTRING(@@VERSION,21,CHARINDEX('(',@@VERSION,1)-21)
should give you just the version number major and minor part without text
August 30, 2006 at 7:18 am
as long as your full backup is INIT and your differentials are NOINIT you're on course for having the right backups
(assuming they both go to the same file)
then we would...
August 21, 2006 at 5:38 am
NOINIT will be causing your backups to append - that's why the backup is growing - it should be 1.5GB accordig to your figures
August 18, 2006 at 8:41 am
ok - so we bit the bullet and applied it to the cluster at 6am this morning. It is cluster aware (apparently the patch was withdrawn in march because the...
August 17, 2006 at 1:08 am
Viewing 15 posts - 1,591 through 1,605 (of 1,999 total)