On Sun, 28 Dec 2014 05:27:55 -0800 (PST),
msde...@gmail.com wrote:
> It's pretty basic what I am trying to do. I created a test db and now
> I am trying to create some tables and I am unable to do so. Something
> that takes me two minutes with SQL Server. I have the sample database
> which is pre-setup, I am not interested in that. I am trying to setup
> my own db and finding it incredibly difficult.
Okay, in Data Studio, and ignoring a nearly unimaginable number of
complications...
1) connect to your test database
2) Set "Activity" (top center) to Administer Database
3) Select "Schemas" in the folder list below the database connection in
the left pane. If there's a user schema already you want to use, you can
skip to the table create part.
4) wait for the Change Plan to be created.
5) Change the name of the Schema in the bottom pane to a name of your
choice.
--Table Create Part
6) Select "Tables" in the folder list below the database connection in
the left pane.
7) In the top-right pane, click the green "+". (Maybe wait for Change
Plan to be created.)
8) select type "Table"
9) Pick a user schema to put the table in.
10) Change the table name in the properties pane to one of your
choosing.
11) Click on the Columns tab
12) Use the gold diamond to add a new column, set the properties to that
of your first column.
13) repeat 12 for as many columns as you have.
14) Push "Generate DDL" in the top right pane.
15) Push Finish.
Table is created.
From prior posts, I think there may be some misapprehension about what a
Schema is. It's nothing more than a collection (like a folder) of
database objects (like tables or indexes).
--
"Doesn't everybody?" is a question that never expects an answer of "No."