Is there any type of formula to determine how much disk
space is needed to fully process a mining model in AS. I
have tried running one against a DB with only 130,000
appx records with over 7GB free and it keeps running out
of disk space.
Any estimate would be appreciated.
Thanks...
more >>
Hi,
I created a cursor for a temporary table. such as :
declare person_cur cursor for
select person_number, provider
from #temp_col
order by person_number
But later, I tried to update the data in the temporary
table, like:
update #temp_col
set provider = 'N'
where current of perso...
more >>
Hi,
How can I comapre two fields if one is the a substing of the other?
Thanks,
...
more >>