An example of one table in the script:
drop table HTMLEXTRACT
go
create table HTMLEXTRACT (
"doc_id" numeric(32) identity not null,
"parent_id" numeric(32) not null,
"doc_type" varchar(10) not null,
"pid" numeric(16) not null,
"doc_time" datetime default getdate()...
Processing documents through a variety of processes and storing the product of each in a table per process. Also running a dequeuer which checks a view to see that all processors have finished a document then it fetches the products of each step and deletes the row in each table.
At present we...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.