Viewing 15 posts - 61 through 75 (of 345 total)
v2000 umm...
Have you tried running sql server setup and see if there is an option to add replication to an isnatnce?
November 18, 2010 at 6:50 am
the parameters are probably transfered as a csv string.
so '1,4,2,6'
x in ('1,4,2,6') where x is an integer will give an error as it tries to convert '1,4,2,6' to an integer.
You...
November 18, 2010 at 5:54 am
Would have thought with this question it would be quicker for someone with a few minutes to read it as it is rather than look at table structures and test...
November 18, 2010 at 5:51 am
The index you suggest will be covering for the same queries as the other 3 indexes so should help.
The real question whether the queries affected need help or would the...
November 18, 2010 at 5:27 am
I would guess from the question
custid, dte, bal.
Sample data should be easy to create if you need it.
November 18, 2010 at 5:02 am
Think what you want is to give i/o priority rather than allocate disk space.
Also think the answer is no.
Can you put these on different instances?
November 18, 2010 at 5:01 am
something like
select distinct custid
from
(
select custid, baltype, ROW_NUMBER() over (partition by custid, baltype order by dte) as seq
from
(select custid, dte, baltype = case when bal >= 0 then 1 else 0...
November 18, 2010 at 4:55 am
SELECT chartnumber, Dataofservices,CPT,Amount FROM TABLE1
union
SELECT chartnumber, Dataofservices,CPT,Amount FROM TABLE2
EXCEPT
SELECT chartnumber, Dataofservices,CPT,Amount FROM TABLE1
INTERSECT
SELECT chartnumber, Dataofservices,CPT,Amount FROM TABLE2
November 18, 2010 at 4:45 am
Another option is to not nest transactions. Have a single point of control.
i.e. only the level that starts the transaction commits or rolls back.
November 18, 2010 at 4:36 am
Get gzip and use xp_cmdshell to execute an os command to do the zipping.
Could use other zip utilities but I tend to favour gzip.
November 18, 2010 at 3:45 am
Have you tried changing Mutual Authentication Required to No Authentication Required?
I've had this issue before and got round it somehow. I'll see if I can find the code.
It might have...
November 18, 2010 at 2:20 am
Nope.
Mainly because it's easy to write scripts to do it.
If people use maintenance plans then they tend not to understand what is actually being done and get into trouble when...
November 17, 2010 at 9:47 am
FROM "001".dbo.imitmidx_sql imitmidx_sql
left join "001".dbo.edablkfl_sql edablkfl_sql
on edablkfl_sql.item_num = imitmidx_sql.item_no
left join "001".dbo.edapkgfl_sql edapkgfl_sql
on edapkgfl_sql.code = edablkfl_sql.package_code
left join "001".dbo.iminvloc_sql iminvloc_sql
on iminvloc_sql.item_no = imitmidx_sql.item_no
where imitmidx_sql.activity_cd='A'
AND imitmidx_sql.item_no Not Like '%-FS'...
November 17, 2010 at 8:50 am
select m.*
from Main m
join tbl_filter f
on f.code = m.code
and f.centre = m.centre
where m.code not in (select code from tbl_filter where center is null)
November 17, 2010 at 8:44 am
Viewing 15 posts - 61 through 75 (of 345 total)