Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 4 of 4 total
Thread EXPORT
Sat, Oct 24 2009 9:10 AMPermanent Link

Roy Lambert

NLH Associates

Team Elevate Team Elevate

Workarounds easy but EXPORT bombs out when a table is empty

This

 CREATE TABLE "emReadStatus"
(
"_fkMailBoxes" INTEGER,
"_fkEMails" INTEGER,
"_fkStaff" VARCHAR(5) COLLATE "ANSI_CI",
CONSTRAINT "PK" PRIMARY KEY ("_fkEMails", "_fkStaff")
)

Gets

---------------------------
Debugger Exception Notification
---------------------------
Project TfRutils.exe raised exception class EInvalidOp with message 'Invalid floating point operation'.
---------------------------
Break   Continue   Help  
---------------------------


Roy Lambert
Sat, Oct 24 2009 9:13 AMPermanent Link

Roy Lambert

NLH Associates

Team Elevate Team Elevate

This one, even though empty, its happy with


CREATE TABLE "emLogArchive"
(
"_Counter" INTEGER GENERATED BY DEFAULT AS IDENTITY (START WITH 0, INCREMENT BY 1) NOT NULL,
"_TimeStamp" TIMESTAMP,
"_InOutInd" VARCHAR(2) COLLATE "ANSI_CI",
"_LogType" VARCHAR(1) COLLATE "ANSI_CI",
"_Error" VARCHAR(100) COLLATE "ANSI_CI",
"_Info" CLOB COLLATE "ANSI_CI",
CONSTRAINT "PK" PRIMARY KEY ("_Counter")
)


Roy Lambert
Sat, Oct 24 2009 9:22 AMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Roy,

<< Workarounds easy but EXPORT bombs out when a table is empty >>

I'm not seeing any error with that empty table here.

--
Tim Young
Elevate Software
www.elevatesoft.com

Sat, Oct 24 2009 9:53 AMPermanent Link

Roy Lambert

NLH Associates

Team Elevate Team Elevate

Tim


Repaired table and its OK now. Sorry

Roy Lambert
Image