Book a Demo

Author Topic: Create column: int identity  (Read 4927 times)

Supe

  • EA Novice
  • *
  • Posts: 6
  • Karma: +0/-0
    • View Profile
Create column: int identity
« on: March 08, 2016, 08:32:24 am »
Does anyone know how to create a column with "int identity"?

PeterHeintz

  • EA Practitioner
  • ***
  • Posts: 1001
  • Karma: +59/-18
    • View Profile
Re: Create column: int identity
« Reply #1 on: March 08, 2016, 11:54:26 pm »
Do not understand what you are asking for!
What kind of column you want to create?
And what do you mean with in identity?
Best regards,

Peter Heintz

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +397/-301
  • I'm no guru at all
    • View Profile
Re: Create column: int identity
« Reply #2 on: March 09, 2016, 12:18:30 am »
He's probably after some feature in the database engineering. Though some people think "Houston, we have a problem" will describe their issue, they obviously forget they are not in an Apollo capsule.

q.

Supe

  • EA Novice
  • *
  • Posts: 6
  • Karma: +0/-0
    • View Profile
Re: Create column: int identity
« Reply #3 on: March 09, 2016, 06:43:54 am »
Yeah I realise now that my question was a tad vague.

I guess an example of this would be:

CREATE TABLE XXX (
   ID int identity(1,1)  NOT NULL,
   Name varchar(100) NOT NULL

So adding a data type of int and including "identity" to it is what i'm after. It seems it can be done, but I can't understand how it was done.

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +397/-301
  • I'm no guru at all
    • View Profile
Re: Create column: int identity
« Reply #4 on: March 09, 2016, 07:58:29 am »
Unless someone else with more profession chips in (it's too long ago I last used it): In the past there was a transformation script generating the DLL. This could be modified to your needs. No idea whether that's still present. If you you could probably use tagged values to achieve the right results.

q.