Closed GoogleCodeExporter closed 9 years ago
Looking at the source code, it might be the record table.
here is the sql. it is basically a copy and paste of what is in the wiki.
create table MeatCallRecords (
id bigint IDENTITY(1,1) not null primary key,
originatingnpa smallint default 0,
originatingnumber bigint default 0,
terminatingnpa int default 0,
terminatingnumber bigint default 0,
largedigits varchar(16), -- Extra long terminating npas go here
elapsedtime bigint, -- milliseconds
elapsed_dna_minutes bigint,
calltype int not null,
type varchar(255),
overseasindicator int default 0,
icincid int default 0,
date datetime,
time datetime,
size int,
crc bigint,
filename varchar(255),
filepos bigint,
);
CREATE NONCLUSTERED INDEX IX_orignpa ON MeatCallRecords (originatingnpa);
CREATE NONCLUSTERED INDEX IX_orignum ON MeatCallRecords (originatingnumber);
-- This prevents a baf record from being uploaded twice
CREATE UNIQUE NONCLUSTERED INDEX UX_crc_filename ON MeatCallRecords
(crc,filename);
CREATE NONCLUSTERED INDEX IX_termnpa ON MeatCallRecords (terminatingnpa);
CREATE NONCLUSTERED INDEX IX_termnum ON MeatCallRecords (terminatingnumber);
CREATE NONCLUSTERED INDEX IX_largedigits ON MeatCallRecords (largedigits);
CREATE NONCLUSTERED INDEX IX_calltype ON MeatCallRecords ( calltype );
CREATE NONCLUSTERED INDEX IX_elapsedtime ON MeatCallRecords ( elapsedtime );
CREATE NONCLUSTERED INDEX IX_elapsed_dna_minutes ON MeatCallRecords (
elapsed_dna_minutes );
CREATE NONCLUSTERED INDEX IX_date_time ON MeatCallRecords ( date, time );
CREATE NONCLUSTERED INDEX IX_date ON MeatCallRecords ( date );
CREATE NONCLUSTERED INDEX IX_time ON MeatCallRecords (time);
CREATE NONCLUSTERED INDEX IX_overseas ON MeatCallRecords ( overseasindicator );
CREATE NONCLUSTERED INDEX IX_icincid ON MeatCallRecords ( icincid );
Original comment by c.khour...@gmail.com
on 16 Mar 2015 at 6:44
Was able to solve my issue. It is working great. I had an incorrect field in my
table.
Cheers!
Original comment by c.khour...@gmail.com
on 16 Mar 2015 at 7:02
Glad you got it working, let me know if you have any other issues
Original comment by charless...@gmail.com
on 16 Mar 2015 at 7:51
Original issue reported on code.google.com by
c.khour...@gmail.com
on 16 Mar 2015 at 5:09