Quantcast
Channel: SCN : Popular Discussions - SAP PowerDesigner
Viewing all 1779 articles
Browse latest View live

Export Physical Model to Erwin

$
0
0

Hi,

    Help me. In my company we work with both tools (Erwin and PowerDesigner). The models need to be portables between them. I was able to  import Erwin model to Power Designer but I could not export from PD to Erwin. I found in other communities it is possible by converting to OOM and export to XMI format but in my opinion this is a very serious limitation. Anyone know How to do this?

 

Thank you.


Changing the column constraint name for default values

$
0
0

I can't seem to find where I can alter the template used for creating a column's default value. Is this something the SQL Server does or is it something I can control? Below is a screen shot of 2 constraints that I've altered the constraint name template for and 6 constraints that pertain to column default values that I haven't named.

 

Capture.PNG

 

Thanks,

Mark

 

PD 16.5

SQL Server 2012

Reverse engineer from XSD file, how make the models hierarchic?

$
0
0

Hi, I have used the "Reverse engineer->XML Definition" and this way imported XSD files (defining ISO messages) into PowerDesigner 16.5 (DataArchitect license).

 

Then I used "Tools->Generate Physical Data Model" followed by "Tools -> Generate Conceptual Data Model".

 

The resulting CDM seems ok but is organised visually in a way where you even can't guess the hieracic structure of the message defined by the XSD.

 

The XSD has a hierarchic structure and I have tried to e.g. import the XSD to Eclipse with the hyperModel plugin and the result is a very nice hierarchic UML diagram exactly mirroring the XSD structure. I mean, the XSD structure in e.g. XMLSpy and the hyperModel diagram generated in Eclipse is readable because you see the hierarchic structure, but the structure displayed default in PowerDesigner is spaghetti-like, impossible to see any top-down structure for a reasonable complex XSD. Generally I would like to see the "bigger" objects on top and then a top-down structure where you clearly see the hierarchy of gradually smaller parts/objects, resembling the hierchy you may see when looking at a XSD in e.g. XMLSpy in the schema/design view....

 

Anyone who knows if it is possible to (automatically) get a better model structure, maybe by using some view settings? I have not found any setting for how to change the organisation of the model so far.

 

Regards,

Peder

Comparison to PD to Teradata Tables

$
0
0

We are migrating data models, logical and physical from ERwin to PowerDesigner and looking for the best approach. Our thoughts are

1. Use ERwin to migrate to PD.
2. Perform a "Complete Compare" between newly created PD Physical table and the current Teradata Table to validate the content of the columns. Our ERwin DM may not be current view of the physical tables due to bad processes where developer add columns and Data architecture team was not in the loop of the development process.

PowerDesigner roadmap - Microsoft PDW (APS) support

$
0
0

Hi,

 

is there a chance to get PowerDesigner roadmap?

We would like to know whether there is planned support for Microsoft PDW (Parallel Data Warehouse) database. MS SQL Server definition file is only of very limited use.

 

Regards,

 

Matej

ARIS EPC Migration to Sybase PowerDesigner

$
0
0

Hello!


 

Has anyone use PowerDesigner to import ARIS EPC diagrams? I am using a tool named "ToolBus" to convert a *.XML file to *.BPM file (PowerDesigner extension), but it is not working. The diagram is blank.


 

Anyone has a tutorial or a guide, or something?


 

Regards!

Not working: PowerDesigner 16.5 Viewer Software Download

$
0
0


Can someone provide link to download PowerDesigner 16.5 VIEWER only?

 

