The Altair Community is migrating to a new platform to provide a better experience for you. In preparation for the migration, the Altair Community is on read-only mode from October 28 - November 6, 2024. Technical support via cases will continue to work as is. For any urgent requests from Students/Faculty members, please submit the form linked here

Deployment table: rm_mdm_locations

SaschaITPLSaschaITPL Posts: 7 image Learner III
Hey, may someone tell me the column names and types of the "rm_mdm_locations" table in his Rapidmine AI Hub Database? I deleted mine, need to create it again i think

Best Answer

  • BalazsBaranyBalazsBarany Posts: 955 image Unicorn
    Solution Accepted
    Oh, I didn't read your question well. It's a deployment database.

    Here's the table definition:


    CREATE TABLE public.rm_mdm_locations
    (
        name text COLLATE pg_catalog."default",
        id text COLLATE pg_catalog."default" NOT NULL,
        CONSTRAINT rm_mdm_locations_pkey PRIMARY KEY (id)
    )

    In my environment it has one row, the name is the one I entered, the id seems to be a generated unique ID. You might be able to find the ID in one of the other tables if you already have deployed models.

    Next time, have a backup of your database ready before dropping tables! ;-)

    Best regards,

    Balázs

Answers

Sign In or Register to comment.