CamelCase support for Logical Names.

It is possible to have cammelCase when naming logical entities. can we make this a preference. so that people that want to see uppcase names can set it, or can have it in camelCase?
At this time when creating a logical entity, my only choice is to use FISCAL_CALENDAR, However I wanted to be able to display FiscalCalendar.

Do you mean in the context of reverse engineering and merging? (A mixed case name remains mixed in the properties -- it is only displayed as SHOUT)
I can use mixed case in forward development in the logical layer.
To change the display try switching:
Preferences > Data Modeler > Diagram > Logical Model > choose Bachman rather than Barker notation.
cf.:
Re: Entity name showing all upper case only in Logical Model
It is interesting that reverse engineering and merging a view using Barker does result in mixed case display in contrast to doing the same with a table.
Edited by: KevinDavis on May 7, 2012 1:57 PM

Similar Messages

  • OK, as always I waited before downloading a new OS and I sure glad I did. On the APP store I sorted comments by most critical...and WHOA...what is Apple doing? No support for Logic 9, MS Office? Is Apple only trying to reach the iphone/iTouch crowd? HELP!

    OK, as always I waited before downloading a new OS and I'm sure glad I did. On the APP store I sorted comments by most critical...and WHOA...what is Apple doing? No support for Logic 9, MS Office? Is Apple only trying to reach the iphone/iTouch crowd? HELP! I was going to buy a new Mac pro & two 27" monitors but until I see some real problem addressing by Apple...I'll keep what I have and see how everything pans out. If anyone has any comments to ally my fears, I welcome them. I've been a devoted Mac user since 1993. 7500; G4; G5; and my latest Mac Pro...Where do I go? Again...HELP!

    Hi there,
    If you look through ALL the reviews, they are mainly good. I feel that Lion is an excellent upgrade, although not essential.
    There have been some issues with MS Office, but right now, it is up to Microsoft to issue a Lion compatible update, which will come in time. Saying this, MS Office has been working fine on my mac, it seems to be an isolated issue.
    Logic 9 seems like a strange issue. Again, an update looks to be coming soon, with Lion support.
    I do not feel that apple only focusing on the iPhone and iPad user base. There are many features carried along, but the machine can still be used for pro tools and use just as well. It still is a fantastic, reliable, fast, easy to use OS, which I have had very few problems with. Some additions you may not use, but they don't get in the way. You will love the new Exposé, Mission Control, as it is great for pro users who have many windows open at once, and the new spaces. You may however, never use Launchpad, but you don't have to, just drag it away from the dock!
    I really reccomend buying a mac with Lion, although if you are worried about bugs, wait a few months for the issues to be ironed out, and updates to be given. Because the update is so very cheap, I really think you can hardly go wrong. Try it out with your current mac, and if you like it, go ahead and buy your new ones.
    Lion is fantastic, albeit maybe rushed.
    Any other queries, just ask,
    Nathan

  • Internationalization support for File Names

    I want to know does it make sense to provide multilingual support for File Names. Say, I have a file called PurchaseOrder.pdf and it will be sent to users as an email attachment. We can localize the file name(for example, in Chinese: 订单.pdf).
    But I want to know whether it is a standard to localize the file name. If not, should it be given in English, no matter which locale the user is using.
    Thanks in advance
    Edited by: Giritharan on Feb 1, 2010 1:53 AM

    ... hopefully you will not have to send another document to the same deliverer the very same day. Even if you add the minutes, a date tells you nothing about the contents. This is no problem as long as I receive nothing but purchase confirmations from you. But as a customer I will receive both sales confirmations and invoices, and then I think it's nice to see what the document is about.
    By the way, a person working in an international trading company is supposed nowadays to understand the English words "purchase, sale and invoice", isn't it? Maybe in 50 or 100 years from now Chinese will be the lingua franca. So be prepared for a change ;-)

  • Where is the support for Logic???

    Anyone knows if there exists any support for Logic?
    A phone number?
    A support forum?
    A mail support address?
    Any other support application?
    This is a shame...

    I was only pointing out that the suport apple offers is not support IMO, not criticizing your post.
    Having to pay for a support that should be included whenever you buy a software is a shame IMO.
    It's a shame that apple only offers true support for ipods:
    From this url: http://www.apple.com/support/contact/
    "mail support is available for iTunes Store and .Mac, and Apple Photo Services questions."
    "Mac and iPod customers within 90 days of ownership are eligible for complimentary phone support — one support incident per iPod and unlimited incidents per Mac. iPhone comes with up to two years of technical support while your iPhone is subscribed to wireless service from one of Apple's exclusive wireless carriers for iPhone."
    And what about pro users that use their software (like Logic or Final cut) for living? And more: does an ipod or an iphone cost more than Logic studio?
    This is a shame.
    But thanks anyway for your help.

  • JDBC 10g - Support for TNS name entries

    Hello,
    I found the following statement:
    JDBC-Thin support for TNSNAMES.ORA Lookup: similar to JDBC-OCI, both client-side and server-side JDBC-Thin can now read the local TNSNAMES.ORA file to resolve service name or TNS alias. Consequently Java in the database will also be in position to reference external Oracle database, using service name. See the JDBC documentation for more details.
    in the Oracle white paper "What’s New for Java DB, JDBC, and Database Web Services in Oracle Database 10g". However, I have found several statments/notes in the accompanying 10g JDBC documentation that appear to directly contradict the statement above. For example, the following note:
    Note:
    Because the JDBC Thin driver can be used in applets that do not depend on an Oracle client installation, you cannot use a TNSNAMES entry to set up a Thin driver connection.
    Does anybody know if the JDBC Thin driver supports connection via a TNSNAMES entry? If so, can you direct me to the documentation on how to use it.
    FYI, I have managed to establish a connection using a TNS alias and JDBC-OCI as follows:
    OracleDataSource ods = new OracleDataSource();
    ods.setTNSEntryName("MyTNSAlias");
    ods.setUser("scott");
    ods.setPassword("tiger");
    ods.setDriverType("oci8");
    Connection conn = ods.getConnection();
    However, if I set driver type to "thin" instead of "oci8", I get the following error:
    Exception in thread "main" java.sql.SQLException: Io exception: SO Exception was generated
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:179)
    at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:333)
    at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:404)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:468)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:314)
    at java.sql.DriverManager.getConnection(DriverManager.java:525)
    at java.sql.DriverManager.getConnection(DriverManager.java:140)
    at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:169)
    at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:108)
    at prototype.TNSTest.main(TNSTest.java:36)
    Thanks in advance.

    Hi,
    I wrote the white paper in question and am in position to confirm that in 10.2, JDBC-Thin does indeed support tnsnames.ora; you need to specify the location (i.e., directory) of the tnsnames.ora file in the oracle.net.tns.admin system property
    java -Doracle.net.tns_admin=$ORACLE_HOME/network/admini have working examples in my book.
    I'll have it fixed in the online doc, our printed doc is sometimes out of sync.
    Kuassi http://db360.blogspot.com

  • Support for Logical Databases PNP/PNPCE

    On this topic I would like to know:
    1. Will SAP will continue to support PNP or will support for PNP be eventually phased out?
    2. Were can I find the official SAP document that covers the introduction of PNPCE?
    3. Where is it stated officially by SAP the recommendation for all new development to use PNPCE?
    Edited by: John McKee on Oct 14, 2009 11:17 AM

    Hi John,
    I can not make an official SAP statement here but given the fact that there are several thousand reports based on PNP from SAP and even more from Customers the answer is:
    1. Will SAP will continue to support PNP
    Yes
    1. will support for PNP be eventually phased out?
    No
    2. Were can I find the official SAP document that covers the introduction of PNPCE?
    3. Where is it stated officially by SAP the recommendation for all new development to use PNPCE?
    Go to trasnaction SE36 enter PNPCE as LDB and read the thorough documentation.
    PNPCE has simply a nicer Selection screen and much more options to predefine it in the report class.
    If you have no CE you can simply use it in the old PNP-mode for details see the extensive documentation.
    Hope that answers your qestions,
    Michael
    Edited by: Michael Fruechtl on Oct 14, 2009 11:47 AM

  • Support for "Display Name"

    Hi,
    While sending the mail using javax.mail, do we have any way to specify the "Display Name" for an email i.e. I want to specify the display name for an email apart from "From" email address. I don't want to see the email address as the "From" entity...it should have a name (under which obviously there will be an email address).
    Any clues?
    Thanks,
    Deepak.

    Thanks Paul, it works!!! I missed such an obvious thing..:-)
    +Deepak.                                                                                                                                                                                           

  • No prob with 7, but where can i get support for my Logic 6? Nobody?

    Hello everyone, My name is Aytekin Kurt and I'm a well-known producer in my country, Turkey with a career including a national No.1 and a dozen Top 10 tracks as a writer and a producer. What's more, I was in Oakenfold's Grammy-nominated (Best Electronic/Dance Album) Creamfields CD with my track "First Sight". I have been using Logic (since version 4.7) since 2000. I even gave lectures on how to use Logic in a pro production environment. Always a big fan of Apple (All my desktops, laptops, iPods over the years...) and Emagic. However, I'm about to go crazy with a Logic 6 issue and no-one's helping me out. This *****.
    I have no problem with my Logic 7 (Support ID:R1CY2ABHRPW)
    which I use in my studio with a PowerMac G5. It's amazing. What Apple and Emagic have done together to Logic is incredible. I love using it, which I do almost every single day. But, I also have a Logic 6 on my laptop (G4 15"). My XSKey had problems and I wrote to Emagic and asked for urgent help. Then, the key was working fine and I forgot about it. In a month's time I recieved a second key and was asked to send my old key back to Germany and then get access codes for the new key. Well, I did NOT do that, cause the old one was working and I was working everyday on 2 different projects.
    Last week, when i was just about to upgrade to 7, I lost my first key. I kindly request Apple or Emagic to somehow help me and give me codes for the second key I have. So, I can activate my Logic 6 and then upgrade it to 7. But, Apple suggests (on the website) to contact Emagic. But, no-one replies to those e-mail addresses they put in there...
    What do you suggest I do? This is frustrating. I need those codes. I guess without those codes, it's useless to go get an upgrade package, right? What kind of a support understanding is this? Where is the support for Logic 6? Since Emagic is NOT functional anymore, why doesn't Apple support us on former versions? Just help me upgrade to 7.
    Any one with any ideas? Anyone knows how to contact Emagic? (rather than [email protected] or [email protected] and all the phone numbers we used to be able to call)
    Thanks in advance
    Aytekin Kurt
    [email protected]
    P.S.: All of this might seem irrelevant on a Logic 7 forum, but I'm still a Logic (both 7 & 6) user and I tried everything else....

    What version of the Mac OS is it running? That might narrow the search, It's easier to find stuff that runs under 10.4 Tiger than anything older. The only recently updated browser that still runs under 10.3.9 Panther is Camino 1.6.11, updated about a year ago. It's free and here:
    Camino 1.6.11
    BTW, "where to get" questions around here are much more easily answered if you provide a geographic location. Otherwise people will load you up with links to places that may not ship to your location.

  • Tech support number for Logic - Anyone?

    I need to call these guys but I can't find the number anywhere - suggestions?
    David

    Try this number: 1-866-75-APPLE (1-866-752-7753).
    This is the number I called awhile back when I needed tech support for Logic 9. I happened to still be in my 90-day window so it was still free, but if you're out of that time period, you may have to pay something. I think they have two levels of phone support: a per-call charge, or a yearly fee that gives you unlimited support, or something like that.

  • Apple changed my Apple ID to the email address associated with my iTunes account. I now can no longer access my account because the old user name is no longer valid and has no password. I have been on the phone with tech support for hours trying to fix.

    Apple changed my Apple ID to the email address associated with my iTunes account. I now can no longer access my account because the old user name is no longer valid and has no password. I have been on the phone with tech support for hours trying to fix this. I can not update any of the apps associated with that user name.

    Is this itunes on the iPad or on my computer? Thank you for the reply.

  • Future support for using PL/SQL core business logic with ADF BC

    We want to migrate our large Forms client/server (6i) application to ADF, possibly using a migration tool like Ciphersoft Exodus.
    One scenario could be to use ADF BC and ADF-Faces or a different JSF-Implementation for presentation and business layer but keep our heavy PL/SQL-businesslogic inside the Oracle database in packages, triggers, functions and procedures.
    This scenario could be chosen due to the huge amount of interconnected logic inside the database (10 years of development; no technical components; any package may access any table and more of this kind of dependencies). The business logic nowadays held in Forms client will be moved mainly into the database as a prerequisite to this scenario.
    Choosing this "keep-logic-in-DB"-scenario we need a good support by ADF BC to do so. We know and prototyped that it is possible to call some PL/SQL via JDBC from ADF BC and it is possible to use stored procedure calls for standard business entity data access (ins, del, upd, ..). But this does not solve our problems. We want to reuse core business logic coded in PL/SQL. This is much more than change the ADF standard behavior for an update with an own PL/SQL-call.
    Now my question:
    Will there be a kind of sophisticated support to use ADF BC in combination with database-kept logic?
    If so, when will this happen and how will the common problems of transactional state inside the database and inside the ADF BC be solved? Any plans or ideas yet?
    Many other clients do have similar applications built in Forms and PL/SQL and would be glad to hear about a path of direction.
    I've read the technical article 'understanding the ADF BC state management feature' which you have contributed to. One current limitation is pointed out there: Using PL/SQL with ADF BC limits ADF AM pooling to 'restricted level' which reduces scalability.
    Are you aware of additional main problems/tasks to solve when using PL/SQL heavily with ADF BC, which we have to think about?
    Thank you for any response.
    Ingmar

    My main problem is two 'concurrent' areas holding state in an application system based on DB-stored PL/SQL-logic in combination with ADF BC.
    For a new System everything can be made ok:
    Sure, it is possible to build a new system with the business logic included in ADF BC only. All long-living state will be handled in the BC layer ( including support for UnitsOfWork longer than the webside short HTTP-requests and HTTP-sessions and longer than the database transactions.
    For an old system these problems arise:
    1. DB data changes not reflected in BC layer:
    Our PL/SQL-logic changes data in tables without notifying the ADF BC layer (and its cache). To keep the data in ADF BC entity objects identical to the changed database content a synchronization is needed. BC does not know which part of the application data has been changed because it has not initiated the changes through its entity objects. Therefore a full refresh is needed. In a Forms4GL environment the behavior is similar: We do frequently requeries of all relevant (base)tables after calling database stored logic to be sure to get the changed data to display and to operate on it.
    -> Reengineering of the PL/SQL-logic to make the ADF BC layer aware of the changes is a big effort (notifying BC about any change)
    2. longer living database transactions
    Our PL/SQL-logic in some areas makes use of lengthy database transactions. The technical DB-transaction is similar to the UnitOfWork. If we call this existing logic from ADF BC, database state is produced which will not be DB-committed in the same cycle.
    This reduces scalability of ADF BC AM pooling.
    Example:
    a) Call a DB-stored logic to check if some business data is consistent and prepare some data for versioning. This starts a DB-transaction but does not commit it.
    b) Control is handed back to the user interface. Successful result of step a) is displayed
    c) User now executes the versioning operation
    d) Call another DB-stored logic to execute the versioning. DB-transaction is still open
    e) Business layer commits the transaction automatically after successful finishing step d). Otherwise everything from a) to e) is rolled back.
    -> redesign of this behavior (= cutting the 1to1 relation between LogicalUnitOfWork and the technicalDatabaseTransaction is a big effort due to the big amount of code.

  • [svn:fx-trunk] 10389: Added support for octothorpe in embed file names.

    Revision: 10389
    Author:   [email protected]
    Date:     2009-09-18 07:19:26 -0700 (Fri, 18 Sep 2009)
    Log Message:
    Added support for octothorpe in embed file names.  And here I thought I'd never use the term octothorpe in a sentence.
    QE notes: None
    Doc notes: None
    Bugs: SDK-23033
    Reviewer: Paul
    Tests run: Checkin
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23033
    Modified Paths:
        flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/as3/EmbedEvaluator.java

  • Finding a logical name for PXI5112 modules to be used in niScope_Init

    I need to dynamically allocate the number of PXI5112 modules on several PCs in a C++ program. After going through great length using VISA calls to obtain the VISA logical name ( PXI3::11::INSTR, etc.), I found out that niScope_Init is expecting an IVI or DAQ logical names. How does one go about to get the logical name for those PXI modules so niScope_Init can use? Hardcoding the name such as DAQ::1 is out of the question because the number of modules is different from test to test. Thanks.
    Software:
    niScope driver: 2.6
    Microsoft Visual studio.net 2003
    Measurement Studio 7.0
    Windows XP SP2
    Hardware:
    Group1 : 5 PXI5112s
    group2 : 3 PXI5112s
    group3 : 7 PXI5112s

    Here's a quick and dirty example of how to use the niModInst API in C:
    ViSession sessionHandle = VI_NULL;
    ViInt32 numberOfDevices = 0,
    i = 0;
    ViChar deviceNameBuffer[256] = "";
    niModInst_OpenInstalledDevicesSession(
    "niScope",
    &sessionHandle,
    &numberOfDevices);
    for (i=0; i < numberOfDevices; i++) {
    niModInst_GetInstalledDeviceAttributeViString(
    sessionHandle,
    i,
    NIMODINST_ATTR_DEVICE_NAME,
    256,
    deviceNameBuffer);
    printf("%s\n", deviceNameBuffer);
    niModInst_CloseInstalledDevicesSession(sessionHandle);
    The device names that you're printing out in this example can be used as the resourceName input to the niScope_init function.
    In practice, though, be sure to check the status that is returned from each function. You can get further information about an error using the niModInst_GetExtendedErrorInfo function. All the functions I used above can be found in the niModInst.h file.
    Hope that provides some more help.

  • Technical Monitoring for Logical host name

    Dear experts,
    We are in mid of technical monitoring finalisation.
    one of the interesting thing which i found with respect to the logical host name, we installed SMD agent on Virtual host name and our system is not with HA environment and no clustering. It is just a system with single instance.
    During the managed system configuration all the physical and logical host name reported by SMD autodiscovery, all went fine. But in Technical monitoring shows only virtual host name with the updated alerts , and logical host name only shows grey alert.
    virtual host shows alert here
    logical host name shows grey
    how can i get alert displayed for logical host name too? do i need to do some settings at the OS level , could you guide us?
    Thanks
    Jansi

    Hi Giri Raju Ayyagari,
    I am sorry, seems you are still not able to get my issue, moreover you get diverting my issue
    Here the problem is not at all related to agents on fly. thats the separate topic.
    We are having issue on Logical Host names where there is no HA environment, means only One logical host name created.
    I raised to SAP, l will update once the update from SAP given.
    Best regards
    Jansi

  • Side effect of SQl server upgrade from 2008 R2 to Server 2012, logical name of log file changed for one database

    I came to know that name has changed when I tried to shrink the file. Here is the error message I got:
    Shrink failed for LogFile "Tfs_TESTTFS_Log'. (Microsoft.SqlServer.Smo)
    Additonal information
    An exception occured while executing a Transact-SQL statement or batch.
    (Microsoft.SqlServer.COnnectionInfo)
    Could not locate file 'Tfs_TESTTFS_Log' for database 'Tfs_TESTTFS' in sys.database_files. The file 
    either does not exist, or was dropped. (Microsoft Sql Server, Error: 8995)
    This is test environment upgrade and I checked on production environment which is still on SQL 2008R2, shrink works fine.
    Please help.

    I did in place Upgrade.
    Before Upgrade
    Logical Names
    Database Name: Tfs_TESTTFS
    Database Log: Tfs_TESTTFS_Log
    After Upgrade
    Logical Names
    Database Name: Tfs_TESTTFS
    Database Log: TfsVersionControl_Log
    Thx

Maybe you are looking for

  • Installation of Adobe Acrobat XI Standard

    How do I install if the program is on CD and my computer does not have a CD drive?

  • Need some help on AVDocClose

    I got an exception " Unhandled exception at 0x77a515de in Acrobat.exe: 0xC0000005: Access violation" everytime when I call AVDocClose(avDoc, true) in a customized Plugin. So I tried the following: Downloaded sdk100-v1, in the sample "Stamper": change

  • Apple Mail Alert help, please

    I have Rules that direct new mail into various mailboxes, but I can't see where the messages go after they arrive. Is there a way to get the mailbox label to flash, or change color, or for the box to open, etc., that will direct my attention to it? T

  • Mk:@MSITStore error while opening CHM file

    Hi, I have placed a CHM file (generated using RoboHelp X5) in the network folder. When opened from there, it is throwing this error: Cannot open the file : mk:@MSITStore: <path where file is located with file name>. This error is thrown only for one

  • Will I be able to fit multiple Sims 3 games on my new MacBook Pro/how to transfer ALL music to new laptop?

    I'm receiving a new MacBook Pro for the next school year. I really would like to know if the Sims 3 base game, Late Night and Generations plus a bunch of extra custom content would fit on my computer and still run fast/without problems? Also, I reall