Bug in xdb ease of use tools?

Hi,
I'm working with the XDB Ease of Use Tools for Structured Storage.
While executing the prvtxutil.plb file, I get the following error:
SQL> SHOW ERRORS;
Fehler bei PACKAGE BODY XDB.DBMS_XMLSTORAGE_MANAGE:
LINE/COL ERROR
2220/4   PL/SQL: Statement ignored
2220/15  PLS-00306: Falsche Anzahl oder Typen von Argumenten in Aufruf von
         'ISXMLTYPETABLE'
2322/4   PL/SQL: Statement ignored
2322/15  PLS-00306: Falsche Anzahl oder Typen von Argumenten in Aufruf von
         'ISXMLTYPETABLE'The file dbmsxutil.sql which I executed before ran without a problem. That´s annoying.....
The version of the prvtxutil.plb file which I have, was updated 25.01.2011, 10:34:56.
Has anyone the same problem or a solution for this?
Maybe it's a bug and someone has a previous version of the prvtxutil.plb which works and who can post it here....
SQL> select * from v$version;
BANNER
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
PL/SQL Release 11.2.0.1.0 - Production
CORE    11.2.0.1.0      Production
TNS for 32-bit Windows: Version 11.2.0.1.0 - Production
NLSRTL Version 11.2.0.1.0 - Production
5 Zeilen ausgewählt.

Report any issue with the toolset on the official thread here: The "Offical" XDB Utilities thread. (via the FAQ XMLDB forum link on the mainpage)

