Problem in moving oid records with ldapmodify command

According to the LDAP 3 standard, the following ldif file should enable me to move one record from one DIT to another:
dn: cn=john.smith,l=new york city,st=new york,o=us
changetype: modrdn
newrdn: cn=john.smith
deleteoldrdn: 1
newsuperior: l=niagra fall, st=new york,o=us
But when I run this ldap file with Oracle 10g' ldapmodify command against a OID ldap server, I get the following error message:
ldapmodify: expecting "deleteoldrdn:" but saw "newsuperior:" (line 5 of entry cn=john.smith,l=new york city, st=new york, o=us)
Does this mean Oracle's LDAP only meet lDAP 2 standard? Thanks.

You need to use ldapmoddn. See "Tasks and Examples for ldapmoddn"
http://download-west.oracle.com/docs/cd/B28196_01/idmanage.1014/b15998/syntax_datamngmnt.htm#sthref669
regards,
--Olaf                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • Problem viewing videos I recorded with the phone

    When trying to view videos I recorded with the phone, It gives me a message saying it is impossible to view this multimedia file format!
    It has been recorded with the phone and it can't watch it on the phone!? It doesn't recognize its own recording format
    Help please

    If the format is in 3GP you can view it with a player called VLC (http://www.videolan.org/vlc/), or can try a video conversion program to convert it into a format your computer can read. Once such program can be found here http://www.avs4you.com/AVS-Video-Converter.aspx
    If someone has been helpful please consider giving them kudos by clicking the star to the left of their post.
    Remember to resolve your thread by clicking Accepted Solution.

  • Update multiple records with Update Command Dreamweaver 8.0.2 - ASP VBScript

    Dreamweaver 8.0.2 - Language ASP – VBScript
    I’m trying to update more than one record at a time
    using checkboxes. I’ve successfully done this numerous times
    prior to Dreamweaver 8.0.2.
    Before Dreamweaver 8.0.2, I would create a page with a
    recordset, form, checkbox and repeat region and pass the ID to
    another page containing an ‘Update Command’. The code
    on the Update page looked similar to the following:
    <%
    if(Request.QueryString("MemberID") <> "") then
    spMemberApproving__MMColParam = Request.QueryString("MemberID")
    %>
    <%
    set spMemberApproving = Server.CreateObject("ADODB.Command")
    spMemberApproving.ActiveConnection =
    MM_connIssuesManager_STRING
    spMemberApproving.CommandText = "UPDATE tblMembers SET
    MemberApproved = 1 WHERE MemberID IN (" +
    Replace(spMemberApproving__MMColParam, "'", "''") + ")"
    spMemberApproving.CommandType = 1
    spMemberApproving.CommandTimeout = 0
    spMemberApproving.Prepared = true
    spMemberApproving.Execute()
    Response.Redirect("default.asp")
    %>
    However, in Dreamweaver 8.0.2 when you fill out the Update
    Command dialog box, Dreamweaver asks you to provide the
    ‘Type’ and ‘Size’ for the variables (see:
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=4e6b330a
    That being said and done, the code on the Update page looks
    like the following:
    <%
    ' IIf implementation
    Function MM_IIf(condition, ifTrue, ifFalse)
    If condition = "" Then
    MM_IIf = ifFalse
    Else
    MM_IIf = ifTrue
    End If
    End Function
    %>
    <%
    if(Request.QueryString("MemberID") <> "") then
    spMemberApproving__MMColParam = Request.QueryString("MemberID")
    %>
    <%
    Set spMemberApproving = Server.CreateObject ("ADODB.Command")
    spMemberApproving.ActiveConnection =
    MM_connIssuesManager_STRING
    spMemberApproving.CommandText = "UPDATE tblMembers SET
    MemberApproved = 1 WHERE MemberID IN (?) "
    spMemberApproving.Parameters.Append
    spMemberApproving.CreateParameter("MMColParam", 202, 1, 10,
    MM_IIF(Request.QueryString("MemberID"),
    Request.QueryString("MemberID"), spMemberApproving__MMColParam
    spMemberApproving.CommandType = 1
    spMemberApproving.CommandTimeout = 0
    spMemberApproving.Prepared = true
    spMemberApproving.Execute()
    Response.Redirect("default.asp")
    %>
    The Update Command works perfectly when only 1 record is
    being updated. However, when I try to update more than one record I
    get the following error:
    Error Type:
    ADODB.Command (0x800A0D5D)
    Application uses a value of the wrong type for the current
    operation.
    /issues_manager/admin/members_approving.asp, line 27
    Can anyone help me out?

    Yes, this is a bug in Dreamweaver 8.0.2. The only workaround
    is to stay with
    8.0.1 or to hand-code the query. Adobe removed most of the
    useful ways to
    use Commands and Recordsets in 8.0.2 and limited it to basic
    queries.
    Tom Muck
    co-author Dreamweaver MX 2004: The Complete Reference
    http://www.tom-muck.com/
    Cartweaver Development Team
    http://www.cartweaver.com
    Extending Knowledge Daily
    http://www.communitymx.com/
    "Button1" <[email protected]> wrote in message
    news:[email protected]...
    > Dreamweaver 8.0.2 - Language ASP ? VBScript
    >
    > I?m trying to update more than one record at a time
    using checkboxes.
    > I?ve
    > successfully done this numerous times prior to
    Dreamweaver 8.0.2.
    >
    > Before Dreamweaver 8.0.2, I would create a page with a
    recordset, form,
    > checkbox and repeat region and pass the ID to another
    page containing an
    > ?Update Command?. The code on the Update page looked
    similar to the
    > following:
    >
    > <%
    > if(Request.QueryString("MemberID") <> "") then
    > spMemberApproving__MMColParam =
    > Request.QueryString("MemberID")
    > %>
    >
    > <%
    >
    > set spMemberApproving =
    Server.CreateObject("ADODB.Command")
    > spMemberApproving.ActiveConnection =
    MM_connIssuesManager_STRING
    > spMemberApproving.CommandText = "UPDATE tblMembers SET
    MemberApproved = 1
    > WHERE MemberID IN (" +
    Replace(spMemberApproving__MMColParam, "'", "''") +
    > ")"
    > spMemberApproving.CommandType = 1
    > spMemberApproving.CommandTimeout = 0
    > spMemberApproving.Prepared = true
    > spMemberApproving.Execute()
    >
    > Response.Redirect("default.asp")
    > %>
    >
    > However, in Dreamweaver 8.0.2 when you fill out the
    Update Command dialog
    > box,
    > Dreamweaver asks you to provide the ?Type? and ?Size?
    for the variables
    > (see:
    >
    http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=4e6b330a
    >
    >
    >
    > That being said and done, the code on the Update page
    looks like the
    > following:
    >
    > <%
    > ' IIf implementation
    > Function MM_IIf(condition, ifTrue, ifFalse)
    > If condition = "" Then
    > MM_IIf = ifFalse
    > Else
    > MM_IIf = ifTrue
    > End If
    > End Function
    > %>
    >
    > <%
    > if(Request.QueryString("MemberID") <> "") then
    > spMemberApproving__MMColParam =
    > Request.QueryString("MemberID")
    > %>
    > <%
    >
    > Set spMemberApproving = Server.CreateObject
    ("ADODB.Command")
    > spMemberApproving.ActiveConnection =
    MM_connIssuesManager_STRING
    > spMemberApproving.CommandText = "UPDATE tblMembers SET
    MemberApproved = 1
    > WHERE MemberID IN (?) "
    > spMemberApproving.Parameters.Append
    > spMemberApproving.CreateParameter("MMColParam", 202, 1,
    10,
    > MM_IIF(Request.QueryString("MemberID"),
    Request.QueryString("MemberID"),
    > spMemberApproving__MMColParam & ""))
    > spMemberApproving.CommandType = 1
    > spMemberApproving.CommandTimeout = 0
    > spMemberApproving.Prepared = true
    > spMemberApproving.Execute()
    >
    > Response.Redirect("default.asp")
    > %>
    >
    >
    > The Update Command works perfectly when only 1 record is
    being updated.
    > However, when I try to update more than one record I get
    the following
    > error:
    >
    > Error Type:
    > ADODB.Command (0x800A0D5D)
    > Application uses a value of the wrong type for the
    current operation.
    > /issues_manager/admin/members_approving.asp, line 27
    >
    >
    > Can anyone help me out?
    >
    >

  • Problem in update database record with torque

    Can anybody correct my mistake. please........
    Torque.init("E:/Upendra_working_directory/msh2.0/Torque.properties");
    System.out.println("State:     " + Torque.isInit());
    System.out.println("Connection Sucessfully........");
    Criteria crit = new Criteria();
    crit.add(AttachmentPeer.DISPOSITION, "buildfail09.xml");//selecting particular record
    List attachment = AttachmentPeer.doSelect(crit);
    System.out.println(attachment.size());
    Attachment obj = (Attachment)attachment.get(0);
    System.out.println("Attachment Location:     "+ obj.getAttachmentName());
    System.out.println("Attachment MessageID     "+ obj.getMessageId());
    obj.setAttachmentName("sssss"); //setting new value
    AttachmentPeer.doUpdate(obj); //update
    obj.save();
    System.out.println(Attachment Location:     (afterupdate)"+ obj.getAttachmentName());
    console print updated value.but if i check the table in database, it is not updated.
    Thanks in advance

    For anyone referencing this... I had missed adding the field to the MapBuilder so I can definitely suggest that you check the field is present everywhere it should be as no errors will be found if its only looking for the first 4 fields but you want 5 fields to be updated!!

  • Problem to stop my loop with tab command

    Hi everybody,
    I have problems to implement my VI.
    I would like to STOP my case "Scenario_en_cours" before to change of tab.
    Anyone can help me please ?
    Cordially
    Attachments:
    Mode_Auto_Final(1).vi ‏216 KB

    That looks like it will take some time to fix.  But what you need to do is seperate your different loops and functions into modules that run all on their own.  You should have one loop for nothing but GUI events.  One of these events should be your tab value change.
    So if you have your other loops outside of this main loop, they just run on their own.  What I normally do is use a queue to tell those loops what to do: run, stop, change some data, etc.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Digital Recording with MacBook TOSLINK

    I am having problems making a good recording with the TOSLINK port on my MacBook. I my audio source is a dj mixer sending SPDIF through a HOSA SPDIF/TOSLINK converer into my mini-TOSLINK port I get strange fluctuations in volume and generally bad audio.
    Does anybody have luck with recording via the TOSLINK port? Could it be the bitrate coming outo f the mixer?

    I use the Canon EOS Kiss Digital N, which in the US is the Rebel XT or something. I also use an external card reader, and the MacBook works fine with the camera.
    I also use Adobe Lightroom and Photo Elements 4.0 to process and manage the photos, and they both run very well on the MacBook.
    You'll have a lot of fun, it seems like the MacBook and MacBook Pro were just made for this stuff.

  • Package parametеr "overwrite records with match key" (BPC 10)

    Hi all.
    We load data from DSO in SAP BW to BPC. We use the /CPMB/LOAD_INFOPROVIDER process chain for that.
    In the package we use the "overwrite records with match key" parameter for the "Handling of records in target" setting.
    But if there's no data in the DSO, the package hangs in the "Running" status and won't finish loading.
    If we start the package with the "append" parameter for the "Handling of records in target" setting, then package finishes with the warning status.
    What could be the problem if use "overwrite records with match key" ?
    Best regards,
    Sergey

    Hi,
    As per the below note its known issue in SP08. In which version of BPC are you running now.
    1787650 - Data Manager package no end at dumpload step for empty data
    Thanks,
    Raju

  • Recording with SB Audigy LS

    I have an Audigy LS that works fine as far as playing audio or streaming audio over the Internet, but I can get Audacity to record either steaming audio or line-in audio.  If I set audacity to OSS: /dev/dsp, the mixer tool bar doesn't even show up.  If I set audacity to one of the ALSA settings, the mixer tool bar does show up, but it doesn't record.  Audacity will also change the playback speed on any files I am already streaming.
      I don't know if this has anything to do with the problems, but I read somewhere that this soundcard does not have hardware mixing.  I also have to set IEC958 to mute in order to play audio files. 
      I would be willing to replace this card with either the M-Audio Revolution 5.1. or 7.1 if it would solve these problems.  M-Audio has been recommend in this forum, but no one seemed to address the recording issue.  I would be interested in any comments concerning the above problems or any experience recording with the Revolution sound cards.  I would also be interested in any differences between the two cards other than 5 channels vs. 7 channels. 
      Thanks
      Larry

    B15HOP wrote:
    I have a similar problem too. The problem is to do with the mic not turning on. If you press tab in alsamixer, it shows what the sound card will record and what volume settings for each input line. Yet for me, even with 100% volume on mic, i can not record because mic won't "turn on"
    http://bbs.archlinux.org/viewtopic.php?id=44837
    It's a real annoyance as this sound card worked worked really well in skype... not anymore.
    I admit that I am not an audio guru which is partially due to the fact that things always worked.  The joke is that I have an old SB Live (BUDGET) on my old computer which can record streaming audio and Line-in audio.  This machine is also running Arch so its not the OS. 
    One of the best suggestions I've seen on this forum is to pick up an old SB on Ebay.  It totally boggles my mind that such a mundane task should be such a problem.  I may swap cards which is NOT the solution I wanted since I also use window on the old machine to run Replay Radio. 
    Good Luck

  • Problem with Updating clients with UNIX command

    Hi.
    Until this day, I used to update all our 50 client macs by manually logging in as administrator via ARD and choosing Software Update from the apple menu, this works always and I use our own servers SUS so the downloading is really fast. Still, this clearly is time consuming and annoying when you have this many clients. I have now done some search and I know I could do this by sending unix command to clients using ARD. First I had problems with running the command, then I noticed I need to run this as root. Then it "works".
    Works, not quite. It starts to run, and I can see all the output. I have tried this with few clients and the results are confusing. The following is an output from one client I send the command "softwareupdate -i -r"
    SIBELIUS411 (172.17.6.36)
    2011-03-25 13:13:20.610 softwareupdate[1692:392b] PackageKit: * Missing bundle identifier: /Library/Receipts/PPDInstallerRI3222E3L.pkg
    2011-03-25 13:14:09.636 softwareupdate[1692:392b] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.NetworkUtility"></bundle>
    2011-03-25 13:14:09.798 softwareupdate[1692:392b] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    2011-03-25 13:14:09.801 softwareupdate[1692:392b] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.server.SystemImageUtility"></bundle>
    2011-03-25 13:19:40.016 softwareupdate[1692:903] PackageKit: * Missing bundle identifier: /Library/Receipts/PPDInstallerRI3222E3L.pkg
    Software Update Tool
    Copyright 2002-2009 Apple
    Downloading Safari
    Verifying Safari
    Waiting to install Safari
    Downloading Mac OS X Update Combined
    Verifying Mac OS X Update Combined
    Waiting to install Mac OS X Update Combined
    Downloading Ricoh Printer Software Update
    Verifying Ricoh Printer Software Update
    Waiting to install Ricoh Printer Software Update
    Downloading iWeb Update
    Verifying iWeb Update
    Waiting to install iWeb Update
    Downloading Java for Mac OS X 10.6 Update 4
    Verifying Java for Mac OS X 10.6 Update 4
    Waiting to install Java for Mac OS X 10.6 Update 4
    Downloading iTunes
    Verifying iTunes
    Waiting to install iTunes
    Downloading Remote Desktop Client Update x signature
    x RemoteDesktopClient.pkg.tar
    x RemoteDesktopClient.pkg
    x RemoteDesktopClient.pkg/Contents
    x RemoteDesktopClient.pkg/Contents/Archive.bom
    x RemoteDesktopClient.pkg/Contents/Archive.pax.gz
    x RemoteDesktopClient.pkg/Contents/Info.plist
    x RemoteDesktopClient.pkg/Contents/._RemoteDesktopClient.dist
    x RemoteDesktopClient.pkg/Contents/RemoteDesktopClient.dist
    x RemoteDesktopClient.pkg/Contents/Resources
    x RemoteDesktopClient.pkg/Contents/Resources/background.tif
    x RemoteDesktopClient.pkg/Contents/Resources/BundleVersions.plist
    x RemoteDesktopClient.pkg/Contents/Resources/cleanup_list
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/InstallationCheck.strings
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/da.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/deleteomatic
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/InstallationCheck.string s
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/Dutch.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/InstallationCheck.stri ngs
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/English.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/InstallationCheck.strings
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/fi.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/InstallationCheck.strin gs
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/French.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/InstallationCheck.strin gs
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/German.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Hints.plist
    x RemoteDesktopClient.pkg/Contents/Resources/InstallationCheck
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/InstallationCheck.stri ngs
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/Italian.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/InstallationCheck.str ings
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/Welcome.rtfd/icons.pn g
    x RemoteDesktopClient.pkg/Contents/Resources/Japanese.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/kickstart
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/InstallationCheck.strings
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/ko.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/makeuser
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/InstallationCheck.strings
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/no.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/package_version
    x RemoteDesktopClient.pkg/Contents/Resources/PlistBuddy
    x RemoteDesktopClient.pkg/Contents/Resources/postflight
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/cleanStartup.pl
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/copypackages
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/deleteObsoleteFil es
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/learnFiles
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/postflightKicksta rt
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/setupLaunchFiles
    x RemoteDesktopClient.pkg/Contents/Resources/postflightactions/setupLaunchFilesRFBEventHelper
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/setupMenuExtras
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_actions/stampBuildNumInPl istStrings
    x RemoteDesktopClient.pkg/Contents/Resources/postflight_kickstart
    x RemoteDesktopClient.pkg/Contents/Resources/postflightkickstartentries
    x RemoteDesktopClient.pkg/Contents/Resources/postflightmakeuserentries
    x RemoteDesktopClient.pkg/Contents/Resources/preflight
    x RemoteDesktopClient.pkg/Contents/Resources/preflight_actions
    x RemoteDesktopClient.pkg/Contents/Resources/preflight_actions/cleanAndPreflightK ickstart
    x RemoteDesktopClient.pkg/Contents/Resources/preflight_actions/maybeNukeVNCServer
    x RemoteDesktopClient.pkg/Contents/Resources/preflight_actions/moveAsideFirewallD efaultPrefsTiger
    x RemoteDesktopClient.pkg/Contents/Resources/preflight_kickstart
    x RemoteDesktopClient.pkg/Contents/Resources/preflightkickstartentries
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/InstallationCheck.strings
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/pt.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/InstallationCheck.stri ngs
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/Spanish.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/InstallationCheck.strings
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/sv.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/InstallationCheck.string s
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/zh_CN.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/Description.plist
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/InstallationCheck.string s
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/License.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/Localizable.strings
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/PantherSU.xml
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/ReadMe.rtf
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/SUDescription.html
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/Welcome.rtfd
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/Welcome.rtfd/icons.png
    x RemoteDesktopClient.pkg/Contents/Resources/zh_TW.lproj/Welcome.rtfd/TXT.rtf
    x RemoteDesktopClient.pkg/Contents/version.plist
    Verifying Remote Desktop Client Update
    Waiting to install Remote Desktop Client Update
    Checking packages…
    Installing
    Waiting for other installations to complete…2011-03-25 13:20:01.468 softwareupdate[1692:37b7] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    2011-03-25 13:20:01.471 softwareupdate[1692:37b7] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.server.SystemImageUtility"></bundle>
    2011-03-25 13:20:01.540 softwareupdate[1692:37b7] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.NetworkUtility"></bundle>
    2011-03-25 13:20:01.731 softwareupdate[1692:37b7] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.remoteinstallmacosx"></bundle>
    2011-03-25 13:20:01.734 softwareupdate[1692:37b7] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.server.SystemImageUtility"></bundle>
    2011-03-25 13:20:01.808 softwareupdate[1692:37b7] PackageKit: Missing bundle path, skipping: <bundle id="com.apple.NetworkUtility"></bundle>
    Validating packages…
    Writing files…
    Running package scripts…
    Removing old files…
    Optimizing system for installed software…
    Moving items into place…
    Registering updated components…
    And thats it, it stops there. Few clients completed the task, but the output says that they skipped the installation of all updates. In the case above, there is some skipping too, and I don't know what it means. Yesterday I left one client to this part where its Registering updated components.... , and today when I came in, it's still there, and the task is still running. When I update the clients with the Software Update from apple menu, it takes usually 10 minutes max to complete the whole process, download and install. After I restarted the same client and ran the manual Software Update from apple menu, it shows the same updates, it didn't do anything???
    Am I doing something wrong with the command?

    I am having the same issue. I send the unix command to some test clients to install all updates. The process never finishes and stays at "Registering updated companents....". (See screen shot)
    I have manually restarted some of the clients after waiting a very long time. All updates seem to have been installed. I am wondering why the task hangs at this point. I want to be able to ran ASU with this Unix method on the 450+ macs that I manage at work, but it scares me that the task never seems to finish.

  • Problem true/false with the command SHOW_LOV

    Hello,
    I have a simple problem with the command SHOW_LOL
    When i press an Button with this trigger:
    LIST_OF_VALUES('hallo','OKI');
    And my Procedire like this:
    PROCEDURE list_of_values(p_lov in VARCHAR2, p_text in VARCHAR2) IS
    v_lov BOOLEAN;
    BEGIN
    v_lov := SHOW_LOV(p_lov);
    IF v_lov THEN
    MESSAGE('You have just selected a '||p_text);
    ELSE
    MESSAGE('You have just cancelled the List of Values');
    END IF;
    END;
    When ever i pressed the button, the procedure jumps into the else sector, but why?
    Because it is true, or not?
    When i alter the variable like this:
    v_lov := true;
    then it runs.
    Can you help me?
    Greetings

    example of help forms 6i.
    DECLARE
    a_value_chosen BOOLEAN;
    BEGIN
    a_value_chosen := Show_Lov('my_employee_status_lov');
    IF NOT a_value_chosen THEN
    Message('You have not selected a value.');
    Bell;
    RAISE Form_Trigger_Failure;
    END IF;
    END;

  • Problems with 'df' command

    Hello folks,
    I'm having some problems with df command:
    Output:
    [nenemfromhell@myhost ~]$ df -h
    Filesystem Size Used Avail Use% Mounted on
    udev 999M 4.0K 999M 1% /dev
    none 999M 4.0K 999M 1% /dev
    /dev/sda8 133G 125G 2.0G 99% /media/DU
    shm 999M 0 999M 0% /dev/shm
    First: It doesn't show my root partition, but i can check it in gparted.
    Second: /dev/sda8 is a NTFS partition that its size is 12GB
    Thanks.
    Last edited by nenemfromhell (2012-01-20 03:37:30)

    Please include some detail as to how you solved the problem: https://wiki.archlinux.org/index.php/Fo … way_Street

  • Problem with rename command in ftp_command

    hi all ,
    i am facing a problem in renaming a file by rename command...
    this is how i am calling the fm ftp_command
    CALL FUNCTION 'FTP_COMMAND'
        EXPORTING
          handle        = g_handle
          command       = 'RENAME l_templine_file l_templine_file1'
        TABLES
          data          = l_i_temp_line
        EXCEPTIONS
          tcpip_error   = 1
          command_error = 2
          data_error    = 3
          OTHERS        = 4.
      IF sy-subrc <> 0.
    here l_templine_file   - dev00227.header.tmp  
    l_templine_file1 - dev00227.header.txt
    the fm is failing that the error meassage is FTP subcommand  error
    can u suggest where i am going wrong in this...

    hi,
    May be the command you are passing is incorrect syntax..
    Pass the values like this..
    l_templine_file =  'c:\dev00227.header.tmp' " this should be with path'
    l_templine_file1 = 'dev00227.header.txt'" this is just the name of file
    If not worked..then Try writing in small letters//
    write
    command = 'rename l_templinefile l_templine1'.
    rewards if useful
    Hope this solves..
    regards,
    nazeer
    Message was edited by:
            nazeer shaik
    Message was edited by:
            nazeer shaik
    Message was edited by:
            nazeer shaik

  • PROBLEM AXIOM AIR 61 IN LOGIC, DON'T REPRODUCE SOMETIMES THE TRACK RECORDED WITH AXIOM AIR 61

    I have some problems working on LogicX, cuz when i play the track that i recorded with the AXIOM AIR 61, sometimes don't sound nothing, and then when i put play again it sound the track, the think is that the LogicX. I don't know if it's a driver problem o something like that. Need Help Urgent!

    Folks.... I eventually solved the problem so if anyone else is interested here is the solution.
    The Axiom DirectLink for Logic/Garage band: Axiom_DirectLink_For_Logic_OSX_1_0_0-3.dmg
    Should install a file called Axiom.bundle in the directory
    MacintoshHD/Library/Application Support/MIDI Device Plug-ins/Axiom.bundle
    In my case (see above) the file had successfully installed to that location.  However, for some peculiar reason the permissions on the folder had been changed - current admin and users could not read or write.  I have no idea how that happened.  In any event, despite the fact that the file had been installed, when Logic was opened I was unable to see the Axiom as an available control surface to install.
    I reset the permissions and the problem was solved!
    It's only taken me a week to get there but now happy that it's OK.  The Axiom612 isn't cheap!
    I hope this helps someone else.

  • OID installed with 9iAS 9.0.2 on Windows 2000 problem

    I have just installed for the third time the infrastructure component of 9iAS release 2. The problem I am having is with accessing OID via the Directory Manager. When I try to log in using the orcladmin user I get the following error:
    "Bind of request to LDAP Server failed."
    I can access and get info out of the directory using a web browser and the ldap protocol with problems.
    Upon my first install of the infrastructure I found that OIOD installed on port 4032 for non SSL. I have since discovered why this happened and then actually performed a second install after a deinstall. Ever since OID has been installing on port 389 for non SLL I have had this problem. (2 installs produce exactly the same result).
    Any help or guidance will be greatly appreciated.

    I was experiencing the same problem. I have followed your instructions and got a different error message. I no longer get the binding error but now I get "LDAP server not up and running". How do I start the LDAP server?
    Many thanks for your help.
    Emmanuel Brown.

  • Change authpassword;oid and authpassword;orclcommonpwd with ldapmodify ?

    We have an OCS 10g on SLES9 testinstallation. Is it possible to change authpassword;oid and authpassword;orclcommonpwd in OID with ldapmodify ?
    Regards, Karsten Schnebel

    Depending on what you are trying to do, if you change the "userpassword" attribute the authpassword attribute is updated (it changes the user's portal password).

Maybe you are looking for

  • Limit of AppleTV's syncing to a single Mac Mini's iTunes

    What is the limit of AppleTV's that can sync to my Mac Mini's iTunes if all of the music is DRM-free? I'm looking to buy 10 or 15 AppleTV's. I find reports that 5 is limit if iTunes contains DRM-protected content, but I can't find a solid number if a

  • How to run the imported java class in form

    Help!!!!! Pls help me to run the imported java class in forms. Package is created in forms while imported one class called singlexml.class and that package has one procedure and one function. I just wanted to run that class.I mean the new package. Th

  • 1080i & apple tv 3

    i've just ordered an Apple TV3 - but now thinking i'm wasting cash as the highest output/resolution my TV can display is 1080i. am i right? should i just go for a (cheaper/refurb) Apple TV2 instead? many thanks, james.

  • Switching to mac from pc itunes question.

    I have an @#$load of movies, songs etc from itunes on my pc. I was thinking of finally making the switch to a Mac. Will I be able to copy my itunes files over? If so what would be the easiest way to do it? If I copied everything to an external drive

  • Load Balancing in Reverse Proxy  Mode

    Hi, Is the HTTP Load Balancing function working only in the Routing context or works it generally. I set the SJWPS as a Reverse Proxy like this NameTrans fn="reverse-map" from="http://server1.domain.de" to="http://proxy.domain.de" rewrite-location="f