Problem using ebook text for LR4

I have been using the ebook text Classroom in a Book for Lightroom 4.  I am working on two screens:  Classroom in a Book is on the secondary screen; LR4 is on the main screen.  I have gone through 4 of the lessons.  At some point during Lesson 4 I must have done something and I can't figure out how to undo it.  What happens is that Classroom in a Book disappears from the secondary screen when I move the curser from the secondary screen to the main screen where I work on LR4 exercises.  What appears on the secondary screen is either a LR4 photo or a blank LR4 screen that says "No Photo Selected".  I can get back to Classroom in a book if I move the curser to the left margin and click.  But then I have to do this every time I move the curser from the secondary screen to the main screen.  How do I undo this so that Classroom in a Book remains on the secondary screen as I go from one screen to the other screen.  How do I undo this?  Any help would be appreciated. 

I'm not at all familiar with classroom or book, but since no else has responded I'll throw this out there.
Try going to Window -> Secondary Display and trying switching some of the options in there. Hope that helps

Similar Messages

  • Problems using larger text

    I have a few machines using Appleworks and trying to use larger text. When they are typing text with a 48 or 72 pt font the cursor is behind 3 letters. Is there any way to fix this?

    AppleWorks, being an OS 9 application carbonized to run in OS X, doesn't take advantage of a lot of OS X features, one being the display of text. This is not something that got fixed with the 6.2.9 update. Usually turning Fractional Character Widths on in Preferences > General… > Topic: Text will fix the problem. It is not at all unusual for the problem to appear on one Mac & not another, even though they are running the exact same system & AppleWorks version. It even can vary document to document on the same Mac.

  • Problems using multiple joins for search

    I am new to dreamweaver and coding and I am battling to get my head around joining tables and using multiple joins to create a search result recordset.
    I have a the following tables setup;
    Venues table
    venueID
    name
    category (text)
    city
    provinceID (numeric)
    country
    maxcapacity
    Province table
    provinceID
    province (text)
    Category Table
    categoryID
    category (text)
    Max Conference Table
    conferencefacilitiesID
    venueID
    maxcapacity
    I am passing the search $_POST variables via a form and displaying it in a results page.
    I have successfully done the search using only one table the problem results in using multiple joins. I cam not sure of the syntax to use but have successfully created the results page, using the outer join to link the province, category and maxcapacity to the venues table. Not all the venues have conferencing so I think need to use outer join for conferencing.
    I can't seem to access the search and not sure if I can use the WHERE command to set varialbe 'category' = varCategory 
    Below is my code which doesn't work;
    SELECT wp_dbt_venues.venuesID, wp_dbt_venues.name, wp_dbt_venues.category, wp_dbt_venues.province, wp_dbt_venues.city, wp_dbt_province.provinceID, wp_dbt_province.province, wp_dbt_conferencefacilties.venueid, wp_dbt_conferencefacilties.maxcapacity
    FROM ((wp_dbt_venues LEFT OUTER JOIN wp_dbt_province ON wp_dbt_venues.province = wp_dbt_province.provinceID)  LEFT OUTER JOIN wp_dbt_conferencefacilties ON wp_dbt_venues.venuesID = wp_dbt_conferencefacilties.venueid)
    WHERE 'category'=varCategory
    I would like to get on variable working and then expand onto the others like WHERE maxcapacity < varCapacity

    Hi bregent
    Thank you for all the help, below is the code. I have clened it up as best I could as dreamweaver seems to add recordset everytime I edit it. I then have to delete the old code. It also seems adds a totalRows variable and moves one of the runtime variables to the totalRows variable. Its all very confusing but its working.
    Results Page
    <?php require_once('Connections/tova.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
       $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    if (isset($_POST['delegates'])) {
      $varDel_results = $_POST['delegates'];
    $varProv_results = "-1";
    if (isset($_POST['province'])) {
      $varProv_results = $_POST['province'];
    $varCat_results = "-1";
    if (isset($_POST['category'])) {
      $varCat_results = $_POST['category'];
    mysql_select_db($database_tova, $tova);
    $query_results = sprintf("SELECT wp_dbt_venues.venuesID, wp_dbt_venues.name, wp_dbt_venues.category, wp_dbt_venues.province, wp_dbt_venues.city, wp_dbt_province.provinceID, wp_dbt_province.province, wp_dbt_conferencefacilties.venueid, wp_dbt_conferencefacilties.maxcapacity FROM ((wp_dbt_venues LEFT OUTER JOIN wp_dbt_province ON wp_dbt_venues.province = wp_dbt_province.provinceID)  LEFT OUTER JOIN wp_dbt_conferencefacilties ON wp_dbt_venues.venuesID = wp_dbt_conferencefacilties.venueid) WHERE wp_dbt_venues.category = %s AND wp_dbt_venues.province = %s AND wp_dbt_conferencefacilties.maxcapacity < %s", GetSQLValueString($varCat_results, "text"),GetSQLValueString($varProv_results, "int"),GetSQLValueString($varDel_results, "int"));
    $results = mysql_query($query_results, $tova) or die(mysql_error());
    $row_results = mysql_fetch_assoc($results);
    $totalRows_results = mysql_num_rows($results);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <p>Search Results</p>
    <table width="200" border="1">
      <tr>
        <td> </td>
        <td>Name</td>
        <td>Category</td>
        <td>City</td>
        <td>Province</td>
        <td>Delegates</td>
      </tr>
      <?php do { ?>
        <tr>
          <td><?php echo $row_results['venuesID']; ?></td>
          <td><?php echo $row_results['name']; ?></td>
          <td><?php echo $row_results['category']; ?></td>
          <td><?php echo $row_results['city']; ?></td>
          <td><?php echo $row_results['province']; ?></td>
          <td><?php echo $row_results['maxcapacity']; ?></td>
        </tr>
        <?php } while ($row_results = mysql_fetch_assoc($results)); ?>
    </table>
    <p> </p>
    </body>
    </html>
    <?php mysql_free_result($results);
    ?>
    Search Page
    <?php require_once('Connections/tova.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    mysql_select_db($database_tova, $tova);
    $query_category = "SELECT category FROM wp_dbt_categories ORDER BY category ASC";
    $category = mysql_query($query_category, $tova) or die(mysql_error());
    $row_category = mysql_fetch_assoc($category);
    $totalRows_category = mysql_num_rows($category);
    mysql_select_db($database_tova, $tova);
    $query_province = "SELECT * FROM wp_dbt_province ORDER BY province ASC";
    $province = mysql_query($query_province, $tova) or die(mysql_error());
    $row_province = mysql_fetch_assoc($province);
    $totalRows_province = mysql_num_rows($province);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Search</title>
    </head>
    <body>
    <p><strong>Advanced Search</strong></p>
    <form action="results.php" method="post" name="form1" target="_blank" id="form1">
      <p>
        <label>Category
          <select name="category" id="category">
            <?php
    do { 
    ?>
            <option value="<?php echo $row_category['category']?>"<?php if (!(strcmp($row_category['category'], $row_category['category']))) {echo "selected=\"selected\"";} ?>><?php echo $row_category['category']?></option>
            <?php
    } while ($row_category = mysql_fetch_assoc($category));
      $rows = mysql_num_rows($category);
      if($rows > 0) {
          mysql_data_seek($category, 0);
                $row_category = mysql_fetch_assoc($category);
    ?>
          </select>
        </label>
      </p>
      <p>
        <label>Province
          <select name="province" id="province">
            <?php
    do { 
    ?>
            <option value="<?php echo $row_province['provinceID']?>"<?php if (!(strcmp($row_province['provinceID'], $row_province['provinceID']))) {echo "selected=\"selected\"";} ?>><?php echo $row_province['province']?></option>
            <?php
    } while ($row_province = mysql_fetch_assoc($province));
      $rows = mysql_num_rows($province);
      if($rows > 0) {
          mysql_data_seek($province, 0);
                $row_province = mysql_fetch_assoc($province);
    ?>
          </select>
        </label>
      </p>
      <p>
        <label>Delegates
          <input name="delegates" type="text" id="delegates" value="" />
        </label>
      </p>
      <p>
        <label>
          <input type="checkbox" name="Facilities" value="golf" id="Facilities_0" />
          Golf</label>
        <br />
        <label>
          <input type="checkbox" name="Facilities" value="game" id="Facilities_1" />
          Game</label>
        <br />
      </p>
      <p>
        <label>Search
          <input type="submit" name="submit" id="submit" value="Submit" />
        </label>
      </p>
    </form>
    <p> </p>
    </body>
    </html>
    <?php
    mysql_free_result($category);
    mysql_free_result($province);
    ?>

  • Problems using - EPP RTK for Java

    Hello, I'm having problems using the EPP RTK for Java, I've got the message below:
    java.io.IOException: No ssl props location specified
         at com.tucows.oxrs.epp0402.rtk.transport.EPPTransportTCPTLS.connect(EPPTransportTCPTLS.java:116)
         at br.com.redenetworks.temp.Temp.<init>(Temp.java:21)
         at br.com.redenetworks.temp.Temp.main(Temp.java:35)
    Please, someone could help me?
    Thanks a lot,
    F�bio Kazahaya.

    Como vc deve saber eu virei Gerente de Copyright e Propriedade Intellectual do setor RBS da empresa.
    Eu encontrei esse artigo hoje e estou sendo for�ado a denunciar essas informa��es por quebra de copyright da prpriedade intellectual da empresa.
    Eu te conhe�o como um funcionario da IBM e estou muito desapontado
    Aguarde a IBM entrar em contato contigo.
    Abra�os

  • Using Oracle Text for searching with UCM 10g

    I am using Oracle text with UCM 10gR3 and Site Studio 10gR4 and I am trying to sort the search results by relevancy and to also include a snippet of the retrieved document. I have the fields that the SS_GET_SEARCH_RESULTS service returns but the relevancy score is always equals 5 and the snippet contains characters such as &lt; idcnull, /p, etc., which you can see are XML/HTML/UCM tags but which result sin even more strangeness in the snippet if I try to remove them programmatically.
    I have read the Oracle Text documentation and there appear to be ways you can configure Oracle Text but I am not clear at all on what I can do from UCM. It looks like the configuration is either done in database tables or in the query itself, neither of which are readily configurable to me.
    Is anyone experienced in this or know of any documentation this might help?
    Bill

    Hi
    If I remember correctly then this issue was seen with an older version of OTS component and Core Update patch / bundle . Upgrade the UCM instance with the latest CS10gr35 update bundle patchset 6907073 and also upgrade OTS component from the same patchset .
    Let me know how it goes after this .
    Thanks
    Srinath

  • Problem using application client for local stateful session bean

    Hi,
    I have deployed a local stateful session bean in Sun J2EE 1.4 application server.
    On running the applclient for the stateful session bean application client i get the following error:
    Warning: ACC006: No application client descriptor defined for: [null]
    cant we use application client for local stateful session beans. becoz the application runs smoothly when i changed the stateful sesion bean to remote.

    Hi,
    No, an ejb that exposes a local view can only be accessed by an ejb or web component packaged within the same application. Parameters and return values for invocations through the ejb local view are passed by reference instead of by value. That can't work for an application client since it's running in a separate JVM.
    --ken                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Problems understanding open text for access, please help

    Hi all,
    I'm experiencing some problems with this script, and I think knowing what the error is will help me a lot to understand better how applescript handles access to files.
    When i launch this script it tells me somethihng like "document some object has not been opened" (could be slightly different in english).
    So, i guess is a problem with openening and closing, but as you can see i open and close the doc, so I shouldn't encounter this problem. Do I?
    Thanks for any tip!
    set Report to "myfile.txt"
    -- in case previously not closed I'll close again
    try
      close access Report
    end try
    set the_file to (open for access Report with write permission)
    write return to the_file starting at eof
    write "test" to the_file
    write return to the_file
    write return to the_file
    close access the_file
    repeat with numero from 1 to 3
      write numero to the_file starting at eof
      write return to the_file
      write return to the_file
      close access the_file
    end repeat

    Each time your application is run the files associated with it will also be released, so all you need to do is make sure that each open is balanced with a close.  This can be done easiest by using a handler that has been tested, so you don't have to worry about leaving something out elsewhere in your script.  For example:
    on run -- example
              set report to ((path to desktop) as text) & "myFile.txt"
      write_toFile_("testing one" & return, report)
      write_toFile_("testing two, three" & return, report)
      write_toFile_("testing again" & return, report)
    end run
    on write_toFile_(someThing, someFile)
      try
        set theOpenFile to (open for access someFile with write permission)
        write someThing to theOpenFile starting at eof
        close access theOpenFile
      on error -- make sure file is closed on any error
        try
          close access theOpenFile
        end try
      end try
    end write_toFile_

  • Problem using SVG text in FLASH --ViceVersa

    hi all,
    I had been developing an application to read SVG files in to
    flash.....i am successful in reading shapes,,with the path's....but
    the biggest problem is with the "SVG text".......the positions of
    text with respect to FLASH and SVG differs completely.....
    As far as i know the origin differs from flash to
    SVG.....Flash has it's left top as origin ....SVG has lower left as
    origin....
    when i scale or rotate the flash text ....if i need to
    convert those in to SVG text..the problem arises....because the
    SCALING and ROTATION acts very differently in SVG...when compared
    to FLASH
    iam struck here....pls anyone help me to find a
    solution......
    THANKS in ADAVNCE !!!!!!

    Thanks for answering
    So you have IE8 and the hardware acceleration was able to be UNchecked and FP(Flash Player) is working properly with IE.
    In IE flash works fine with any settings.
    When I unchecked "Hardware acceleration" checbox in IE it also became unchecked in opera, but nothing changed in opera's behavior.
    When you don't use the Aero it's displayed correctly but the settings do not work. What settings are you referring to?
    It's about flash settings in Opera
    With aero: http://img443.imageshack.us/i/settingsh.png/
    Without aero: http://img816.imageshack.us/i/settingswoaero.png/
    In both cases the settings dialog is displayed like in the screenshots above, but when I click on checkbox/tabs/'close' button in it nothing happens. I can't change any settings or close it (dialog disappers only after reloading page)
    Just to sum up everything mentioned above:
    - In IE flash works fine regardless of any settings
    - In Opera text is displayed wrong when using windows aero, and without aero theme it's displayed correct
    - I didn't manage to make settings dialog work in Opera
    - When I change some flash settings in IE, they are also changed in Opera
    Now Flash Player works thru the browser, do you have perhaps have an addon that is conflicting? What Anti-Virus do you have Installed? Any addons of that?
    I have 7 extensions installed in Opera, I've disabled all of them, but nothing changed.
    I use Kaspersky Internet Security 2011, disabling it also gives nothing.

  • Using Oracle Text for Text Mining

    Hi all !
    I have 30000 text documents stored in a table and I want to construct a "dictionnary" that contains all the terms include in those documents. I will use this dictionnary to classify my documents with the text mining solutions of Oracle.
    I created an index with a multi datastore, specific lexer, stoplist and wordlist and it creates well my dictionnary. The problem is that I would like to add some other tokens containing more than a word. I wonder how to use the index created : I tried to work on the table $I created for the index but it's not really successful. So I thought about 2 solutions :
    - work on the index with insert, delete and synchronise operations
    - find a way to insert the additionnal tokens (which corresponds to pattern) during the indexing operation
    Can you help me ?
    Laetitia

    Hi,
    Check out a thesaurus (enter your phrases here) and see if it will do what you need:
    http://download-west.oracle.com/docs/cd/B19306_01/text.102/b14217/cthes.htm#i1006324
    Don't modify the $I table as a general rule (or any system-generated table).
    Thanks,
    Ron

  • Problem regarding Selection Text for a Variable declared in ABAP

    Hello Experts,
    I am new to ABAP development. I have declared a variable in ABAP..Then i went to GOTO>Text Elements> Selection texts.
    Then when i am selecting a date to have dictionary ref, then the text part is changed to "Date in Format YYYYMMSS in 8 C", then i can't customised it any more. But i want to display the text as "START DATE"..but while running. it's displaying "DATE" only.... How i can get rid of this situation?
    Another problem : the limitations for th text in selection text is upto 33 charcaters by default..How can i change that so that i can accomodate as many characters i want.
    Please help...I got stuck here for long time
    Thanks
    ANUPAM

    Hi,
    In the selection texts, don't use the check box to use the dictionary reference. So that you can declare your own text here.
    If any text symbol is already declared and now if you want to increase the text, by default the maximum length is assigned.
    So simply delete and insert the text symbol again. It will work.
    For the selection texts, if you want to use more length, then use as below.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS pc_check AS CHECKBOX.
    SELECTION-SCREEN COMMENT 4(60) text-020.
    SELECTION-SCREEN END OF LINE.
    Here the text-020 will come in the selection screen for the above check box.
    Regards,
    Nangunoori.

  • Problems using unixODBC Driver for 64-bit Linux

    Good morning
    We are incurring a problem with the unixODBC Driver via Oracle Heterogeneous Services for connecting from a 64-bit SUSE Linux Server to a Windows PostgreSQL database (8.2). Oracle is 11.2.0.3. We are receiving an error when retrieving SMALLINT data from PostGreSQL. This should "automagically" convert to NUMBER(5) in Oracle but we are receiving a conversion error.
    Here is the text of the HS Trace file. Any help in diagnosing this would be much appreciated.
    Oracle Corporation --- MONDAY DEC 17 2012 17:14:36.779
    Heterogeneous Agent Release
    11.2.0.3.0
    Oracle Corporation --- MONDAY DEC 17 2012 17:14:36.778
    Version 11.2.0.3.0
    Entered hgogprd
    HOSGIP for "HS_FDS_TRACE_LEVEL" returned "DEBUG"
    Entered hgosdip
    HOSGIP returned value of "50" for HS_OPEN_CURSORS
    setting HS_FDS_RECOVERY_ACCOUNT to default of "RECOVER"
    setting HS_FDS_RECOVERY_PWD to default value
    setting HS_FDS_TRANSACTION_LOG to default of HS_TRANSACTION_LOG
    HOSGIP returned value of "0" for HS_IDLE_TIMEOUT
    setting HS_FDS_TRANSACTION_ISOLATION to default of "READ_COMMITTED"
    setting HS_NLS_NCHAR to default of "AL32UTF8"
    setting HS_FDS_TIMESTAMP_MAPPING to default of "DATE"
    setting HS_FDS_DATE_MAPPING to default of "DATE"
    setting HS_RPC_FETCH_REBLOCKING to default of "ON"
    HOSGIP returned value of "100" for HS_FDS_FETCH_ROWS
    setting HS_FDS_RESULTSET_SUPPORT to default of "FALSE"
    HOSGIP returned value of "TRUE" for HS_FDS_RSET_RETURN_ROWCOUNT
    setting HS_FDS_PROC_IS_FUNC to default of "FALSE"
    setting HS_FDS_MAP_NCHAR to default of "TRUE"
    setting HS_NLS_DATE_FORMAT to default of "YYYY-MM-DD HH24:MI:SS"
    setting HS_FDS_REPORT_REAL_AS_DOUBLE to default of "FALSE"
    setting HS_LONG_PIECE_TRANSFER_SIZE to default of "65536"
    setting HS_SQL_HANDLE_STMT_REUSE to default of "FALSE"
    setting HS_FDS_QUERY_DRIVER to default of "TRUE"
    setting HS_FDS_SUPPORT_STATISTICS to default of "FALSE"
    setting HS_FDS_QUOTE_IDENTIFIER to default of "TRUE"
    setting HS_KEEP_REMOTE_COLUMN_SIZE to default of "OFF"
    setting HS_FDS_GRAPHIC_TO_MBCS to default of "FALSE"
    setting HS_FDS_MBCS_TO_GRAPHIC to default of "FALSE"
    HOSGIP returned value of "64" for HS_FDS_SQLLEN_INTERPRETATION
    setting HS_CALL_NAME_ISP to "gtw$:SQLTables;gtw$:SQLColumns;gtw$:SQLPrimaryKeys;gtw$:SQLForeignKeys;gtw$:SQLProcedures;gtw$:SQLStatistics;gtw$:SQLGetInfo"
    setting HS_FDS_DELAYED_OPEN to default of "TRUE"
    setting HS_FDS_WORKAROUNDS to default of "0"
    Exiting hgosdip, rc=0
    ORACLE_SID is "dev"
    Product-Info:
    Port Rls/Upd:3/0 PrdStat:0
    Agent:Oracle Database Gateway for ODBC
    Facility:hsa
    Class:ODBC, ClassVsn:11.2.0.3.0_0011, Instance:dev
    Exiting hgogprd, rc=0
    Entered hgoinit
    HOCXU_COMP_CSET=1
    HOCXU_DRV_CSET=178
    HOCXU_DRV_NCHAR=873
    HOCXU_DB_CSET=873
    HS_LANGUAGE is american_america.we8mswin1252
    LANG=en_US.UTF-8
    HOCXU_SEM_VER=112000
    HOSGIP for "HS_FDS_REMOTE_DB_CHARSET" returned "we8mswin1252"
    Entered hgolofn at 2012/12/17-17:14:36
    HOSGIP for "HS_FDS_SHAREABLE_NAME" returned "/usr/lib64/psqlodbcw.so"
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f9530
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f4e70
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f8110
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f4f30
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f6d20
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5610
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f98e0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5790
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5880
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f9b20
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5980
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5a60
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f9de0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5b20
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f7370
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5d80
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5e00
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5f10
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5fa0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451fa160
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451fa130
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f97c0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f4f60
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f52e0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5530
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f53a0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5680
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f6eb0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f9ec0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f9bf0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f9c60
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f9c90
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f9d40
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5bc0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f9f60
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5cd0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f5e80
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f74f0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f77a0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f7af0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451fa020
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451fa280
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451fa0b0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f63e0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Entered hgolofns at 2012/12/17-17:14:36
    symbol_peflctx=0x451f66d0
    hoaerr:0
    Exiting hgolofns at 2012/12/17-17:14:36
    Exiting hgolofn, rc=0 at 2012/12/17-17:14:36
    HOSGIP for "HS_OPEN_CURSORS" returned "50"
    HOSGIP for "HS_FDS_FETCH_ROWS" returned "100"
    HOSGIP for "HS_LONG_PIECE_TRANSFER_SIZE" returned "65536"
    HOSGIP for "HS_NLS_NUMERIC_CHARACTER" returned ".,"
    HOSGIP for "HS_KEEP_REMOTE_COLUMN_SIZE" returned "OFF"
    HOSGIP for "HS_FDS_DELAYED_OPEN" returned "TRUE"
    HOSGIP for "HS_FDS_WORKAROUNDS" returned "0"
    HOSGIP for "HS_FDS_MBCS_TO_GRAPHIC" returned "FALSE"
    HOSGIP for "HS_FDS_GRAPHIC_TO_MBCS" returned "FALSE"
    treat_SQLLEN_as_compiled = 1
    Exiting hgoinit, rc=0 at 2012/12/17-17:14:36
    Entered hgolgon at 2012/12/17-17:14:36
    reco:0, name:onstar, tflag:0
    Entered hgosuec at 2012/12/17-17:14:36
    Exiting hgosuec, rc=0 at 2012/12/17-17:14:36
    HOSGIP for "HS_FDS_RECOVERY_ACCOUNT" returned "RECOVER"
    HOSGIP for "HS_FDS_TRANSACTION_LOG" returned "HS_TRANSACTION_LOG"
    HOSGIP for "HS_FDS_TIMESTAMP_MAPPING" returned "DATE"
    HOSGIP for "HS_FDS_DATE_MAPPING" returned "DATE"
    HOSGIP for "HS_FDS_MAP_NCHAR" returned "TRUE"
    HOSGIP for "HS_FDS_RESULTSET_SUPPORT" returned "FALSE"
    HOSGIP for "HS_FDS_RSET_RETURN_ROWCOUNT" returned "TRUE"
    HOSGIP for "HS_FDS_PROC_IS_FUNC" returned "FALSE"
    HOSGIP for "HS_FDS_REPORT_REAL_AS_DOUBLE" returned "FALSE"
    using onstar as default value for "HS_FDS_DEFAULT_OWNER"
    HOSGIP for "HS_SQL_HANDLE_STMT_REUSE" returned "FALSE"
    Entered hgocont at 2012/12/17-17:14:36
    HS_FDS_CONNECT_INFO = "PecanStreetDB"
    RC=-1 from HOSGIP for "HS_FDS_CONNECT_STRING"
    Entered hgogenconstr at 2012/12/17-17:14:36
    dsn:PecanStreetDB, name:onstar
    optn:
    Entered hgocip at 2012/12/17-17:14:36
    dsn:PecanStreetDB
    Exiting hgocip, rc=0 at 2012/12/17-17:14:36
    Exiting hgogenconstr, rc=0 at 2012/12/17-17:14:36
    Entered hgolosf at 2012/12/17-17:14:37
    Exiting hgolosf, rc=0 at 2012/12/17-17:14:37
    DriverName:psqlodbcw.so, DriverVer:08.03.0200
    DBMS Name:PostgreSQL, DBMS Version:PostgreSQL 8.2.15 (Greenplum Database 4.1.1.1 build 1 Community Edition) on x86_64-unknown-linux-gnu, compiled by GCC gcc (GCC)
    Exiting hgocont, rc=0 at 2012/12/17-17:14:37
    SQLGetInfo returns Y for SQL_CATALOG_NAME
    SQLGetInfo returns 0 for SQL_MAX_CATALOG_NAME_LEN
    Exiting hgolgon, rc=0 at 2012/12/17-17:14:37
    Entered hgoulcp at 2012/12/17-17:14:37
    Entered hgowlst at 2012/12/17-17:14:37
    Exiting hgowlst, rc=0 at 2012/12/17-17:14:37
    SQLGetInfo returns 0x1d for SQL_OWNER_USAGE
    TXN Capable:2, Isolation Option:0xa
    SQLGetInfo returns 64 for SQL_MAX_SCHEMA_NAME_LEN
    SQLGetInfo returns 64 for SQL_MAX_TABLE_NAME_LEN
    SQLGetInfo returns 0 for SQL_MAX_PROCEDURE_NAME_LEN
    HOSGIP returned value of "TRUE" for HS_FDS_QUOTE_IDENTIFIER
    SQLGetInfo returns " (0x22) for SQL_IDENTIFIER_QUOTE_CHAR
    2 instance capabilities will be uploaded
    capno:1989, context:0x00000000, add-info: 0
    capno:1992, context:0x0001ffff, add-info: 0
    Exiting hgoulcp, rc=0 at 2012/12/17-17:14:37
    Entered hgouldt at 2012/12/17-17:14:37
    NO instance DD translations were uploaded
    Exiting hgouldt, rc=0 at 2012/12/17-17:14:37
    Entered hgobegn at 2012/12/17-17:14:37
    tflag:0 , initial:1
    hoi:0xcca42008, ttid (len 27) is ...
    00: 534D5254 47524444 2E306635 35343862 [SMRTGRDD.0f5548b]
    10: 352E392E 392E3732 323038 [5.9.9.72208]
    tbid (len 24) is ...
    00: 534D5254 47524444 5B392E39 2E373232 [SMRTGRDD[9.9.722]
    10: 30385D5B 312E345D [08][1.4]]
    Exiting hgobegn, rc=0 at 2012/12/17-17:14:38
    Entered hgodtab at 2012/12/17-17:14:38
    count:1
    table: dev.onstar_view
    Allocate hoada[0] @ 0x7794d0
    Entered hgopcda at 2012/12/17-17:14:38
    Column:1(dataid): dtype:5 (SMALLINT), prc/scl:5/0, nullbl:1, octet:0, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2012/12/17-17:14:38
    Entered hgopcda at 2012/12/17-17:14:38
    Column:2(timestamp_localtime): dtype:93 (TIMESTAMP), prc/scl:19/0, nullbl:1, octet:0, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2012/12/17-17:14:38
    Entered hgopcda at 2012/12/17-17:14:38
    Column:3(use): dtype:2 (NUMERIC), prc/scl:28/6, nullbl:1, octet:0, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2012/12/17-17:14:38
    Entered hgopcda at 2012/12/17-17:14:38
    Column:4(gen): dtype:2 (NUMERIC), prc/scl:28/6, nullbl:1, octet:0, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2012/12/17-17:14:38
    Entered hgopcda at 2012/12/17-17:14:38
    Column:5(grid): dtype:2 (NUMERIC), prc/scl:28/6, nullbl:1, octet:0, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2012/12/17-17:14:38
    Entered hgopcda at 2012/12/17-17:14:38
    Column:6(air): dtype:2 (NUMERIC), prc/scl:28/6, nullbl:1, octet:0, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2012/12/17-17:14:38
    Entered hgopcda at 2012/12/17-17:14:38
    Column:7(furnace): dtype:2 (NUMERIC), prc/scl:28/6, nullbl:1, octet:0, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2012/12/17-17:14:38
    Entered hgopcda at 2012/12/17-17:14:38
    Column:8(car): dtype:2 (NUMERIC), prc/scl:28/6, nullbl:1, octet:0, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2012/12/17-17:14:38
    The hoada for table dev.onstar_view follows...
    hgodtab, line 1092: Printing hoada @ 0x7794d0
    MAX:8, ACTUAL:8, BRC:1, WHT=6 (TABLE_DESCRIBE)
    DTY NULL-OK LEN MAXBUFLEN PR/SC CST IND MOD NAME
    5 SMALLINT Y 2 2 0/ 0 0 0 0 dataid
    91 DATE Y 16 16 0/ 0 0 0 0 timestamp_localtime
    3 DECIMAL Y 31 31 28/ 6 0 0 0 use
    3 DECIMAL Y 31 31 28/ 6 0 0 0 gen
    3 DECIMAL Y 31 31 28/ 6 0 0 0 grid
    3 DECIMAL Y 31 31 28/ 6 0 0 0 air
    3 DECIMAL Y 31 31 28/ 6 0 0 0 furnace
    3 DECIMAL Y 31 31 28/ 6 0 0 0 car
    Exiting hgodtab, rc=0 at 2012/12/17-17:14:38
    Entered hgodafr, cursor id 0 at 2012/12/17-17:14:38
    Free hoada @ 0x7794d0
    Exiting hgodafr, rc=0 at 2012/12/17-17:14:38
    Entered hgopars, cursor id 1 at 2012/12/17-17:14:38
    type:0
    SQL text from hgopars, id=1, len=40 ...
    00: 53454C45 43542022 64617461 69642220 [SELECT "dataid" ]
    10: 46524F4D 20226465 76222E22 6F6E7374 [FROM "dev"."onst]
    20: 61725F76 69657722 [ar_view"]
    Exiting hgopars, rc=0 at 2012/12/17-17:14:40
    Entered hgoopen, cursor id 1 at 2012/12/17-17:14:40
    hgoopen, line 87: NO hoada to print
    Deferred open until first fetch.
    Exiting hgoopen, rc=0 at 2012/12/17-17:14:40
    Entered hgodscr, cursor id 1 at 2012/12/17-17:14:40
    Allocate hoada @ 0x779478
    Entered hgodscr_process_sellist_description at 2012/12/17-17:14:40
    Entered hgopcda at 2012/12/17-17:14:40
    Column:1(dataid): dtype:5 (SMALLINT), prc/scl:5/0, nullbl:1, octet:0, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2012/12/17-17:14:40
    hgodscr, line 464: Printing hoada @ 0x779478
    MAX:1, ACTUAL:1, BRC:100, WHT=5 (SELECT_LIST)
    DTY NULL-OK LEN MAXBUFLEN PR/SC CST IND MOD NAME
    5 SMALLINT Y 2 2 0/ 0 0 0 0 dataid
    Exiting hgodscr, rc=0 at 2012/12/17-17:14:40
    Entered hgoftch, cursor id 1 at 2012/12/17-17:14:40
    hgoftch, line 133: Printing hoada @ 0x779478
    MAX:1, ACTUAL:1, BRC:100, WHT=5 (SELECT_LIST)
    DTY NULL-OK LEN MAXBUFLEN PR/SC CST IND MOD NAME
    5 SMALLINT Y 2 2 0/ 0 0 0 0 dataid
    Performing delayed open.
    SQLBindCol: column 1, cdatatype: -15, bflsz: 2
    SQLFetch: row: 1, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 1, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 2, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 2, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 3, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 3, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 4, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 4, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 5, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 5, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 6, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 6, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 7, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 7, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 8, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 8, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 9, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 9, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 10, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 10, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 11, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 11, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 12, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 12, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 13, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 13, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 14, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 14, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 15, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 15, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 16, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 16, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 17, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 17, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 18, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 18, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 19, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 19, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 20, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 20, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 21, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 21, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 22, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 22, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 23, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 23, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 24, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 24, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 25, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 25, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 26, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 26, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 27, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 27, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 28, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 28, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 29, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 29, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 30, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 30, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 31, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 31, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 32, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 32, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 33, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 33, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 34, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 34, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 35, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 35, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 36, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 36, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 37, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 37, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 38, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 38, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 39, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 39, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 40, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 40, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 41, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 41, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 42, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 42, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 43, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 43, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 44, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 44, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 45, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 45, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 46, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 46, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 47, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 47, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 48, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 48, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 49, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 49, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 50, column 1, bflsz: 2, bflar: 2
    SQLFetch: row: 50, column 1, bflsz: 2, bflar: 2, (bfl: 2, mbl: 2)
    SQLFetch: row: 51, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 51, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 52, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 52, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 53, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 53, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 54, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 54, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 55, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 55, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 56, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 56, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 57, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 57, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 58, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 58, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 59, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 59, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 60, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 60, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 61, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 61, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 62, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 62, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 63, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 63, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 64, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 64, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 65, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 65, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 66, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 66, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 67, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 67, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 68, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 68, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 69, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 69, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 70, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 70, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 71, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 71, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 72, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 72, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 73, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 73, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 74, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 74, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 75, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 75, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 76, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 76, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 77, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 77, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 78, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 78, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 79, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 79, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 80, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 80, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 81, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 81, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 82, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 82, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 83, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 83, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 84, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 84, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 85, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 85, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 86, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 86, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 87, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 87, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 88, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 88, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 89, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 89, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 90, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 90, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 91, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 91, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 92, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 92, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 93, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 93, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 94, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 94, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 95, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 95, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 96, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 96, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 97, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 97, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 98, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 98, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 99, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 99, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    SQLFetch: row: 100, column 1, bflsz: 2, bflar: 0
    SQLFetch: row: 100, column 1, bflsz: 2, bflar: 0, (bfl: 2, mbl: 2)
    100 rows fetched
    Exiting hgoftch, rc=0 at 2012/12/17-17:14:40
    HS Agent received unexpected RPC disconnect
    Network error 1003: NCR-01003: NCRS: Read error.
    Entered hgoroll at 2012/12/17-17:15:36
    tflag:0 , cmt(38):Unexpected EOF from Oracle - Rollback
    hoi:0x756988, ttid (len 27) is ...
    00: 534D5254 47524444 2E306635 35343862 [SMRTGRDD.0f5548b]
    10: 352E392E 392E3732 323038 [5.9.9.72208]
    tbid (len 24) is ...
    00: 534D5254 47524444 5B392E39 2E373232 [SMRTGRDD[9.9.722]
    10: 30385D5B 312E345D [08][1.4]]
    Entered hgocpctx at 2012/12/17-17:15:36
    Exiting hgocpctx, rc=0 at 2012/12/17-17:15:36
    Exiting hgoroll, rc=0 at 2012/12/17-17:15:36
    Entered hgodafr, cursor id 1 at 2012/12/17-17:15:36
    Free hoada @ 0x779478
    Exiting hgodafr, rc=0 at 2012/12/17-17:15:36
    Entered hgolgof at 2012/12/17-17:15:36
    tflag:0
    Exiting hgolgof, rc=0 at 2012/12/17-17:15:36
    Entered hgoexit at 2012/12/17-17:15:36
    Exiting hgoexit, rc=0

    Update
    Changed the support flag to 32 bit and all now works.
    SPK

  • Mutating Error problem using audit trigger for UPDATE

    I need to add 4 columns to all of my tables named:
    INSERT_BY
    INSERT_DATA
    UPDATE_BY
    UPDATE_DATE
    I intend these to act as "inserted" and "last updated" audit trails within the table, as opposed to creating a new table and storing the audit information there. The insert columns appear to be easy, as I can just use a DEFAULT clause within the definition of the table. However when I attempted to write a (my first) trigger then I run into problems with mutating tables. Presumebly because I am attempting to change the table while the trigger is referencing it.
    create or replace trigger test_audit
    after update on dictionary
    begin
    update dictionary
    set update_by = user, update_date = sysdate
    where entity_id = :old.entity_id;
    end;
    I thought I could maybe get around this by calling a procedure from inside the trigger. Something like:
    create or replace procedure test_audit(vColumn in varchar2, vData in varchar2, vTable in varchar2) is
    -- vTable is table name
    -- vColumn is PK of table
    -- vData is value of PK in current row
    begin
    update vTable
    set update_by = user, update_date = sysdate
    where vColumn = vData;
    commit;
    end test_audit;
    However I cannot use variable for table names. Will this mean I have to create a procedure for each table/trigger? Is there a way to reference the table name as a variable and keep this a generic procedure? Or is there an easier way to record the auditing UPDATE information for each changed row within the original table?
    Many thanks in advance......

    Will
    this mean I have to create a procedure for each
    table/trigger? I think you've answered that question already.
    Is there a way to reference the table
    name as a variable and keep this a generic procedure?Not that I'm aware of.
    Or is there an easier way to record the auditing
    UPDATE information for each changed row within the
    original table?Well, there's the AUDIT feature.
    C.

  • Problems using different tables for base class and derived class

    I have a class named SuperProject and another class Project derived from
    it. If I let SchemaTool generate the tables without specifying a "table"
    extension, I get a single TABLE with all the columns from both classes and
    everything works fine. But if I specify a "table" for the derived class,
    SchemaTool generates the derived class with just one column (corresponds
    to the attribute in derived class). Also it causes problems in using the
    Project class in collection attributes.
    JDO file:
    <jdo>
    <package name="jdo">
    <class name="Project" identity-type="application"
    persistence-capable-superclass="SuperProject">
    <extension vendor-name="kodo" key="table" value="PROJECT"/>
    </class>
    <class name="SuperProject" identity-type="application"
    objectid-class="ProjectId">
    <field name="id" primary-key="true"/>
    </class>
    </package>
    </jdo>
    java classes:
    public class Project extends SuperProject
    String projectSpecific
    public class SuperProject
    BigDecimal id;
    String name;
    tables generated by SchemaTool:
    TABLE SUPERPROJECTSX (IDX, JDOCLASSX, JDOLOCKX, NAMEX);
    TABLE PROJECT(PROJECTSPECIFICX)
    Thanks,
    Justine Thomas

    Justine,
    This will be resolved in 2.3.4, to be released later this evening.
    -Patrick
    In article <aofo2q$mih$[email protected]>, Justine Thomas wrote:
    I have a class named SuperProject and another class Project derived from
    it. If I let SchemaTool generate the tables without specifying a "table"
    extension, I get a single TABLE with all the columns from both classes and
    everything works fine. But if I specify a "table" for the derived class,
    SchemaTool generates the derived class with just one column (corresponds
    to the attribute in derived class). Also it causes problems in using the
    Project class in collection attributes.
    JDO file:
    <jdo>
    <package name="jdo">
    <class name="Project" identity-type="application"
    persistence-capable-superclass="SuperProject">
    <extension vendor-name="kodo" key="table" value="PROJECT"/>
    </class>
    <class name="SuperProject" identity-type="application"
    objectid-class="ProjectId">
    <field name="id" primary-key="true"/>
    </class>
    </package>
    </jdo>
    java classes:
    public class Project extends SuperProject
    String projectSpecific
    public class SuperProject
    BigDecimal id;
    String name;
    tables generated by SchemaTool:
    TABLE SUPERPROJECTSX (IDX, JDOCLASSX, JDOLOCKX, NAMEX);
    TABLE PROJECT(PROJECTSPECIFICX)
    Thanks,
    Justine Thomas
    Patrick Linskey [email protected]
    SolarMetric Inc. http://www.solarmetric.com

  • Problem using an image for a background

    Hi,
    My environment is Crystal Report 2008 SP2
    I am adding an image for a table header background in my report. The image is of type png.
    I use insert picture when I add it to the report. Up to there everything works fine.
    My problem happens when I try to draw lines on top of the image.
    All the lines that I draw stay underneath the image. Even though I move the image to the back and move the lines to the top.
    Any idea why?
    Is there something that I should do differently if I want to use an image as background?
    Thanks

    Please re-post if this is still an issue or purchase a case and have a dedicated support engineer work with you directly:
    http://store.businessobjects.com/store/bobjamer/DisplayProductByTypePage&parentCategoryID=&categoryID=11522300?resid=-Z5tUwoHAiwAAA8@NLgAAAAS&rests=1254701640551

  • Problems using Dragon Dictate for Mac.

    I used Dragon Naturally Speaking for years on my PC.  Switched to an IMac.  Dragon for Mac leaves a lot to be desired - training, recognizing, editing.  Any suggestions about how to improve performance or other voice recognition software for Mac users?  I dictate a lot of reports using MS Word.

    First of all I have no expertise in installing programs if they are problematic, I can only pass on my experience which relates to trying to purchase and install an Upgrade from MacSpeech Dictate 1.5 to Dragon Dictate 2.5 and the past experience I have had with MacSpeech, the company before Nuance.
    The 800-number doesn't get you to Technical Support and I think I was hung up on as well.  The wait for technical support was about 10 minutes.  If you are paying for the phone call by the minute that could be costly.
    Technical Support
    781-565-4960
    The tech was patient and his directions were easy to follow.  He logged into my screen using Join Me and if you find that too invasive, it may also be a reason not to continue with Dictate.
    Do I understand that you purchased a physical copy of the program on disk? Was it as an Upgrade that Nuance shipped to you?  And it wouldn't let you register the product?  The other criticism I had of MacSpeech and it seems to have carried on to Nuance was that the matter of accounts and registration accounts can be a forest. 
    The website to register the program is www.macspeech.com/licenses/. (There is another site for registering other Nuance products but it doesn't recognize your account for products that have been registered on the MaSspeech site.).To register the product you will need to set up an account (not an uncommon process) but that account will not be the way you access the download if you purchase the product by digital copy.If you purchase the program as a physical copy, I would suggest you register the product before you start installing but it really shouldn't be necessary because the program will prompt you to register if the install goes well.
    I can't recall which identification they asked for when I called technical services - the product code, the order number, or my registration account but I was prepared with all of them.
    Once you do register a program, the code can be accessed in the future if you keep track of the account and website on which you registered it.  I see there is also an option which downloads the code to your computer but heaven-knows-where it is stored.  On some other programs the code is stored in the application icon menu. My account on the Macspeech registration website stores the codes for 3 programs I have had since Nuance took over from MacSpeech.
    If you have purchased a physical copy and the registration site I listed above won't let you register it, I would call the 800-number which is
    Customer Service
    800-654-1187
    What I was trying to do was purchase the Upgrade of Dragon Dictate 2.5 as the result of an email offer because I was a previous customer of MacSpeech Dictate 1.5.  The website only seemed to offer to send me a physical copy with shipping of either $24 or $30 to Canada. When I decided I wouldn't buy the Upgrade because of the shipping cost, I found that I couldn't remove the item from the shopping cart and eventually couldn't even access the shopping cart.  When I called the 800-number to complain they told me there was a problem on the website which wasn't offering the download which was my preference.  They offered to sell me the digital download over the phone which I could then retrieve from the website www.findmyorder.com with the login which asks for the order number and a password (which I think was assigned when I placed the order, but as I said, registration, download access, etc can be a forest and I was very confused by this time.)
    At the www.findmyorder.com website, there were two files to download, the program for 2.5 and the data disk. When I tried to install the program and the data, the process started going around in circles asking for things over and over again.I wondered what I was doing wrong (a common reaction) so I tried to install the program on another computer.  The install on the second computer was easy and although I hadn't yet registered the product the program prompted me to register it. It also updated to 2.5.1 (although I only am aware of that in retrospect.)  So I went back to the first computer and tried to install again. The same problem happened.  At one point I exceeded the number of downloads which is 5 because I was trying to get rid of downloads that didn't seem to be working.  I called the 800-number and without too much difficulty, the person reset the downloads.  But the same thing happened, with the program asking for the data disk.  That is when I called Tech Support.
    After the tech showed me where to retrieve 2.5.1 from their website (because he said 2.5 was buggy) and I reinstalled the data disk from the www.findmyorder.com website, the install worked well.  BTW I found it hard to understand on the www.findmyorder.com download website which file was which.  I got very confused and ended up not getting the data disk.  The program disk image which is listed second is called Dragon_Dictate_Englishes.2.5.dmg.  The data file listed first is Dragon_English_Data2.5dmg.  You need both files normally but if you are getting the 2.5.1 file, I don't believe you have to have installed 2.5 first.
    In retrospect I may have not understood how to install the two files - the program file and the data file but I can't remember exactly what was happening. By that time I was pretty lost.
    Back to MacSpeech Dictate 1 or 1.5, I assumed that I would have to have this installed on my computer in order to install the Upgrade of Dragon Dictate 2.5. Remember, I was trying to install 2.5 on a new computer. Although I had done this before I tried to purchase the Upgrade 2.5 (because the computer was new and MacSpeech 1.5 hadn't been installed on it yet), I am not sure it was necessary.
    There didn't seem to be any "secret codes" that hadn't to be removed first.  You may be talking about old or corrupted plist files which sometimes interfere with applications.  The tech just told me to drag any 2.5 applications to the trash after we got off the phone, of which by now I had about 5 on the computer.  I have had old versions on a previous computer and they never seemed to interfere with one another. I think I still have iListen 1.0 on a very old computer as well as every fresh version and upgrade.
    I hope this reply wasn't too long and didn't add to the confusion.  As I said in the first message, the criticisms are well founded.  Installing MacSpeech iListen and accessing services has been a minefield from the beginning and it isn't improving.  For someone interested in easy-to-use voice recognition I would suggest the Dragon Dictate app for an iPad or iPod Touch.  Works wonderfully but it has very limited features.
    My husband, who has physical disabilities but until recently could type better than MacSpeech Dictate was working for him and didn't have a computer that would work with MacSpeech Dictate, has been using Dragon Dictate 2.5.1 on his new computer without a microphone for a couple of days.  He believes there is hope, although with past versions he was frustrated after an hour and quit.  One new thing in Dragon Dictate 2.5 is that editing on the keyboard before you finish the document does not mess up further voice input.  He continues to struggle with voice control (a good exercise for the voice) and his tendency to talk as if there he has a secretary taking shorthand.  You really do have to talk to the computer in a conversational way, speaking in full sentences or full phrases if possible, not in separate words.
    From iListen 1.0 I kept saying that voice recognition would work well for everyone.  It has been a long road but I can see on the horizon that it will be available for everyone.  The iPad/iPod app is close.
    Frangelica

Maybe you are looking for

  • Can see thumbnails of open tabs but cannot open them at all

    Firefox upgraded itself on the weekend. I have been visiting blogs through the Bloggers' Quilt Festival, which I'm participating in. I tried to leave comments but on the blogspot and blogger blogs was not able to. This morning I saw a bunch of extra

  • How to Resolve HTTP 500 error in sharepoint 2013 workflow

    Hi guys,              I am new to Sharepoint. I have created a workflow for sending if a document added or edited in a document library. When i added a document i workflow status shows workflow started. But when checked in the internal status of the

  • Is Verizon still selling DSL services these days?

    I am in a new place that used to have slow DSL with Verizon, but it is no longer available when I try to order. I know Verizon won't deploy more FIOS and does offer expensive capped cellular Internet. Landline would be nicer beside very slow dial-up.

  • Fault in area, NW10 London

    I've been without phone and internet for 3 days now, checking my number online gives the message: Sorry, there's a problem with phone services in your area. We're on to it now and hope to have it fixed as soon as possible. Check back later to see how

  • NVIDIA Detonator Driver Performance Database

    The guys at Tweakers Asylum have built a Public nVidia Detonator Driver Performance Database used to store information on the various nVidia Detonator Drivers. They are collecting benchmark information, based on 3DMark2001 SE results for nVidia Deton