Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 7 of 7 total
Thread Borrowing a table structure
Mon, Feb 9 2009 3:49 AMPermanent Link

"Paul Coshott"
Hi,

can anybody tell me if it is possible to "borrow" a table structure in the
Elevate DB Manager, like we use to in DBISAM ? when creating a new table.
And if so, how I can do this.

Cheers,
Paul

Mon, Feb 9 2009 4:08 AMPermanent Link

Uli Becker
Paul,

this feature is on the list afaik.
Meanwhile you can ReverseEngineer the database and copy the part with
the table you need.

Regards Uli
Mon, Feb 9 2009 6:03 PMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Paul,

<< can anybody tell me if it is possible to "borrow" a table structure in
the Elevate DB Manager, like we use to in DBISAM ? when creating a new
table. And if so, how I can do this. >>

You can do it quickly via SQL:

CREATE TABLE MyNewTable
(
LIKE MyOtherTable,
LIKE MyOtherOtherTable,
etc.
)

See here:

http://www.elevatesoft.com/manual?action=mantopic&id=edb2sql&category=10&topic=148

--
Tim Young
Elevate Software
www.elevatesoft.com

Tue, Feb 10 2009 1:36 AMPermanent Link

Uli Becker
Tim,

> LIKE MyOtherTable,
> LIKE MyOtherOtherTable,

Is this new? I have never seen it. Smile

Uli
Tue, Feb 10 2009 4:04 AMPermanent Link

Roy Lambert

NLH Associates

Team Elevate Team Elevate

Tim

>CREATE TABLE MyNewTable
>(
>LIKE MyOtherTable,
>LIKE MyOtherOtherTable,
>etc.
>)

Does this now take all the constraints, indices and triggers across?

Roy Lambert
Tue, Feb 10 2009 6:26 PMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Roy,

<< Does this now take all the constraints, indices and triggers across? >>

No, not yet.

--
Tim Young
Elevate Software
www.elevatesoft.com

Tue, Feb 10 2009 6:27 PMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

Uli,

<< Is this new? I have never seen it. Smile>>

No, it's been in there since the beginning, or close to it. Smiley

--
Tim Young
Elevate Software
www.elevatesoft.com

Image