search
HomeDatabaseMysql Tutorial PowerDesigner初体验

PowerDesigner简介 工具的用途 :这里我只介绍他在SqlServer数据库的应用,其它的我也不懂。 工具的好处 : 个人体会理解,图视化数据库设计,更直观简单的设计,更便于分析数据库逻辑关系,与数据库全局把控。 祈求:哪位大虾那里藏的有PowerDesigner更好更

PowerDesigner简介

工具的用途 :这里我只介绍他在SqlServer数据库的应用,其它的我也不懂。

工具的好处 : 个人体会理解,图视化数据库设计,更直观简单的设计,更便于分析数据库逻辑关系,与数据库全局把控。

祈求:哪位大虾那里藏的有PowerDesigner更好更全的操作文章,希望能给我和不动这货的攻城师们留言分享下。

PowerDesigner的下载以及破解

一、下载

1、PowerDesigner 12.5官方下载地址

    (复制到浏览器或迅雷下载)

 大小125 MB (132,006,349 字节) 

二、破解

1、安装完成后,修改安装目录下的pdflm12.dll文件,使用 UEDIT32 二进制编辑器打开此文件,查找:83 C4 14 8B 85 E4 FE FF FF将此字符串改为83 C4 14 33 C0 90 90 90 90 并保存(win7或者vista需要更改文件夹权限方可保存)

2、制作license.lic文件

拷贝以下内容,并保存为license.lic文件(注意扩展名是lic)

FEATURE PD_SHELL SYBASE 12.50 permanent uncounted 1 TS_OK HOSTID=ANY SIGN2=1

FEATURE PD_DEV   SYBASE 12.50 permanent uncounted 1 TS_OK HOSTID=ANY SIGN2=2

FEATURE PD_DA    SYBASE 12.50 permanent uncounted 1 TS_OK HOSTID=ANY SIGN2=3

FEATURE PD_STU   SYBASE 12.50 permanent uncounted 1 TS_OK HOSTID=ANY SIGN2=4

FEATURE PD_DEVE SYBASE 12.50 permanent uncounted 1 TS_OK HOSTID=ANY SIGN2=5

FEATURE PD_DAE   SYBASE 12.50 permanent uncounted 1 TS_OK HOSTID=ANY SIGN2=6

FEATURE PD_STUE SYBASE 12.50 permanent uncounted 1 TS_OK HOSTID=ANY SIGN2=7

FEATURE PD_VW    SYBASE 12.50 permanent uncounted 1 TS_OK HOSTID=ANY SIGN2=8

FEATURE PD_CDM   SYBASE 12.50 permanent uncounted 1 TS_OK HOSTID=ANY SIGN2=9

FEATURE PD_XSM   SYBASE 12.50 permanent uncounted 1 TS_OK HOSTID=ANY SIGN2=0

FEATURE PD_ILM   SYBASE 12.50 permanent uncounted 1 TS_OK HOSTID=ANY SIGN2=1

FEATURE PD_RQM   SYBASE 12.50 permanent uncounted 1 TS_OK HOSTID=ANY SIGN2=2

FEATURE PD_PDM   SYBASE 12.50 permanent uncounted 1 TS_OK HOSTID=ANY SIGN2=3

FEATURE PD_OOM   SYBASE 12.50 permanent uncounted 1 TS_OK HOSTID=ANY SIGN2=4

FEATURE PD_BPM   SYBASE 12.50 permanent uncounted 1 TS_OK HOSTID=ANY SIGN2=5

FEATURE PD_RMG   SYBASE 12.50 permanent uncounted 1 TS_OK HOSTID=ANY SIGN2=6

FEATURE PD_FRM   SYBASE 12.50 permanent uncounted 1 TS_OK HOSTID=ANY SIGN2=7

FEATURE PD_RTP   SYBASE 12.50 permanent uncounted 1 TS_OK HOSTID=ANY SIGN2=8

FEATURE PD_MMR   SYBASE 12.50 permanent uncounted 1 TS_OK HOSTID=ANY SIGN2=9

3、导入授权文件

A、打开PD12.5,菜单Tools -> License Parameters..,显示License Management Wizard。单击[下一步] 

B、显示License Load窗口 

C、点击[Load],选择上面生成的license.lic文件,之后显示License Key。 

D、单击[下一步]显示选择语言窗口,选择PRC。   

F、点击[完成],系统提示授权配置成功更新!

PowerDesigner创建Sql表的演示

1、我先声明下,接下来的介绍中 PowerDesigner = pd

2、在SQL数据库中创建 Test_Test 数据库

3、打开 pd ,看到右上角file --> 点开 ,看到new --> 点开

4、

  别忘了点确定

5、

6、双击Table_1后

7、上边等于表建好了,但没有字段,下边开始添加字段,还是上边的弹出框