Similar Messages

  • New music player not satisfactory no eas of use an...

    Music Player for Symbian^3 Version 16.10.38.
    Device details Nokia N8 OS Symbian Anna, Software Version 022.014(.356.02=Custom)
    There was a time that I was telling friends that now cell phones are equipped with all the best features when it comes to music also. But that was thing of the past.
    1. Artist & Albums Menu. No Separate selection for each available.
    a. Artist:
    How it is: Artist names are shown with album names.
    Problem: If one had to play all songs of (single) desired artist, he can’t as he doesn’t get “PLAY ALL SONGS” option in that.
    How it should be: Type or scroll to the desired artist name, tab (open) it then you will find out options as “Play all songs” or “Play Album (named separately as XXX, XYZ)”. Previous Media Players had that option.
    b. Albums:
    How it is: As explained in Artist menu.
    Problem: I have albums which are multi artists (especially Indian movie songs which are mostly various artists) so if one had to listen to that complete album, he simply can’t.
    How it should be: As explained above for artists. Previous Media Players had that option.
    2. No type tool available to search in desired fields.
    How it is: The most important thing, the typing tool is unavailable,
    Problem: If one have huge music collection and have to search for song either by artist, album, genre, or by all songs option, the only way is to scroll, while scrolling he is guided by alphabets but still it not powerful tool.
    How it should be: It’s easy to find if one just type the first few alphabets (of first or any word in the field) works as filter, whatever you typed remains on screen the rest hides. Previous Media Players had these options.
    3. Missing Music Composer Menu.
    As these options were available in older phone’s media players like Nokia N95, N73 etc but in new once they are missing, Changing in manifestation is good, adding new and attractive features is great, improvement in ease of use is best but eliminating power features is doing something which is equal to downgrade to Stone Age............ I don't think so people will appreciate.
    4. Custom Equalizer Settings.
    How it is: There few selective factory presets for the equalizer.
    Problem: There are millions of Genres Worldwide and not every part of the world matches the music presets they stored in device and most of time people match the sound on their Audio devices (Car Stereo, Home and other) so they need to edit the equalizer for the best optimum sound quality.
    How it should be: As in older devices had and one can change and save his own setting.
    5. Expecting to add more menus: Suggestions for more menus (like year, mood etc) will be greatest things you will do.
    Who will go and buy a separate device just for music if he has all these features supported by his cell phone specially when the manufacturer claims that it have music player inside.
    People don’t have to stop on highways or stop skating for a while just to select the next song, allow people to go by several options.
    In one simple line to explain, keep all the options of older music player, just change the display styles to new one. Add the suggestions.

    Yep as I said in my post tried that obviously aswell as ...  well, the other things i mentioned in my posting. 
    Now does anyone have any ideas?

  • Reports and Dashboards Concept to Use tools Jasper, Birt and Pentaho to Implement in SAP

    Dear Experts,
    We would like to Implement/Introduce Reports and Dashboards concept in our SAP Environment Using Tools Jasper, Birt or Pentaho. The End Users in our company has a requirement of Verifiying the Reports which are downloading from SAP Into Graphical Reporting / Reports for Easy Analysis. Please provide me the required Information of connnectivity of Data from SAP, connecting with Data outside sap for Ease or Report Creation, Dashboard concept.
    Thanks In advance,
    Regards,
    Harsha.

    Apologies - I've just discovered that there is an e-commerce forum.
    I'll try over there.

  • Developing ETL in pl/sql instead of using tools

    I've been developing for many years in pl/sql and c-shell scripting (Unix) for managing ETL processes in order to load and perform data into databases and data warehouses.
    Even if I've rarely used tools like Pentaho and never used Oracle Warehouse Builder, according to you is it possible to claim that an analyst/programmer has developed ETL processes only by using classic developing (plsql, c-shell, external tables, ...)?
    For a forthcoming new project I'd like to work for as a data warehouse analyst/programmer for ETL processes, I'd like to know whether I can claim to be able to write ETL procedures even if I don't use data integration tools.
    Thank you very much!

    odie_63 wrote:
    BluShadow wrote:
    In the end I wrote an XML Schema parser that created 'staging' tables based on that schema, and also generated template 'mapping' packages to be used for populating the staging tables from our various source system.Slightly off-topic but out of curiosity, do you handle all XML schema features such as substitution groups and import/include directives?Not quite ALL schema features (didn't quite have time to include them all) but yes, it does parse for substitution groups and import/include directives (which is another thing a lot of the ETL tools couldn't handle). The XML Schemas we were supplied with came in many parts but were inter-related, so I ended up writing a proper recursive parser using the DBMS_XMLDOM package and the XDB (where the Schema's were FTP'd to, stored, and queried from). Also had to deal with namespaces (which in this particular instance were pointless namespaces; there was no need for them in these particular Schemas, but obviously the 'designer' behind the schemas thought it was good to include them). The parser takes the schemas (starting at the main schema and including the others as required), processes them to create a metadata table containing all the information about the element names, datatypes, namespaces and parent elements etc. so essentially giving a set of hierarchical data, which is then post-processed to flatten the structure as much as required to obtain the actual datatypes of simple elements, and expand the extensions etc. whilst at the same time creating a set of metadata to assign 'table names' to each group of elements (as element names can exceed the 30 character limit of oracle table names), then creates scripts to generate the staging tables with appropriate primary/foreign keys so all the tables have the correct relationship, as well as the XML generating package that can generate pieces of XML from each table and combines them to the required output XML (once there's data in the tables of course).
    Considering I had little experience of XML Schemas and namespaces at the time I wrote it, back in 2005/6 (I did have experience of DTD's), I used my knowledge of writing language/syntax parsers and knowledge of what ETL tools aimed to do (easily gained knowledge from all the demonstrations the companies trying to sell them gave us) to write the parser and the ETL process. Other organisations, related to our own, also had the same task to do, and some of those were struggling (as they too had no ETL tool) so were provided with what we'd achieved as their starting point, and to great success, as far as I'm aware. It certainly proved itself worthy, when the 3rd party supplied us with completely restructured Schemas (a whole overhaul of the final product), and we just ran those through the parser in another database schema, and did a staging table comparison to see what changes had been made overall (they hadn't supplied any details themselves of what had changed, it was up to us to find out); that whole process of parsing the schemas and analysing the differences to determine the impact on our current work, was all done in 2 days, something which surprised our management greatly (especially as other organisations having to do the same, were reporting it was going to take them several weeks). Sure, there are areas for improvement in it, but it more than meets our needs.
    :)

  • Problems with Windows 7 Ease of Use Magnifier & Narrator

    I am legally blind and need Windows 7 Ease of Use programs to use the computer.  However, I have been having problems with both the narrator and the magnifier.  I have Home Premium running on i5-3317u with integrated graphics and 6gb ram.
    Q1:  Magnifier has options to follow the keyboard focus and the text insertion point.  However, in my case, it will only follow the mouse pointer.  It will not follow the keyboard insertion point.  I want magnifier to follow the mouse
    pointer, the keyboard focus, and the keyboard insertion point.  How can I get them all to work properly?
    Q2:  I cannot get narrator to read documents, whether I use notepad, MS Word, or third party software.  Also, I cannot control narrator with the keyboard controls.  How can I fix these problems?
    Thank you for your time

    Hi,
    This may occur if there are some corrupt system files on the computer. I would suggest that you run a SFC scan which would scan for corrupt system files on the computer and replace them
    How to use the System File Checker tool to troubleshoot missing or corrupted system files on Windows Vista or on Windows 7
    http://support.microsoft.com/kb/929833
    If the above step fails then check if the issue persists in a new user account
    Create a user account
    http://windows.microsoft.com/en-us/windows/create-user-account#create-user-account=windows-7
    Please also update your sound card and display card.
    Meanwhile, I suggest changing  Resolution settings for testing the issue.
    Change your screen resolution
    http://windows.microsoft.com/en-US/windows7/Change-your-screen-resolution
    Thanks

  • Bug:4705928 PLSQL: Memory leak using small varrays

    We have Oracle version 10.2.0.1.0
    We have a problem with a procedure.
    In our scenario we make use of VARRAY in the procedure to pass some filter parameters to a select distinct querying a view made on three tables.
    Unfotunately not always execution it is successful.
    Sometimes it returns wrong value (0 for the count parameter), sometimes (rarely) the server stops working.
    We suspect that this is caused by a bug fixed in versione 10.2.0.3.0
    Bug:4705928 PLSQL: Memory leak using small varrays when trimming the whole collection and inserting into it in a loop
    We suspect this becasue we made two procedure the first (spProductCount) uses a function (fnProductFilter) to calculate the values of a varray and passes them into the select,
    while in the second procedure (spProductCount2) parameters are passed directly into the statement without varray
    and there are failures only in the first procedure.
    On the other hand on another server 10.2.0.1.0 we never have this problem.
    The instance manifesting the bug runs under shared mode, while the other is under dedicated mode.
    Turning the first one to dedicated mode makes the bugs disapear.
    Unfortunately this is not a solution.
    In the sample there are the three table with all constraints, the view, tha varray custom type, the function and the two procedures.
    Is there someone that may examine our sample and tell us if the pl/sql code corresponds to the bug desciption.
    We also want to know if it's possibile that the same server running under different mode (SHARED/DEDICATED) doesn't behave the same way.
    The tables:
    --Products
    CREATE TABLE "Products" (
         "Image" BLOB
         , "CatalogId" RAW(16)
         , "ProductId" RAW(16)
         , "MnemonicId" NVARCHAR2(50) DEFAULT ''
         , "ProductParentId" RAW(16)
    ALTER TABLE "Products"
         ADD CONSTRAINT "NN_Products_M04" CHECK ("CatalogId" IS NOT NULL)
    ALTER TABLE "Products"
         ADD CONSTRAINT "NN_Products_M05" CHECK ("ProductId" IS NOT NULL)
    ALTER TABLE "Products"
    ADD CONSTRAINT "PK_Products"
    PRIMARY KEY ("ProductId")
    CREATE INDEX "IX_Products"
    ON "Products" ("CatalogId", "MnemonicId")
    CREATE UNIQUE INDEX "UK_Products"
    ON "Products" (DECODE("MnemonicId", NULL, NULL, RAWTOHEX("CatalogId") || "MnemonicId"))
    --Languages
    CREATE TABLE "Languages" (
         "Description" NVARCHAR2(250)
         , "IsStandard" NUMBER(1)
         , "LanguageId" RAW(16)
         , "MnemonicId" NVARCHAR2(12)
    ALTER TABLE "Languages"
         ADD CONSTRAINT "NN_Languages_M01" CHECK ("LanguageId" IS NOT NULL)
    ALTER TABLE "Languages"
         ADD CONSTRAINT "NN_Languages_M05" CHECK ("MnemonicId" IS NOT NULL)
    ALTER TABLE "Languages"
    ADD CONSTRAINT "PK_Languages"
    PRIMARY KEY ("LanguageId")
    ALTER TABLE "Languages"
    ADD CONSTRAINT "UK_Languages"
    UNIQUE ("MnemonicId")
    --ProductDesc
    CREATE TABLE "ProductDesc" (
         "Comment" NCLOB
         , "PlainComment" NCLOB
         , "Description" NVARCHAR2(250)
         , "DescriptionText" NCLOB
         , "PlainDescriptionText" NCLOB
         , "LanguageId" NVARCHAR2(12)
         , "ProductId" RAW(16)
    ALTER TABLE "ProductDesc"
         ADD CONSTRAINT "NN_ProductDescM01" CHECK ("LanguageId" IS NOT NULL)
    ALTER TABLE "ProductDesc"
         ADD CONSTRAINT "NN_ProductDescM02" CHECK ("ProductId" IS NOT NULL)
    ALTER TABLE "ProductDesc"
    ADD CONSTRAINT "PK_ProductDesc"
    PRIMARY KEY ("ProductId", "LanguageId")
    ALTER TABLE "ProductDesc"
    ADD CONSTRAINT "FK_ProductDesc1"
    FOREIGN KEY("ProductId") REFERENCES "Products" ("ProductId")
    ALTER TABLE "ProductDesc"
    ADD CONSTRAINT "FK_ProductDesc2"
    FOREIGN KEY("LanguageId") REFERENCES "Languages" ("MnemonicId")
    /The view:
    --ProductView
    CREATE OR REPLACE VIEW "vwProducts"
    AS
         SELECT
               "Products"."CatalogId"
              , "ProductDesc"."Comment"
              , "ProductDesc"."PlainComment"
              , "ProductDesc"."Description"
              , "ProductDesc"."DescriptionText"
              , "ProductDesc"."PlainDescriptionText"
              , "Products"."Image"
              , "Languages"."MnemonicId" "LanguageId"
              , "Products"."MnemonicId"
              , "Products"."ProductId"
              , "Products"."ProductParentId"
              , TRIM(NVL("ProductDesc"."Description" || ' ', '') || NVL("ParentDescriptions"."Description", '')) "FullDescription"
         FROM "Products"
         CROSS JOIN "Languages"
         LEFT OUTER JOIN "ProductDesc"
         ON "Products"."ProductId" = "ProductDesc"."ProductId"
         AND "ProductDesc"."LanguageId" = "Languages"."MnemonicId"
         LEFT OUTER JOIN "ProductDesc" "ParentDescriptions"
         ON "Products"."ProductParentId" = "ParentDescriptions"."ProductId"
         AND ("ParentDescriptions"."LanguageId" = "Languages"."MnemonicId")
    /The varray:
    --CustomType VARRAY
    CREATE OR REPLACE TYPE Varray_Params IS VARRAY(100) OF NVARCHAR2(1000);
    /The function:
    --FilterFunction
    CREATE OR REPLACE FUNCTION "fnProductFilter" (
         parCatalogId "Products"."CatalogId"%TYPE,
         parLanguageId                    NVARCHAR2 := N'it-IT',
         parFilterValues                    OUT Varray_Params
    RETURN INTEGER
    AS
         varSqlCondition                    VARCHAR2(32000);
         varSqlConditionValues          NVARCHAR2(32000);
         varSql                              NVARCHAR2(32000);
         varDbmsCursor                    INTEGER;
         varDbmsResult                    INTEGER;
         varSeparator                    VARCHAR2(2);
         varFilterValue                    NVARCHAR2(1000);
         varCount                         INTEGER;
    BEGIN
         varSqlCondition := '(T_Product."CatalogId" = HEXTORAW(:parentId)) AND (T_Product."LanguageId" = :languageId )';
         varSqlConditionValues := CHR(39) || TO_CHAR(parCatalogId) || CHR(39) || N', ' || CHR(39 USING NCHAR_CS) || parLanguageId || CHR(39 USING NCHAR_CS);
         parFilterValues := Varray_Params();
         varSql := N'SELECT FilterValues.column_value FilterValue FROM TABLE(Varray_Params(' || varSqlConditionValues || N')) FilterValues';
         BEGIN
              varDbmsCursor := dbms_sql.open_cursor;
              dbms_sql.parse(varDbmsCursor, varSql, dbms_sql.native);
              dbms_sql.define_column(varDbmsCursor, 1, varFilterValue, 1000);
              varDbmsResult := dbms_sql.execute(varDbmsCursor);
              varCount := 0;
              LOOP
                   IF (dbms_sql.fetch_rows(varDbmsCursor) > 0) THEN
                        varCount := varCount + 1;
                        dbms_sql.column_value(varDbmsCursor, 1, varFilterValue);
                        parFilterValues.extend(1);
                        parFilterValues(varCount) := varFilterValue;
                   ELSE
                        -- No more rows to copy
                        EXIT;
                   END IF;
              END LOOP;
              dbms_sql.close_cursor(varDbmsCursor);
         EXCEPTION WHEN OTHERS THEN
              dbms_sql.close_cursor(varDbmsCursor);
              RETURN 0;
         END;
         FOR i in parFilterValues.first .. parFilterValues.last LOOP
              varSeparator := ', ';
         END LOOP;
         RETURN 1;
    END;
    /The procedures:
    --Procedure presenting anomaly\bug
    CREATE OR REPLACE PROCEDURE "spProductCount" (
         parCatalogId "Products"."CatalogId"%TYPE,
         parLanguageId NVARCHAR2 := N'it-IT',
         parRecords OUT NUMBER
    AS
         varFilterValues Varray_Params;
         varResult INTEGER;
         varSqlTotal VARCHAR2(32000);
    BEGIN
         parRecords := 0;
         varResult := "fnProductFilter"(parCatalogId, parLanguageId, varFilterValues);
         varSqlTotal := 'BEGIN
         SELECT count(DISTINCT T_Product."ProductId") INTO :parCount FROM "vwProducts" T_Product
              WHERE ((T_Product."CatalogId" = HEXTORAW(:parentId)) AND (T_Product."LanguageId" = :languageId ));
    END;';
         EXECUTE IMMEDIATE varSqlTotal USING OUT parRecords, varFilterValues(1), varFilterValues(2);
    END;
    --Procedure NOT presenting anomaly\bug
    CREATE OR REPLACE PROCEDURE "spProductCount2" (
         parCatalogId "Products"."CatalogId"%TYPE,
         parLanguageId NVARCHAR2 := N'it-IT',
         parRecords OUT NUMBER
    AS
         varFilterValues Varray_Params;
         varResult INTEGER;
         varSqlTotal VARCHAR2(32000);
    BEGIN
         parRecords := 0;
         varSqlTotal := 'BEGIN
         SELECT count(DISTINCT T_Product."ProductId") INTO :parCount FROM "vwProducts" T_Product
              WHERE ((T_Product."CatalogId" = HEXTORAW(:parentId)) AND (T_Product."LanguageId" = :languageId ));
    END;';
         EXECUTE IMMEDIATE varSqlTotal USING OUT parRecords, parCatalogId, parLanguageId;
    END;Edited by: 835125 on 2011-2-9 1:31

    835125 wrote:
    Using VARRAY was the only way I found to transform comma seprated text values (e.g. "'abc', 'def', '123'") in a collection of strings.A varray is just a functionally crippled version of a nested table collection type, with a defined limit you probably don't need. (Why 100 specifically?) Instead of
    CREATE OR REPLACE TYPE varray_params AS VARRAY(100) OF NVARCHAR2(1000);try
    CREATE OR REPLACE TYPE array_params AS TABLE OF NVARCHAR2(1000);I don't know whether that will solve the problem but at least it'll be a slightly more useful type.
    What makes you think it's a memory leak specifically? Do you observe session PGA memory use going up more than it should?
    btw good luck with all those quoted column names. I wouldn't like to have to work with those, although they do make the forum more colourful.
    Edited by: William Robertson on Feb 11, 2011 7:54 AM

  • Ease of use

    I am looking for cheap easy to use camcorder for my little nephew. He's 8. Since I want him to be able to shoot video and then use it with iMovie '08 it's not just ease of use in the camcorder I'm looking for, but ease of use with iMovie '08.
    I'd like some opinions of using iMovie '08 with either of these cameras.
    Aiptek A-HD 720P - $130
    Flip Ultra - $85
    From what I have read, the Aiptek H.264 files drop right into iMovie '08, but the files from the Flip Ultra need converting before hand. The flip might have ease of use as a camera going for it, but I think the converting might be a downside.
    What do you guys think? Ever use either of these with iMovie '08? Any hassles to be aware of? Thanks for the info in advance.

    If you have a deadline of 12 days you are risking a lot gambling that you can learn FCE in that time.
    As David says, some people might be able to do it but until you try there is no way of knowing whether you are one of those, and if you aren't it's too late.
    If it is possible to finish it in iMovie, that should be your course.
    FCE bears no resemblance to iMovie so it's not just a matter of making a natural progression, it's an entirely different mindset.

  • Camcorder options for HD and ease of use

    I am new to the mac computer and also looking at buying one of two models of camcorders and wanted to see what the mac specialist help. I am interested in the Sony HDR-SR10 40GB High Definition Handycam (I like the 10 mega pix still option) or the Cannon VIXIA HG10. I have received mixed information at the electronic stores about which would work well with the apple system. Any recommendations on ease of use for a novice with apple? Thank you.

    Welcome to iMovie Discussions.
    For a bit of info on the Sony, see camcorderinfo here, and on the Canon, see here.
    Hard-disc hi-def camcorders record video in AVCHD format, which has to be converted into a slightly different 'Apple Intermediate Codec' format during importing into iMovie, for editing. This works OK with fast, Intel-based Macs (..all the most recent models..) but will NOT work with older PowerPC-based Macs (two or three years old) unless you download a separate program called VoltaicHD (click here).
    On slower Macs you may find that the import lags slightly behind the 'real time' movie, as the video is converted during the import.
    Video from hi-def camcorders which record onto miniDV tape (instead of a hard disc or memory chips or miniDVDs) using the HDV mode (instead of AVCHD) can be imported straight into any older PowerPC-based Mac or a newer Intel-based Mac ..but, again, there may be a lag during import if using an older PowerPC-based Mac, but not on any current fast Macs.

  • Full screen issue when utilizing Ease of Use on screen keyboard and RDP in Win8.1

    Hello,
    I am exploring using touch technology with our point of sale application which is delivered to our clients using RDP.  The default touch keyboard in Win8 is basically useless for our application so we enabled the touch keyboard under Ease of Use (EoU)
    which does meet our requirements.   We enabled the KB in docked mode so it is always displayed and locked to the bottom of the display.  The issue is that when we start an RDP session in full screen mode, the RDP session is using the whole screen
    and slipping under the docked EoU KB.  Is there a means to have RDP recognize the reduced screen size with the EoU KB docked and only use the available screen real estate?  I understand that I can configure the RDP settings manually and approximate
    what I'm looking for but this drops the session into a window which is somethibg I'm looking to avoid.

    Hi Steve,
    Thank you for post in Windows Server Forum.
    As per my research, I can say that you need to set the RDP screen size manually. So after setting the size of Full screen RDP you can able to use. You can also try to switch the application in Remote Desktop connection by “Ctrl+Alt+Break”. Please check
    the shortcut to be used when using RDC.
    Keyboard shortcuts
    http://windows.microsoft.com/en-in/windows/keyboard-shortcuts#keyboard-shortcuts=windows-8
    Hope it helps!
    Thanks,
    Dharmesh

  • Should Windows 10 provide ease of use virtual machine to run Android, Windows XP, etc applications

    In Windows 7, I really like the easy access to Windows XP Mode that enabled me to have full compatibility to my older hardware scanner and its software (which I still use today).  Similarly, I love my Z30 Blackberry phone which allows me to run Android
    applications in addition to those from the Blackberry store.
    My suggestion for Windows 10 is to provide a built in virtual machine option (ease of use) that would allow my Windows machine to install and run the multitude of Android applications that are currently available.
    I believe an ease of use feature like this in Windows 10 would become a real differentiator for Windows eco systems, such as Windows Phones and Windows Surface and help promote sales and product adoption.  To me it is another way of looking at the product
    and making it the best in any world...  Kind of like running the MS Office product on a Mac.
    Objects - first class citizens: identity, public interfaces and the authority for their own behaviour and state

    On Fri, 21 Nov 2014 18:12:19 +0000, ToServe wrote:
    My suggestion for Windows 10 is to provide a built in virtual machine option (ease of use) that would allow my Windows machine to install and run the multitude of Android applications that are currently available.
    I believe an ease of use feature like this in Windows 10 would become a real differentiator for Windows eco systems, such as Windows Phones and Windows Surface and help promote sales and product adoption.  To me it is another way of looking at the product
    and making it the best in any world...  Kind of like running the MS Office product on a Mac.
    Microsoft Office for Mac was purposefully written for Macs, it doesn't use an emulator to run the PC version. Microsoft earns revenue from the sales of Microsoft Office for Mac.
    You're not going to see Microsoft going out of their way to enable running Android apps on Windows 10.
    Paul Adare - FIM CM MVP
    I just went visual on this goofy looking Finn riding on a gnu, wielding
    one pissed off penguin... gah -- Bob The Sane

  • ICloud: how to make it a useful tool?

    I upgraded to iOS5 on October 12, probably to hastily. Now, the software is probably still in evolution, but as it is now it seems to me that it does not offer a useful tool as one expected from the big promotion from Apple. The main points are, in my opinion, the following:
    1. I got 20 GBy of storage, but this is used only for documents which are produced under Apple software - i.e. iWork. I'm using only 0.3 GBy and this will be all.
    2. access via my Mac is ackward, not "seamless". Only iPad and iPhone get easy access.
    3. automatic sync is a nice aspect - like backup with time-capsule - but I would like to have more control, especially for documents which stored somewhere where I do not have direct access. I do not share the radical view of Stallman about "the cloud" but I start to appeciate some of his criticism about the limited control on the whole process.
    Now, I would like to store ANY document in the cloud, my programs, my photos, etc. and decide which documents are free access to whom. This seems to be impossible at the moment. I'm keeping my dropbox account which allows me to easily share all the documents with my collaborators (and students). That's what I expected from iCloud. At the same time mobile.me shows rather serious malfunctioning. Syncing with iDisk is now problematic, contrary to statements (maintained to June 2012).
    Finally, the new "System Preferences" on the Mac about iCloud is rather obscure, no clear info about the action to be taken. Rumors are that dropping sync from "documents" would erase the documents also on my mac. I dot not want anybody have automatic and anauthorised access to my files!
    I expect Apple to improve the service - allowing access to iCloud with upload of any kind of software and sharing with third parties and taking any action on it only after explicit authorization on my part - otherwise I'll be obliged to cancel my account by next year.

    Addendum: not only I can upload only documents created with iWork, but additionally I
    have to upload them one-at-a-time. I have some 200 Pages docs. Are you kidding?
    I hope Apple will be receiving millions of messages asking for a new discipline for iCloud,
    more similar to Dropobox or Cloudapp, a merge of the best possible software. This is what
    I expected by Apple. At present, iCloud looks like a toy for people having time to waste.
    Anybody hearing at Apple? It hurts me to be polemic, but iCloud definitely looks like
    an unfinished experiment, and Apple should listen, otherwise they are losing many
    customers.
    Best wishes, E.O.

  • I paid for exportpdf and everytime i try to use tool on pdf, it asks me to subscribe. i have to log into website EVERY time. not acceptable.  how can i export only form fields that were filled in?

    i paid for exportpdf and every time i try to use tool on pdf, it asks me to subscribe. i have to log into website EVERY time. not acceptable. Some forms can't be saved so having to log in and only use webtool to upload a saved pdf won't work.
    as well, how can i export only form fields that were filled in if I can get pdf to save to computer?

    Hi kstine,
    I can see why that would be frustrating! Have you tried selecting Stayed Signed In underneath the Adobe ID and Password boxes when you try to log in?
    What did you use to create the PDF form? If you used FormsCentral, form data is saved to your online FormsCentral account. If you have Acrobat, you can export form data as described  here: Adobe Acrobat X Pro * Manage form data files
    Best,
    Sara

  • I have Adobe Acrobat 8 Standard and I had to reload it on my computer due to my hard drive crashing. Now I can only open and view PDF's  and I cannot edit them as I could before such as using Tools Comment

    I have Adobe Acrobat 8 Standard and I had to reload it on my computer due to my hard drive crashing. Now I can only open and view PDF’s  and I cannot edit them as I could before such as using Tools>Comment&Markup or Tools>Advanced Editing>TouchUp Text Tool. All the functions are greyed out. Please advise.

    What's your OS? Acrobat 8 is not compatible with any modern OS.
    On Thu, Jan 15, 2015 at 4:16 PM, thomasc1234 <[email protected]>

  • Importing a class CEX file using TOOL

    Hi Forte Users,
    Would anyone know how to import a class CEX file using TOOL code? Is there
    a class in one of the libraries that I can use to do such a task?
    If anyone has some insight into such an endeavor (positive or negative)
    please respond!
    As well, I would like to express my appreciation for this mailing list - it
    has carried some excellent Forte dialogue.
    Thanks for all your help!
    Geoff Whittington
    -----Original Message-----
    From: [email protected] [SMTP:[email protected]]
    Sent: Wednesday, May 13, 1998 3:54 PM
    To: [email protected]
    Cc: [email protected]; [email protected];
    [email protected]; [email protected]
    Subject: Re: Backing up an Environment
    Hi Daniel,
    How can you use RpClean on an environment repository
    which is C-tree ? (Or is there a way to store it as B-tree
    with Forte R3 ?)
    Note also that your Name Server performances may be
    dramatically impoverished after several applications
    install/uninstall (say 8 or 10), once your Env. Mgr repository
    has grown pretty big. The only way to recycle it is then to restart
    it from an export file with the -b option.
    Please let me know,
    Vincent
    On Wed, 13 May 1998 00:03:52 +0200 Daniel Nguyen
    <[email protected]> writes:
    Hi,
    It is normal. The Export of the Environment only contains node
    definitions.
    You should also loose your partitioning definition in your Workshop.
    Have you tried the RpClean on the environment repository ?
    I would use the export file only after a crash of the environment on
    production
    site or restart from a backup of the environment repository without
    the
    user
    connexions.
    Hope this helps,
    Daniel Nguyen
    Freelance Forte Consultant
    Chael, Tom wrote:
    Every time I export my environment definition and rebuild the
    environment repository I loose my application definitions. I have to
    go into Econsole/Escript to Uninstall and reinstall my applications.
    Is this normal? I am on a Windows NT environment running Forte
    2.0.H.1. I have verified that I am using the correct .edf file when I
    do my environment rebuild.
    -----Original Message-----
    From: Don Nelson [SMTP:[email protected]]
    Sent: Wednesday, April 29, 1998 5:35 PM
    To: Sanchez, Bernardo
    Cc: '[email protected]'
    Subject: Re: Backing up an Environment
    Sanchez,
    Try this simple escript:
    findactenv
    exportenv
    exit
    Note that this will only export the active environments - no
    simulated
    environments will be exported.
    It's also a good idea to rebuild your environment repository
    every now and
    then. How often you do it depends partly on how many and how
    often you do
    deployments, installations, or other changes to the environment.
    However,
    once a month is not a bad starting point.
    Don
    At 04:54 PM 4/29/98 -0400, Sanchez, Bernardo wrote:
    We are currently running a cron job to backup & clean ourCentralRepository
    (bt:central) on a daily basis. This works OK.
    We would also like to backup our forte environment on a weeklybasis. Does
    anyone have a script to do this?
    Thanks in advance.
    Bernardo Sanchez DMC Inc.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive<URL:http://pinehurst.sageit.com/listarchive/>
    ============================================
    Don Nelson
    Regional Consulting Manager - Rocky Mountain Region
    Forte Software, Inc.
    Denver, CO
    Phone: 303-265-7709
    Corporate voice mail: 510-986-3810
    aka: [email protected]
    ============================================
    "When you deal with high numbers, you need higher math." - Hobbes
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>-
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    You don't need to buy Internet access to use free Internet e-mail.
    Get completely free e-mail from Juno at http://www.juno.com
    Or call Juno at (800) 654-JUNO [654-5866]
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>-
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hi Forte Users,
    Would anyone know how to import a class CEX file using TOOL code? Is there
    a class in one of the libraries that I can use to do such a task?
    If anyone has some insight into such an endeavor (positive or negative)
    please respond!
    As well, I would like to express my appreciation for this mailing list - it
    has carried some excellent Forte dialogue.
    Thanks for all your help!
    Geoff Whittington
    -----Original Message-----
    From: [email protected] [SMTP:[email protected]]
    Sent: Wednesday, May 13, 1998 3:54 PM
    To: [email protected]
    Cc: [email protected]; [email protected];
    [email protected]; [email protected]
    Subject: Re: Backing up an Environment
    Hi Daniel,
    How can you use RpClean on an environment repository
    which is C-tree ? (Or is there a way to store it as B-tree
    with Forte R3 ?)
    Note also that your Name Server performances may be
    dramatically impoverished after several applications
    install/uninstall (say 8 or 10), once your Env. Mgr repository
    has grown pretty big. The only way to recycle it is then to restart
    it from an export file with the -b option.
    Please let me know,
    Vincent
    On Wed, 13 May 1998 00:03:52 +0200 Daniel Nguyen
    <[email protected]> writes:
    Hi,
    It is normal. The Export of the Environment only contains node
    definitions.
    You should also loose your partitioning definition in your Workshop.
    Have you tried the RpClean on the environment repository ?
    I would use the export file only after a crash of the environment on
    production
    site or restart from a backup of the environment repository without
    the
    user
    connexions.
    Hope this helps,
    Daniel Nguyen
    Freelance Forte Consultant
    Chael, Tom wrote:
    Every time I export my environment definition and rebuild the
    environment repository I loose my application definitions. I have to
    go into Econsole/Escript to Uninstall and reinstall my applications.
    Is this normal? I am on a Windows NT environment running Forte
    2.0.H.1. I have verified that I am using the correct .edf file when I
    do my environment rebuild.
    -----Original Message-----
    From: Don Nelson [SMTP:[email protected]]
    Sent: Wednesday, April 29, 1998 5:35 PM
    To: Sanchez, Bernardo
    Cc: '[email protected]'
    Subject: Re: Backing up an Environment
    Sanchez,
    Try this simple escript:
    findactenv
    exportenv
    exit
    Note that this will only export the active environments - no
    simulated
    environments will be exported.
    It's also a good idea to rebuild your environment repository
    every now and
    then. How often you do it depends partly on how many and how
    often you do
    deployments, installations, or other changes to the environment.
    However,
    once a month is not a bad starting point.
    Don
    At 04:54 PM 4/29/98 -0400, Sanchez, Bernardo wrote:
    We are currently running a cron job to backup & clean ourCentralRepository
    (bt:central) on a daily basis. This works OK.
    We would also like to backup our forte environment on a weeklybasis. Does
    anyone have a script to do this?
    Thanks in advance.
    Bernardo Sanchez DMC Inc.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive<URL:http://pinehurst.sageit.com/listarchive/>
    ============================================
    Don Nelson
    Regional Consulting Manager - Rocky Mountain Region
    Forte Software, Inc.
    Denver, CO
    Phone: 303-265-7709
    Corporate voice mail: 510-986-3810
    aka: [email protected]
    ============================================
    "When you deal with high numbers, you need higher math." - Hobbes
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>-
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    You don't need to buy Internet access to use free Internet e-mail.
    Get completely free e-mail from Juno at http://www.juno.com
    Or call Juno at (800) 654-JUNO [654-5866]
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>-
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • I have Acrobat XI and am trying to add pages to a pdf. Tutorials instruct to use Tools, Options or Page Thumbnail to get to a drop down command of Insert Page, does not appear as my choices.

    I have Acrobat XI and am trying to add pages to a pdf. Tutorials instruct me to use Tools, Options or Page Thumbnail to get to a drop down command of Insert Page, but I have few choices in any of those places and Insert Page is not any of them.

    What do you see, then?
    On Thu, Feb 26, 2015 at 4:14 PM, lindab5415 <[email protected]>

Maybe you are looking for