Trying to do "PowerDesigner 16.5 Viewer Software Download". from this URL (https://global.sap.com/campaign/ne/sybase/powerdesigner16_viewer/wty_g_12_syb_powerdesigner16_viewer.epx?Level=1&FormResultID=8bacf1f9-fe03-4484-8180-21d73f4d7175&ContinueURL=%2fcampaign%2fne%2fsybase%2fpowerdesigner16_viewer%2findex.epx%3fkNtBzmUK9zU&kNtBzmUK9zU=1).

 

Url re-directs to (http://download.sybase.com/deployment/PowerDesigner/PowerDesigner165_Viewer.exe). But It keeps failing with below message

 

 


We regret that this site is currently unavailable.
We apologize for any inconvenience caused.
For technical support issues, please call 1-800-8SYBASE...

 

 

 

Migrate SQL Server database to SAP Hana

$
0
0

Hi,

 

I am unable to see the option Database --> Apply Model Changes to HANA repository as described in the documentation.

 

If a plug in needs to be enabled, then how to go about doing that?

 

Thanks


Navigate directly to a diagram in powerdesigner portal (from external application)

$
0
0

Is it possible to navigate straight to a diagram available in the powerdesigner portal without the use of the 'navigation'? (by url)

We are using the Power Designer Portal (/powerdesigner_web) and would like to link diagram's from our corporate wiki.

How to prevent a Poodle attack

$
0
0

A Poodle attack is a form of man-in-the-middle attack that can occur when using HTTPS protocol to communicate from a web client to a server.

 

http://en.wikipedia.org/wiki/POODLE

http://www.symantec.com/connect/blogs/ssl-30-vulnerability-poodle-bug-aka-poodlebleed

 

The web portal supplied with PD is based on the Apache Tomcat server.  By default, the portal listens for HTTP traffic on port 3030 and HTTPS traffic on port 3443.

 

The following steps help detail how to disable SSL 3.0 in the supplied Tomcat server.

 

Locate the ‘Program Files\Sybase\PowerDesigner Portal 16.0\tomcat\conf\server.xml’ file.

 

Change the following section:

<Connector protocol="org.apache.coyote.http11.Http11Protocol" SSLEnabled="true" port="3443"

keystoreFile="C:\Program Files\Sybase\PowerDesigner Portal 16\keystore\server.keystore"

keystorePass="changeit" maxThreads="150" scheme="https" secure="true" ClientAuth="false"

sslProtocol="TLS" />

 

 

To

<Connector protocol="org.apache.coyote.http11.Http11Protocol" SSLEnabled="true" port="3443"

keystoreFile="C:\Program Files\Sybase\PowerDesigner Portal 16\keystore\server.keystore"

keystorePass="changeit" maxThreads="150" scheme="https" secure="true" clientAuth="false"
sslEnabledProtocols="TLSv1,TLSv1.1,TLSv1.2" />

 

and restart the portal.

 

To protect browsers from using SSL 3.0 in the first place:

 

For IE, use the Tools->Internet Options menu and locate the ‘Security’ section in the Settings list.  Disable the use of SSL 2.0 and 3.0 (and enable TLS versions 1.0, 1.1, and 1.2).

 

Firefox can be restricted from using SSL 3.0 by typing ‘about:config’ in the address box and searching for ‘tls’. Set the ‘security.tls.version.min’ value to ‘1’.

 

Other browsers will have similar options for disabling SSL 3.0 and in future (e.g. the next Firefox major release) will permanently disable SSL 3.0 as a default).

 

Disabling SSL 3.0 at the browser level will help protect users when communicating to other websites using HTTPS protocol.  This is not a PD portal-specific fix and should be immediately adopted within your organization.

 

The settings for the PD supplied Apache Tomcat Server will protect un-altered clients from Poodle attack only when communicating with the PD Web Portal running on that server. Installing the portal components on any other web server may require that server to have SSL 3.0 disabled as necessary.

 

 

A test tool is also available at the following link to show the SSL protocols in use by the web server:

http://www.bolet.org/TestSSLServer/

 

Chris

Namespace issues

$
0
0

Hi,

 

just wondering ... I have a BPM Model divided in packages ..., I have in each of the packages a swimlane. Each package has the "Use Parent Namespace" unchecked ... so why I'm not able to use the same names for swimlanes and roles in different packages?

 

And vice versa .., if I check the "Use Parent Namespace" property, I would assume, I can reuse the same swimline/role in different packages ... but I can't.

 

So how to deal with this? I need to be able to reuse the same roles accross the whole model, but I need this groupings (packages)

 

 

Capture.JPG

 

In this diagram I would like to reuse the Template Role from defined on the diagram X.1.1 on the package X.1.1

 

Thanks,

Rafal

File Header - PDM Script

$
0
0

Hello. I would like to set some customizations in Oracle script file header. I was able to find how to set the date and the script name with variables ( %DATE% and %NAMESCRIPT% respectively) but there are other informations I don't know how to do. Below, follow a sample header:


/* Script generated on: %DATE% by the user %USER% */  the variable %USER% didn't display any output

/* Script name: %NAMESCRIPT% */

/* Label: ????? */                 Here, I want to put information about which configuration label is linked to this document version , if exists.

/* Model/ Version: ??????? */ Here, I want to putwhat the PDM nameandthe repositoty version corresponding toscript

 

Regards, Jan.

Unable to Print from PowerDesigner 16 Evaluation

$
0
0

Hello,

 

I'm currently evaluating modelling softwares for my Company (Renelco SA).

I have installed a trial version of PowerDesigner 16 on MS Windows 8.1

 

Since PowerDesigner seems to run correctly, there is a big problem when it comes to print a diagram

(on a physical printer as well as using PDF Creator).

 

Most of the attempts to print something end with a crash of PowerDesigner with the well known message

 

                                      "Pdshell16.exe has stop working". (see screenshot)

 

What's the problem with PrintOut functionnality.

I only encounter this problem in this case and, when it happens, the only action I can perform is to click

on the Close button, thus exiting from the app.

 

As I can see when googling, it seems to be a recurrent problem (PdShellXX.exe crash).

 

Since the goal of modelling tools is to supply documents that are generally shared with other people,

I find this kind of problem very inconvenient.

 

Thanks in advance for your support

 

Best Regards.

DDL Generation Issue

$
0
0

Using PowerDesigner version 15.2. I am generating individual create scripts for each database object. For tables and views, everything works as expected. Individual scripts are created with the name of the object and appropriate DDL. However, for the foreign key scripts (which are generated independent of the create table), the individual scripts are empty and all the foreign key contraints appear in the single mandatory file that must always be specified. Appears to be a bug. Would appreciate any feedback.

Regulatory Compliance - Basel/Solvency

$
0
0

I read in Powerdesigner documentation about Regulatory Compliance - Basel, but I can´t understand how it can work.

Can you give me a example?

Powerdesigner also support Solvency?

 

Best Regards


objects generated out of order

$
0
0

I have noticed that the DDL generated will often have objects generated out of order, such as some (but not all) tables and views being generated before the drop database command.

 

Is there something I am missing in the setup or options for generation that would make objects be generated in the logical order, i.e. tablespaces before tables, no ojects in the database before dropping the database, etc..

 

I am running 16.1.0.3917 EBF 18.

DB is DB2 z/OS V10

Downloadin PD 16.5 SP2

$
0
0

I'm looking forward to downloading PD 16.5 SP2, which includes the 64-bit version of PD, but why-oh-why have they combined the 32-bit and 64-bit versions into one huge (2,925,384,014 bytes) ZIP file? I'm now on my third attempt to download it. My first two attempts were (only!)  1,829,605 KB and 1,843,062 KB.  We don't all have access to super-fast broadband.

 

Am I the only one having problems downloading it?

Webcast: Take your Architecture Efforts to the next level with SAP Sybase PowerDesigner

why options of "Database Generation" and "Apply Model Changes to database" differ?

$
0
0

Using PD 16.1 with the DBMS IBM DB2 Version 10 for z/OS i found that there is no generation of some (important) objects in the "Apply Model Changes to Database" dialog

 

IMHO it doesn´t make sense, that i can´t  modify or add a storage, tablespace , user or something else.

For me it looks like, that everything what is difficult is switched off !

 

In special, there is a situation in  DB2 Version 10, where you can assign 1 table to 1 tablespace (called universal tablespaces) and its necessary to drop the tablespace and recreate it when you need to "drop" the table.

 

regards

dj

 

Header 1Header 2
settings1.PNGsettings2.PNG

Getting "Some Errors occur during the update of the repository model" error

$
0
0

when i try to checkin the model , getting "Some Errors occur during the update of the repository model" error.

 

any one let me know the reson for this?

 

Capture.JPG

Viewing all 1779 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>