8、字段说明是很重要的,必须标明,那么你就要双击字段列

9.点击应用,确定,虚拟主机,然后这个表就创建完成了,下面我们该把这个表,插入你创建好的Test_Test数据库了,点击pd菜单栏的database--->configure connections...

10、然后确定,选择应该是倒数第二个,Sql Server, 然后

11、

12、然后,pd菜单,的Database--->GenerateDatabase

13、可能要配置链接然后一直点确认,点run,就ok了。

14、也就是见证奇迹的时刻,香港服务器,打开你的数据库,就能看到你在pd创建的user表跑了进来!!

 

结束:

另外表可以建立约束,服务器空间,默认值,数据库表导向PowerDesigner等,也可以改变表的样式....这里就不一一累述了。。自己扣持吧,要是弄不出来,给我留言,咱在讨论!

 

 

 

 

 

 

 

 

 

 

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
What are the different storage engines available in MySQL?What are the different storage engines available in MySQL?Apr 26, 2025 am 12:27 AM

MySQLoffersvariousstorageengines,eachsuitedfordifferentusecases:1)InnoDBisidealforapplicationsneedingACIDcomplianceandhighconcurrency,supportingtransactionsandforeignkeys.2)MyISAMisbestforread-heavyworkloads,lackingtransactionsupport.3)Memoryengineis

What are some common security vulnerabilities in MySQL?What are some common security vulnerabilities in MySQL?Apr 26, 2025 am 12:27 AM

Common security vulnerabilities in MySQL include SQL injection, weak passwords, improper permission configuration, and unupdated software. 1. SQL injection can be prevented by using preprocessing statements. 2. Weak passwords can be avoided by forcibly using strong password strategies. 3. Improper permission configuration can be resolved through regular review and adjustment of user permissions. 4. Unupdated software can be patched by regularly checking and updating the MySQL version.

How can you identify slow queries in MySQL?How can you identify slow queries in MySQL?Apr 26, 2025 am 12:15 AM

Identifying slow queries in MySQL can be achieved by enabling slow query logs and setting thresholds. 1. Enable slow query logs and set thresholds. 2. View and analyze slow query log files, and use tools such as mysqldumpslow or pt-query-digest for in-depth analysis. 3. Optimizing slow queries can be achieved through index optimization, query rewriting and avoiding the use of SELECT*.

How can you monitor MySQL server health and performance?How can you monitor MySQL server health and performance?Apr 26, 2025 am 12:15 AM

To monitor the health and performance of MySQL servers, you should pay attention to system health, performance metrics and query execution. 1) Monitor system health: Use top, htop or SHOWGLOBALSTATUS commands to view CPU, memory, disk I/O and network activities. 2) Track performance indicators: monitor key indicators such as query number per second, average query time and cache hit rate. 3) Ensure query execution optimization: Enable slow query logs, record and optimize queries whose execution time exceeds the set threshold.

Compare and contrast MySQL and MariaDB.Compare and contrast MySQL and MariaDB.Apr 26, 2025 am 12:08 AM

The main difference between MySQL and MariaDB is performance, functionality and license: 1. MySQL is developed by Oracle, and MariaDB is its fork. 2. MariaDB may perform better in high load environments. 3.MariaDB provides more storage engines and functions. 4.MySQL adopts a dual license, and MariaDB is completely open source. The existing infrastructure, performance requirements, functional requirements and license costs should be taken into account when choosing.

How does MySQL's licensing compare to other database systems?How does MySQL's licensing compare to other database systems?Apr 25, 2025 am 12:26 AM

MySQL uses a GPL license. 1) The GPL license allows the free use, modification and distribution of MySQL, but the modified distribution must comply with GPL. 2) Commercial licenses can avoid public modifications and are suitable for commercial applications that require confidentiality.

When would you choose InnoDB over MyISAM, and vice versa?When would you choose InnoDB over MyISAM, and vice versa?Apr 25, 2025 am 12:22 AM

The situations when choosing InnoDB instead of MyISAM include: 1) transaction support, 2) high concurrency environment, 3) high data consistency; conversely, the situation when choosing MyISAM includes: 1) mainly read operations, 2) no transaction support is required. InnoDB is suitable for applications that require high data consistency and transaction processing, such as e-commerce platforms, while MyISAM is suitable for read-intensive and transaction-free applications such as blog systems.

Explain the purpose of foreign keys in MySQL.Explain the purpose of foreign keys in MySQL.Apr 25, 2025 am 12:17 AM

In MySQL, the function of foreign keys is to establish the relationship between tables and ensure the consistency and integrity of the data. Foreign keys maintain the effectiveness of data through reference integrity checks and cascading operations. Pay attention to performance optimization and avoid common errors when using them.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use