PowerDesigner an object with double quotation marks when generating SQL script

Source: Internet
Author: User
Tags powerdesigner

When you view the script in PDM, the table name and field name are found with double quotation marks:

  1. 1.create table"Cfg_user_card_account" (
  2. 2. "user_card_account_id" number is not NULL,
  3. 3. "dat_user_id" number,
  4. 4. "user_balance" number,
  5. 5. "User_money" number,
  6. 6. "User_freeze_money" number,
  7. 7. "User_cost_money" number,
  8. 8. "User_account_status" number,
  9. 9. "Remark" varchar2 (+),
  10. Constraint Pk_cfg_user_card_account primary KEY ("user_card_account_id")
  11. 11.);


If you execute SQL directly in the database, the quotation marks are also added, and the table name and field name must also be quoted when querying. You can set the export without quoting by setting the following method:

After this setting, we look at the SQL script and find that we have met our requirements:

    1. 1.create Table Cfg_user_card_account (
    2. 2. user_card_account_id number is not NULL,
    3. 3. dat_user_id number,
    4. 4. User_balance number,
    5. 5. User_money number,
    6. 6. User_freeze_money number,
    7. 7. User_cost_money number,
    8. 8. User_account_status number,
    9. 9. Remark VARCHAR2 (+),
    10. Constraint Pk_cfg_user_card_account primary KEY (USER_CARD_ACCOUNT_ID)
    11. 11.);

PowerDesigner an object with double quotation marks when generating SQL script

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.