Warning: mysql_result(): Unable to jump to row 0 on MySQL result index 7

i am getting the error
Warning: mysql_result(): Unable to jump to row 0 on MySQL
result index 7
please can smoeone tell me where i might be going wrong?
thanks
<?
include("dbconfig.php");
//get reg code
$findstring = trim($_GET[s]);
if ($findstring != "") {
//find reg code in memberslist
$res = mysql_query("SELECT code FROM users WHERE
code='$findstring' LIMIT 1");
if (mysql_num_rows($res) == 1) {
$res = mysql_query("UPDATE users SET code = 'done', password
= 'catanddog' WHERE code='$findstring' LIMIT 1");
//upto here all is ok.
$res = mysql_query( "SELECT email FROM users WHERE
code='$findstring' LIMIT 1" ) or die ( mysql_error() );
// the line above is almost the same as the request near the
top of this code, eccept that it now looks for the email field not
the code field.
$email = mysql_result( $res, 0 ) or die( mysql_error() );
echo('a.'.$email.'.a');
$res = mysql_query("INSERT INTO anothertable (email, field1,
field2) VALUES ('$email', '', '')");
?>
<p>Thank you for completing you registration
process.</p>
<?
} else {
?>
<p>Sorry but this is an illegal action.</p>
<?
mysql_close;
?>
and this is my database entry.
CREATE TABLE `users` (
`code` varchar(32) NOT NULL default '',
`email` varchar(40) NOT NULL default ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- Dumping data for table `users`
INSERT INTO `users` VALUES ('123',
'[email protected]');

shame though :( ... I can live with it ... perhaps you can let me know
when/if there's a fix in the future.There will be no fix forthcoming on our side, because I can say with
99.9% certainty this is not a Kodo bug. We do batching the same way,
using standard JDBC calls, on every database that supports it. The fact
that the driver you're using is the only one with problems strongly
indicates it's a driver bug (you wouldn't believe how common these are;
even commercial DBs like Oracle often fail to implement large portions of
the JDBC spec). We've found a lot of bugs in Postgres drivers in
particular, IIRC.
I recommend you play around with different drivers. First, make
sure you have the very latest 7.3 driver. If you do, downgrade to the
7.2 driver (you can stick with the 7.3 DB version; I seriously doubt it's
a DB bug, and I also doubt the protocols have changed between 7.2 and
7.3, so the old driver should work).
Since it's an open source project, you could also submit the bug to the
JDBC driver authors and they'll probably actually pay attention to it.
You could even try to patch it yourself.

Similar Messages

  • Unable to delete a row in table control

    Hi,
    I'm unable to delete a row in table control.
    I have defined a selection column for my table control but it is not getting value 'X' when i'm selecting a row for deletion.
    Also, when I press enter, some of the columns in table control are getting initialized. I'm passing these values to the internal table along with other columns.
    Please help.
    Regards,
    Manasee
    Message was edited by: Manasee Chandorkar

    hi,
    kindly chk this.
    PROCESS BEFORE OUTPUT.
    MODULE status_9010.
    LOOP WITH CONTROL tab_control.
    MODULE move_data_to_table.
    ENDLOOP.
    PROCESS AFTER INPUT.
    LOOP WITH CONTROL tab_control.
    MODULE move_data_from_table.
    ENDLOOP.
    *& Module move_data_to_table OUTPUT
    This is to move the data from the internal table to the table control
    MODULE move_data_to_table OUTPUT.
    This is to move the data from the internal table to the table control
    zmpets_mode-modecode,zmpets_range-rangeid,zmpets_servfacto-factor are column name of table control
    READ TABLE int_factor INDEX tab_control-current_line.
    IF sy-subrc = 0.
    zmpets_mode-modecode = int_factor-modecode.
    zmpets_range-rangeid = int_factor-rangeid.
    zmpets_servfacto-factor = int_factor-factor.
    ENDIF.
    ENDMODULE. " move_data_to_table OUTPUT
    *& Module move_data_from_table INPUT
    Date is moved from the table control to the Internal Table
    MODULE move_data_from_table INPUT.
    To move the data from the table control to internal table 'INT_FACTOR'.
    int_factor-modecode = zmpets_mode-modecode.
    int_factor-rangeid = zmpets_range-rangeid.
    int_factor-factor = zmpets_servfacto-factor.
    int_factor-chk = line.
    *here if the data is there, it will modify
    MODIFY int_factor INDEX tab_control-current_line.
    IF sy-subrc NE 0. "data not exixting in table control . ie new data, then append it
    APPEND int_factor.
    CLEAR int_factor.
    ENDIF.
    ENDMODULE. " move_data_from_table INPUT
    *delete a line from table control
    MODULE user_command_9010 INPUT.
      CASE sy-ucomm.
    When an entry is deleted, and the entry is removed from the table
    control.
        WHEN 'DELETE'.
          PERFORM f_del_frm_tab_cntrl.
      ENDCASE.
    ENDMODULE.
    FORM f_del_frm_tab_cntrl .
      LOOP AT int_factor WHERE chk = 'X'.
        DELETE int_factor WHERE chk = 'X' .
        CONTINUE.
      ENDLOOP.
      CLEAR int_factor.
    ENDFORM.
    for any clarifiaction pls mail me.
    pls reward points, if this helped u.
    regards,
    anversha.
    [email protected]
    Message was edited by: Anversha s

  • Warning  5002: Unable to connect to the Cache Agent

    Getting the following message when creating a readonly cache group
    Warning 5002: Unable to connect to the Cache Agent for /tmp/cgdsn; check agent status
    Warning 5051: Commit message to Cache Agent failed. Cache Agent must be restarted
    Tried to check the Agent status using
    ttStatus command.
    Daemon pid 5138 port 16001 instance TT
    TimesTen server pid 5143 started on port 16003
    No TimesTen webserver running
    Data store /tmp/cgdsn
    There are 5 connections to the data store
    Data store is in shared mode
    Shared Memory KEY 0x0e000c82 ID 11805
    Type PID Context Connection Name ConnID
    Process 9189 0x00000001001ac390 test 1
    Subdaemon 5140 0x000000010015b380 Worker 2044
    Subdaemon 5140 0x00000001001d5360 Flusher 2045
    Subdaemon 5140 0x00000001001db930 Checkpoint 2046
    Subdaemon 5140 0x0000000100243000 Monitor 2047
    Replication policy : Manual
    Cache agent policy : Manual
    End of report

    I had restarted the cacheagent by using the following command
    Call ttCacheUidPwdSet();
    call ttCacheStart();
    Also tried
    ttAdmin -oraAgentStart -oraAgentUID test -oraAgentPWD test cgdsn to manually start the Agent.
    If I use ttCacheStop() it gives the message the Cache agent has already been stopped.

  • Error 485680 reservation warning(node_join) - Unable to lookup local_only f

    SETUP
    3xT5220
    1xStorageTek 2540 FC RAID
    SC 3.2
    OS 10 Patchlevel 137111-08
    Two of the 3 cluster nodes are directly connected to the RAID.
    Multipathing enabled on all cluster nodes (stmsboot -e).
    PROBLEM
    On the node, which was added to an already established cluster as the third node, that is NOT connected to the RAID, I'm seeing hte following messages:
    Cluster.CCR: [ID 485680 daemon.warning] reservation warning(node_join) - Unable to lookup local_only flag for device dsk/d10.
    Cluster.CCR: [ID 485680 daemon.warning] reservation warning(node_join) - Unable to lookup local_only flag for device dsk/d9
    svc.startd[8]: [ID 652011 daemon.warning] svc:/system/cluster/globaldevices:default: Method "/usr/cluster/lib/svc/method/globaldevices start" failed with exit status 96.
    with exit status 96.
    svc.startd[8]: [ID 748625 daemon.error] system/cluster/globaldevices:default misconfigured: transitioned to maintenance (see 'svcs -xv' for details)
    Cluster.CCR: [ID 916112 daemon.error] /usr/cluster/bin/scgdevs: Filesystem /global/.devices/node@3 is not available in /etc/mnttab.
    # svcs -xv
    svc:/system/cluster/globaldevices:default (Suncluster globaldevices service)
    State: maintenance since January 12, 2009  2:38:26 PM EST
    Reason: Start method exited with $SMF_EXIT_ERR_CONFIG.
       See: http://sun.com/msg/SMF-8000-KS
       See: /var/svc/log/system-cluster-globaldevices:default.log
    Impact: 3 dependent services are not running:
            svc:/system/cluster/mountgfs:default
            svc:/system/cluster/clusterdata:default
            svc:/system/cluster/ql_rgm:default
    svc:/system/cluster/scsymon-srv:default (Sun Cluster SyMON Server Daemon)
    State: maintenance since January 12, 2009  2:38:41 PM EST
    Reason: Start method exited with $SMF_EXIT_ERR_CONFIG.
       See: http://sun.com/msg/SMF-8000-KS
       See: /var/svc/log/system-cluster-scsymon-srv:default.log
    Impact: This service is not running.
    # cat /var/svc/log/system-cluster-globaldevices:default.log
    [ Jan 12 02:37:52 Disabled. ]
    [ Jan 12 02:37:53 Rereading configuration. ]
    [ Jan 12 02:47:55 Rereading configuration. ]
    [ Jan 12 02:48:28 Enabled. ]
    [ Jan 12 02:49:07 Executing start method ("/usr/cluster/lib/svc/method/globaldevices start") ]
    [ Jan 12 02:49:10 Method "start" exited with status 96 ]
    [ Jan 12 06:14:43 Executing start method ("/usr/cluster/lib/svc/method/globaldevices start") ]
    [ Jan 12 06:14:46 Method "start" exited with status 96 ]
    [ Jan 12 09:50:26 Executing start method ("/usr/cluster/lib/svc/method/globaldevices start") ]
    [ Jan 12 09:50:34 Method "start" exited with status 96 ]
    [ Jan 12 13:17:27 Executing start method ("/usr/cluster/lib/svc/method/globaldevices start") ]
    [ Jan 12 13:17:30 Method "start" exited with status 96 ]
    [ Jan 12 14:28:54 Executing start method ("/usr/cluster/lib/svc/method/globaldevices start") ]
    [ Jan 12 14:29:02 Method "start" exited with status 96 ]
    [ Jan 12 14:38:23 Executing start method ("/usr/cluster/lib/svc/method/globaldevices start") ]
    [ Jan 12 14:38:26 Method "start" exited with status 96 ]This prevents my scalable resource group from coming online on the third cluster node.
    From the cluster error message guide:
    +485680 reservation warning(%s) - Unable to lookup local_only flag for device %s.+
    Description: The device fencing program was unable to determine if the specified device is marked as local_only. This device will be treated as a non- local_only device and nodes not within the cluster will be fenced from it.
    Solution: If the device in question is marked marked as local_only and is being used as the boot device or the mirror of a boot device for a node, then that node may be unable to access this device and hence, unable to boot. Contact your authorized Sun service provider to determine whether a workaround or patch is available.
    Any idea what's going on or how to prevent it?

    I have isolated the issue to ssh and the login window. I can use these same administrator credentials to initiate ARD sessions, configure the server via Server admin or WGM, authenticate to perform privileged finder operations.
    restarts do not change anything.
    per a related post, but not identical investigated /var/db/dslocal/nodes/Default/config/ I only had one of the referenced files, not the several hundred those posters seemed to have. I made a backup, and removed it, followed by a restart. There was no effect.
    I opened Server Admin, and turned off ssh, verified that remote login was not checked in System Preferences. Logged out, no effect, restarted again no effect.
    There is no joy with trying Local Administrator.
    This is a clean 10.5.4 Install (Monday, August 3) DNS works per Anthony Rocco's setup instructions and verification methods. DNS was working prior to upgrading to OD Master. Kerberos logins worked properly. I was going through and setting up share points and setting ACLs when I realized I lost access.
    I would take any suggestions people might have...
    thanks,
    Ion

  • Mailbox migration failed: MapiExceptionJetErrorPageNotInitialized: Unable to find table row

    Hi Everyone,
    I'm trying to migrate mailboxes from 2010 -> 2013 and I've com across an odd error.
    I've put my skip limit to 5(for bad files), however this error seems to appear regardless. I'm not a Jets DB expert, but not being able to find a row seems quite serious. Any ideas?
    Data migrated: 1004 MB (1,052,931,906 bytes) 
    Migration rate: 0 B (0 bytes) 
    Error: MigrationPermanentException: Error: MapiExceptionJetErrorPageNotInitialized: Unable to find table row. (hr=0x80004005, ec=-1019) Diagnostic context: ...... Lid: 52176 ClientVersion: 15.0.516.30 Lid: 50032 ServerVersion: 14.3.123.2 Lid: 23226 --- ROP
    Parse Start --- Lid: 27962 ROP: ropGetContentsTable [5] Lid: 27962 ROP: ropSetColumns [18] Lid: 17082 ROP Error: 0xFFFFFC05 Lid: 27489 Lid: 21921 StoreEc: 0xFFFFFC05 Lid: 27962 ROP: ropExtendedError [250] Lid: 1494 ---- Remote Context Beg ---- Lid: 1238 Remote
    Context Overflow Lid: 8756 StoreEc: 0xFFFFFC05 Lid: 58765 StoreEc: 0xFFFFFC05 Lid: 48425 StoreEc: 0xFFFFFC05 Lid: 6995 StoreEc: 0xFFFFFC05 PropTag: 0x67B50102 Lid: 4819 StoreEc: 0xFFFFFC05 Lid: 17692 Lid: 5587 StoreEc: 0xFFFFFC05 PropTag: 0xC1A84B0 Lid: 13300
    StoreEc: 0xFFFFFC05 Lid: 21097 Lid: 39027 dwParam: 0x6BD Lid: 8756 StoreEc: 0xFFFFFC05 Lid: 58765 StoreEc: 0xFFFFFC05 Lid: 48425 StoreEc: 0xFFFFFC05 Lid: 5459 StoreEc: 0xFFFFFC05 PropTag: 0xC1A84B0 Lid: 6483 StoreEc: 0xFFFFFC05 PropTag: 0xC1A84B0 Lid: 59073
    StoreEc: 0xFFFFFC05 Lid: 28220 Lid: 52321 StoreEc: 0xFFFFFC05 Lid: 46177 dwParam: 0xBFE629 Lid: 35937 StoreEc: 0xFFFFFC05 Lid: 44129 dwParam: 0x1183C6F Lid: 60513 StoreEc: 0xFFFFFC05 Lid: 48225 Lid: 9253 StoreEc: 0xFFFFFC05 Lid: 28104 Lid: 13861 StoreEc: 0xFFFFFC05
    Lid: 27265 StoreEc: 0xFFFFFC05 Lid: 1750 ---- Remote Context End ---- Lid: 27962 ROP: ropFindRow [79] Lid: 17082 ROP Error: 0xFFFFFC05 Lid: 23649 Lid: 21921 StoreEc: 0xFFFFFC05 Lid: 27962 ROP: ropExtendedError [250] Lid: 1494 ---- Remote Context Beg ---- Lid:
    26426 ROP: ropFindRow [79] Lid: 40685 StoreEc: 0xFFFFFC05 Lid: 28720 Lid: 11621 StoreEc: 0xFFFFFC05 Lid: 56781 StoreEc: 0xFFFFFC05 Lid: 21484 Lid: 23788 StoreEc: 0xFFFFFC05 Lid: 1750 ---- Remote Context End ---- Lid: 26849 Lid: 21817 ROP Failure: 0xFFFFFC05
    Lid: 29726 Lid: 18462 StoreEc: 0xFFFFFC05 

    Hi,
    From your description, if you specify a larger value for the bad items limit, this error will disappear. Then the issue should be related to the corrupt mailbox, such as the subfolder property and so on, you can use MFCMAPI to check them and then remove
    problematic folders.
    Hope this can be helpful to you.
    Best regards,
    Amy Wang
    TechNet Community Support

  • SIP Trunk error, Warning: 399 "Unable to find a device handler

    Hi Guys,
    I am new at this, but I am having some issues with connectivity over a SIP Trunk. By the way I am not sure if this is the right area to post this, but here we go. I have two CUCM 8.x cluster and I have a SIP trunk that connectes them both, at each end I have a Cisco 2900 series gateway with MGCP protocol. When I make an inbound call " lets say from side A to side B it failed", in the CCM trace I can see the following error " Warning: 399 Unable to find device handler for the request received on port 5060 from".
    I would appreciate some help on this, I am not sure what to look for......

    Hi,
    For testing reasons can you do the following
    Create a callmanager group that contains all the nodes in the cluster. Then create a device pool with this callmanager group and assign this device pool to the SIP trunks.
    Do this on both cluster.
    Reset the trunks and see if you still have ny problems.
    Thanks!
    Christos

  • Warning: skgmdetach - Unable to register unmap, error 4210

    Can anyone infer from the alert log message found in production database. If I have connect as normal user the database hangs. Find the alert log message below
    ksvcreate: Process(q001) creation failed
    Tue Apr 03 21:42:07 2007
    ksvcreate: Process(q001) creation failed
    Wed Apr 04 00:01:05 2007
    Thread 1 advanced to log sequence 3812
    Current log# 2 seq# 3812 mem# 0: C:\db1\LOG\REDO02.LOG
    Wed Apr 04 00:25:17 2007
    Warning: skgmdetach - Unable to register unmap, error 4210
    Wed Apr 04 01:29:47 2007
    Warning: skgmdetach - Unable to register unmap, error 4210
    Wed Apr 04 02:20:45 2007
    Thread 1 advanced to log sequence 3813
    Current log# 3 seq# 3813 mem# 0: C:\db1\LOG\REDO03.LOG
    Wed Apr 04 02:29:44 2007
    Warning: skgmdetach - Unable to register unmap, error 4210
    Wed Apr 04 02:35:29 2007
    Warning: skgmdetach - Unable to register unmap, error 4210
    Wed Apr 04 02:55:28 2007
    Warning: skgmdetach - Unable to register unmap, error 4210
    Wed Apr 04 08:52:07 2007
    Warning: skgmdetach - Unable to register unmap, error 4210
    Wed Apr 04 10:08:46 2007
    Thread 1 advanced to log sequence 3814
    Current log# 4 seq# 3814 mem# 0: C:\db1\LOG\REDO04.LOG

    Joshi,
    Check SAP Note 1289691 - ORA-610: INTERNAL ERROR CODE if not enough resources
    Metalink:-
    https://metalink.oracle.com/CSP/ui/flash.html#tab=KBHome(page=KBHome&id=()),(page=KBNavigator&id=(bmDocTitle=%3Cb%3EORA-00610%3C/b%3E%20AND%20&quot;unable%20to%20spawn%20jobq%20slave%20process%20&quot;%20IN%20THE%20ALERT%20LOG.&viewingMode=1143&bmDocID=416244.1&from=BOOKMARK&bmDocType=PROBLEM&bmDocDsrc=KB))
    https://metalink.oracle.com/CSP/ui/flash.html#tab=KBHome(page=KBHome&id=()),(page=KBNavigator&id=(bmDocTitle=Process%20J000%20died,%20kkjcre1p:%20unable%20to%20spawn%20jobq%20slave%20process&viewingMode=1143&bmDocID=833613.1&from=BOOKMARK&bmDocType=PROBLEM&bmDocDsrc=KB))
    Check you DB parameter setting according to SAP Note 830576 - Parameter recommendations for Oracle 10g
    SAP Note 1171650 -Automated Oracle DB parameter check
    Also try by restarting server once.
    Hope this helps
    Thanks
    Sushil

  • Scanner Warning 027 unable to read the sequence ....

    we have zen 7 sp1 etc...
    some of the workstation inventory logf have the following error :
    Scanner Warning 027 unable to read the sequence number from the workstation object
    i have deleted the edir object, and wait for recreating and new scan.... but the error exist still.
    any ideas to resolve the issue?

    a part from the log ,
    here is a bad workstation
    [4/23/08 08:29:40.253] ZENInv - Selector: Selector Yielding for ms0
    [4/23/08 08:29:40.253] ZENInv - Selector: Processing 000B5D9B682A_1208327423000_6.STR
    [4/23/08 08:29:40.253] ZENInv - Selector: Getting SelectorXMLAgent Lock fordaten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832 7423000_6.STR
    [4/23/08 08:29:40.253] ZENInv - Selector: Acquired SelectorXMLAgent Lock fordaten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832 7423000_6.STR
    [4/23/08 08:29:40.253] ZENInv - Selector: Getting SynchServiceSelector Lock fordaten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832 7423000_6.STR
    [4/23/08 08:29:40.253] ZENInv - Selector: Acquired SynchServiceSelector Lock fordaten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832 7423000_6.STR
    [4/23/08 08:29:40.254] ZENInv - Selector: Getting ConverterSelector Lock fordaten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832 7423000_6.STR
    [4/23/08 08:29:40.254] ZENInv - Selector: Acquired ConverterSelector Lock fordaten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832 7423000_6.STR
    [4/23/08 08:29:40.254] ZENInv - Selector: Opened Filedaten:\ZENworks\Inv\ScanDir\000B5D9B682A_12083 27423000_6.STR
    [4/23/08 08:29:40.254] ZENInv - Selector: Checking Length of STR
    [4/23/08 08:29:40.254] ZENInv - Selector: HASH of FileName000B5D9B682A_1208327423000_6.STRIS=1218633 352
    [4/23/08 08:29:40.254] ZENInv - Selector: HASH INSIDE FileName000B5D9B682A_1208327423000_6.STRIS=1218633 352
    [4/23/08 08:29:40.254] ZENInv - Selector: End of File=[EOF]
    [4/23/08 08:29:40.254] ZENInv - Selector: Valid EOF Found
    [4/23/08 08:29:40.254] ZENInv - Selector: Checking Bitmap of STR
    [4/23/08 08:29:40.254] ZENInv - Selector: Checking SectionOffsets of STR
    [4/23/08 08:29:40.255] ZENInv - Selector: Checking Identification of STR
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing for [Identification]
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing workStationDN
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing treeName
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing and converting numMACAddress
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing macAddresses
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing typeOfScan
    [4/23/08 08:29:40.255] ZENInv - Selector: typeOfScan=DELTA
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing and converting scanTime
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing and converting sequenceNumber
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing serverName
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing and converting StrFileVersion
    [4/23/08 08:29:40.255] ZENInv - Selector: Checking StrFileVersion
    [4/23/08 08:29:40.255] ZENInv - Selector: ZFD STR Version is=1650
    [4/23/08 08:29:40.255] ZENInv - Selector: MIDAS ZFD STR VERSION1650
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing strFileSystemType
    [4/23/08 08:29:40.255] ZENInv - Selector: Parsing strFileSystemIdentifier
    [4/23/08 08:29:40.255] ZENInv - Selector: Entering isInventoryScannerValid()
    [4/23/08 08:29:40.255] ZENInv - Selector: isFile30SP1EP1STR Confirms this file is NOT a 30SP1EP1STR
    [4/23/08 08:29:40.255] ZENInv - Selector: isFile30SP1EP1STR Confirms this file is NOT a 30SP1EP1STR
    [4/23/08 08:29:40.255] ZENInv - Selector: Updating WSDN To SynchService HashTable
    [4/23/08 08:29:40.255] ZENInv - Selector: SynchTable Exists
    [4/23/08 08:29:40.255] ZENInv - Selector: Entry Already Present.Will not update SynchTable
    [4/23/08 08:29:40.255] ZENInv - Selector: isFile30SP1EP1STR Confirms this file is NOT a 30SP1EP1STR
    [4/23/08 08:29:40.255] ZENInv - Selector: Reading NDS ScanNumber
    [4/23/08 08:29:40.270] ZENInv - Selector: NDS ScanNumber Read 5
    [4/23/08 08:29:40.270] ZENInv - Selector: NDS attrModificationTime Read 1208760260000
    [4/23/08 08:29:40.270] ZENInv - Selector: Type of Scan:DELTA
    [4/23/08 08:29:40.270] ZENInv - Selector: Transfering to DBDir.
    [4/23/08 08:29:40.270] ZENInv - Selector: Getting SelectorStorerDestination Lock for daten:\ZENworks\Inv\ScanDir\DbDir\000B5D9B682A_120 8327423000_6.STR
    [4/23/08 08:29:40.270] ZENInv - Selector: SelectorStorerDestination Lock Acquired for daten:\ZENworks\Inv\ScanDir\DbDir\000B5D9B682A_120 8327423000_6.STR
    [4/23/08 08:29:40.270] ZENInv - Selector: Hence Transferring : daten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832742 3000_6.STR File to daten:\ZENworks\Inv\ScanDir\DbDir\000B5D9B682A_120 8327423000_6.STR
    [4/23/08 08:29:40.270] ZENInv - Selector: Renaming the file daten:\ZENworks\Inv\ScanDir\000B5D9B682A_120832742 3000_6.STRTo daten:\ZENworks\Inv\ScanDir\DbDir\000B5D9B682A_120 8327423000_6.STR
    [4/23/08 08:29:40.270] ZENInv - Selector: Unlocked SelectorStorerDestination for daten:\ZENworks\Inv\ScanDir\DbDir\000B5D9B682A_120 8327423000_6.STR
    [4/23/08 08:29:40.270] ZENInv - Selector: Modifying Attribute seqNo with 6
    [4/23/08 08:29:40.270] ZENInv - Selector: Entering forceFullScanFlag Loop
    [4/23/08 08:29:40.287] ZENInv - Selector: Time Taken to Process Delta Scan : 34
    [4/23/08 08:29:40.287] ZENInv - Selector: Unlocked SelectorXMLAgent Filedaten:\ZENworks\Inv\ScanDir\000B5D9B682A_12083 27423000_6.STR
    [4/23/08 08:29:40.287] ZENInv - Selector: Unlocked ConverterSelector Filedaten:\ZENworks\Inv\ScanDir\000B5D9B682A_12083 27423000_6.STR
    [4/23/08 08:29:40.287] ZENInv - Selector: Unlocked SynchServiceSelector Filedaten:\ZENworks\Inv\ScanDir\000B5D9B682A_12083 27423000_6.STR
    [4/23/08 08:29:40.287] ZENInv - Selector: Selector Will Now Serialize SynchTable - End of Listing
    [4/23/08 08:29:40.287] ZENInv - Selector: Serializing hashTable Todaten:\ZENworks\Inv\ScanDir\stable\STABLE.SER
    [4/23/08 08:29:40.289] ZENInv - Selector: Selector finished Serializing the table
    [4/23/08 08:29:41.043] ZENInv - Storer: Loading Storer test properties file
    [4/23/08 08:29:41.044] ZENInv - Storer: Storer: started storing 000B5D9B682A_1208327423000_6.STR (3878 bytes)
    [4/23/08 08:29:41.053] ZENInv - Storer: dn: CN=SFT01314.OU=WS.OU=ZEN.OU=city.o=org tree: org-tree
    [4/23/08 08:29:41.053] ZENInv - Storer: tree: org-treewsdn: CN=SFT01314.OU=WS.OU=ZEN.OU=city.o=orgtime: 1208931926000
    [4/23/08 08:29:41.053] ZENInv - Storer: Initial WS statusrecord is found
    [4/23/08 08:29:41.053] ZENInv - Storer: got the status log
    [4/23/08 08:29:41.077] ZENInv - Storer: Could not process 000B5D9B682A_1208327423000_6.STR due to
    com.novell.zenworks.desktop.inventory.storer.DataA bsentException: Data Instance Not Found!!Class:Zenworks.ZenDesktopMonitor Operation:Delete Offset:e14 linkoffset:ffffffffffffffff oid:-1
    [DeviceID=DesktopMonitor2 Description=Plug und Play-Monitor ManufactureDate=2002 ModelID=SNY08B0 ViewableSize=19.7 NominalSize=21.0 ]
    at com.novell.zenworks.desktop.inventory.storer.Objec tInstance.setOID(ObjectInstance.java:339)
    at com.novell.zenworks.desktop.inventory.storer.Parse .processOtherSection(Parse.java:1913)
    at com.novell.zenworks.desktop.inventory.storer.Parse .parse(Parse.java:4038)
    at com.novell.zenworks.desktop.inventory.storer.MainT hread.run(MainThread.java:976)
    [4/23/08 08:29:41.080] ZENInv - Storer: Scantype set to -1
    [4/23/08 08:29:41.081] ZENInv - Storer: addWSErrorMessage
    [4/23/08 08:29:41.097] ZENInv - Status Reporting: Number of records to add are: 0 for DN=CN=SFT01314.OU=WS.OU=ZEN.OU=city.o=org
    [4/23/08 08:29:41.113] ZENInv - Status Reporting: Number of modified records are: 1 for DN=CN=SFT01314.OU=WS.OU=ZEN.OU=city.o=org
    [4/23/08 08:29:41.113] ZENInv - Status Reporting: Modifying record for DN=CN=SFT01314.OU=WS.OU=ZEN.OU=city.o=org
    [4/23/08 08:29:41.113] ZENInv - Status Reporting: Record with time stamp 1208931926000 is found
    [4/23/08 08:29:41.164] ZENInv - Storer: cleanUp:Full Scan will be initiated on CN=SFT01314.OU=WS.OU=ZEN.OU=city.o=org
    [4/23/08 08:29:41.164] ZENInv - Storer: Unlocking daten:\ZENworks\Inv\ScanDir\DbDir\000B5D9B682A_120 8327423000_6.STR
    is there a mechanism, to get the local zenworks logfile up to the server, so i didnt need to have access to the workstation manual?
    it looks like, that there are no information in the str file from the workstation, but i didnt have a local logfile yet... :-((
    helge

  • Scanner(Warning) : 027: Unable to read the sequence number from the Workstation object.

    Hi
    We are having trouble storing inventory scans from some workstations.
    We have a windows ONLY environment, with middle tier servers. (ZEN65SP1,
    W2KSP4).
    Some workstations are storing fine. The Storer function is working and we
    can see the storer functions for the 'good' workstations in the Inventory
    service window.
    However some workstations can't store to the inventory db, but DO populate
    eDir ZENworks inventory 'minimal information' but show "Scanner(Warning) :
    027: Unable to read the sequence number from the Workstation object." in
    the Scan Status...
    The Inventory service window shows no attempt by these workstations - it's
    almost as though the scan file is not arriving (though eDir knows/displays
    the scan file name)
    How does the workstation access the scandir in Windows only/middle tier
    environment? Does the scan xml stream get sent to the MT via http and then
    on to the scandir via CIFS?
    Any suggestions/explanations welcome!!
    Many thanks
    David

    David,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • Unable to jump inside contact list - iphone 3G firmware 3.0

    Hey everyone. I've recently upgraded my firmware to version 3.0. After doing that, I'm unable to jump directly to the contacts starting with a specific letter. The whole A-Z letters on the right side shows in a gray sheded box whenever trying to tap. Is it only me having the problem or everyone? Also, I get no result at all when using the Contact search list. My Groups is set to showing All contacts

    I just upgraded to 3.0. It froze during the update, after waiting for hours. I forced shut down the computer, and started over. It was able to update the software, and restore my data, but I am experiencing the same problems in contacts. Tried reinstalling the software, and a soft restart, no change. How do you change back to the older software?
    thanks, Ron

  • Counting rows in a mysql query

    Hey
    How do i count the rows in a mysql query?
    I have tried to make a while loop (as you can see in the code), but if i make this while loop i cant use the same query to get the database data.
    Doesnt java have a function that counts the rows?
    public DefaultTableModel searchCategory(String searchString){
            String returnString = "";
            try{
                RS = connection.executeQuery("SELECT name, price, products_type_id FROM katrinelund_products WHERE products_type_id = (SELECT products_type_id FROM katrinelund_products_type WHERE name LIKE '%"+searchString+"%')");
                int rowCount = 0;
                while(RS.next()){
                    rowCount++;
                String[] columnNames = {"Navn", "Pris", "Produkt type"};
                Object[][] data = new Object[rowCount][columnNames.length];
                int i=0;
                while(RS.next()){
                    data[0] = RS.getString(1);
    data[i][1] = RS.getString(2);
    data[i][2] = RS.getString(3);
    i++;
    table = new DefaultTableModel(data, columnNames);
    catch(SQLException E){
    System.out.println("Der skete en fejl" + E.getMessage());
    return table;
    }NOTE: the connection to the database is stored in the connection variable.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    yawmark wrote:
    The SELECT COUNT(*) cannot be fetched among other data, so in this case you must send two queries. Then there is much simplier to use the method I mentioned above.While it may be "simpler", it's not supported in a non-trivial number of drivers. So there are a number of situations in which your "simple" solution will not work. I assume you've been fortunate enough to work only with drivers that do support the functionality you recommend, but I can also only assume that you haven't had much experience beyond that.I apologize for my spelling errors. I'm not a native englishman.
    yawmark wrote:
    Knowing the amount of rows a resultset returns can be interesting if you're making some kind of search engine. Knowing the amount of data returned for a particular query can certainly be useful, and we've presented some reasonable means of obtaining that kind of information that don't rely on potentially unsupported features.
    I don't now about unsupported features. The ResultSet is (as far as I know) not tied to a specific SQL database. This, and all of it's methods is in the java.sql.ResultSet interface. Then all classes implementing this must have these methods. Am I not right?
    yawmark wrote:
    Stop dealing with however it's necessary or not.Sorry, partner, but you don't get to decide what I post here.
    This guy wants this problem to be solved, so apparentley he has a usage for it...And what you're apparently failing notice is that there are other solutions (better, in many cases) than the solution which you posted. Don't make the mistake of thinking your suggestion is golden. It isn't. Besides, there are no shortage of beginners that want the "problem" of i = i++ to be "solved"; no doubt they think they have an apparent usage for it, too. ~I'm well aware of that you decide on your own what to post. I just don't see how it is necessary to discuss the matter of necessity in this case. The problem still remains.
    I don't want any fuss here. I'm just so sick of everyone who yells "you don't need to know that". I haven't decried any of the other solutions (at least it wasn't my point), all I said was that it's not a good idea to send multiple queries to the database when you already have the answer three rows of code away. In some rare situations, the data may have been changed during the short period of time as the database is finished with the first query before you send the next one.

  • How can I get the number of rows in my sql result, without a loop?

    Hello,
    I've a problem, I would like to get the number of rows in my sql result without make a loop like :
    while (rs.next()){
    int number = rs.getRow();
    Is there any method to do this, on the first element?
    Thx, STeF

    If you want to count how many rows are in result set, I dont think you can, but you could always run a count statement for that sql
    say your sql is
    select field1, field2, field3
    from table1, table2
    where field4=field5 ......
    then you can count the rows this statement returns by
    select count(*) from
    (say your sql is
    select field1, field2, field3
    from table1, table2
    where field4=field5 ......)
    This way you will get the count for just that sql

  • BEX analyzer -Maximum number of rows (65535) exceeded. Result is incomplete

    Hello Experts,
    I am trying to Run a report on BEx Analyzer.There are around 200,000 records to be displayed in the result.
    I am getting the below error.
    Maximum number of rows (65535) exceeded. Result is incomplete.
    Message no. BRAIN675
    We are on SAP GUI 7.X and Excel 2007
    Is there any setting that I have to change inorder for BEX analyzer to display all the 200,000 records.
    Also any memory setting for the result set to be changed ?
    Please let me know your thoughts
    Thanks
    Doodle

    Hi Doodle,
    The rows limit for Excel 2007 is 1 million so this is not the problem with row limitation. It seems like you have opened the pre-excel 2007 workbook in excel 2007, check your title bar if it says "Compatible Mode". This will limit you to old standard of 65K.
    May be what you can do is , save your file using save as option and try running the workbook.
    Your new file extension will be .xlsx
    Regards,
    Durgesh.
    Edited by: Durgesh Gandewar on Jul 14, 2011 10:03 AM

  • Warning: Full-text change tracking is currently enabled for table or indexed view 'fim.ObjectValueString'

    Hi,
    As per the FIM best practice guide, we are trying to disable full-text indexing on the FIM Service database, during the initial load using:
    ALTER FULLTEXT INDEX ON [fim].[ObjectValueString] SET CHANGE_TRACKING = MANUAL
    ALTER FULLTEXT INDEX ON [fim].[ObjectValueXml] SET CHANGE_TRACKING = MANUAL
    However, we get the following warning:
    Warning: Full-text change tracking is currently enabled for table or indexed view 'fim.ObjectValueString'
    Does anyone know how we can solve this?
    Regards,
    SK

    <Going through old threads>
    This doesn't disable change tracking it merely sets it to manual.
    The link below shows and explains the three settings (enabled, manual and disabled):
    http://technet.microsoft.com/en-us/library/ms187025(v=sql.105).aspx
    David Lundell, Get your copy of FIM Best Practices Volume 1 http://blog.ilmbestpractices.com/2010/08/book-is-here-fim-best-practices-volume.html

  • Master Detail Form - unable to add detail row

    Dear,
    I have a test application that runs for years on apex.oracle.com.
    Since 3rd of june 2010 I am unable to add rows on a detail form.
    Any ideas?
    Help is welcome!
    Kind regards
    Lorenz

    4.0 Conversion Issue
    Lorenz stated I can create the orderheader, but unable to create orderlines.Simply nothing happens, when I click the add row button.>
    I share the same issue as Lorenz, on a Master/Detail form, I am able to create my Master row and but nothing happens when attempting to create detail rows. I was able to switch my application to theme 13 (Traditional Blue) from 2 (Blue and Tan) and was then able to create and add details rows.
    My dilemma. When switching to theme 13 and others, none appear to support Two Level Tabs in the same manner as Theme 2. Essentially the applications look and feel is not going to go over well with my user base of 3+ years.
    Is there another standard theme that will support Two Level Tabs like Theme 2 and allow the addition of detail rows on a Master/Detail form?
    Is this a reported 4.0 conversion issue?
    Jeff

Maybe you are looking for

  • I-phone is not recognized by my laptop

    I haven't backed up my iphone 3 to my laptop for a while and now it won't recognise it. It won't even charge it. My laptop does for other i-phones. Any suggestions?

  • BATCH Management - External number

    Hi I am having a scenario where I need to activate the external number assignment for a batch in a specific plant. ( We do have around 50 plants) Internal batch number and Automatic batch number assignment is activated at the client level. which is c

  • Field/Table to change the header tick in sales order billing plan

    Hi SD Guru's I am using a GUI screen to create standard sales order (VA01). Since my order dates at header and line item level can differ, i want the field name or table name of the header tick which is taken as default from my billing plan in my sal

  • How to "import" SampleApp repository file to existing repository

    Hello I use OBIEE 11.1.3.5 I woudl like to prepare some kind of training for my business users so I need sample app enviroment in my production enviroment. I know how to "move" presentation content but I'm not able to merge this two repositories (rep

  • Tcode to view  output of script RT_CHECK_LIST (in. delivery  checklist)

    Hi All,    I want to see the output of script RT_CHECK_LIST which is assigned in NACE transaction.   Details are as follows:   Output type  : CHKL  (Count list)   Application   :  E1      (Inbound delivery)   Medium        : Print output Program