Cannot import OD archive on standalone server to promote to OD master

According to page 169 of th OD server manual, I should be able to restore an OD archive on a standalone server - which will then promote it to OD master. The "..." in the Archive/Restore window is shaded and will not allow me to choose a file to restore from. Tried dragging it in too... didn't work.
Any ideas?
Thanks.

Hi
It also says on Page 168:
Instead of restoring an Open Directory master from an archive
you may get better results by promoting a replica to be the master.
The replica may have more recent directory and authentication data than the archive.
Restoring an LDAP database in my view should be done after promotion to Open Directory Master. If the DNS Service is not configured and running then I can’t see how restoring the LDAP database to a Standalone server will restore that service. I also happen to think that if you restore an LDAP database from an OD Master that was having problems then you could possibly be restoring the problem again. Nothing needs to be restored to a Replica as the Replica will pick up what it needs from the Master. Page 169 of the Manual also says:
An Open Directory master requires properly configured DNS so it can
provide single sign-on Kerberos authentication.
Tony

Similar Messages

  • Cannot import VM template after VM server IP address chanegd

    My VM server and pool IP got changed. I manage to get it back to active status. Now my problem is I cannot see any template in the seed_pool folder. Is there any metadata to sync up?
    VM 2.2
    Single server with server pool master, utility and vm server.

    If you deleted the server pool and recreated it all information of the serverpool has been dropped.
    Fortunately your server still has the information.
    Unfortunately you need to reimport everything by hand... There is no option like "sync" my new server.
    This import can be done via the OVM Manager:
    Resources => Virtual Machine Image => Import.
    Regards
    Sebastian

  • Importing user from standalone server

    Hello. I am in the process of changing my server from standalone server to open directory. I was told that I will have to delete all the users in the local directory and the re-create them in open directory. I was wondering if anyone knows if this includes all the users, or just the ones I personally created (i.e. do I need to delete users who were always there, like ftp user). Also, does anyone know how to import the users to open directory instead of having to re-enter all of the information? Any help would be greatly appreciated. Thank you.

    I never actually found out the answer to this, but I see that the original users are automatically in the search path, so I'm not worried about it anymore.

  • Need help--cannot import hotel.dmp into chinese characterset server

    I'm from china.Because my oracle8i use
    chinese characterset, so I cannot import
    this file into my oracle.
    Has anybody can help me?
    Thanks you very much!!

    I seem to recall that SQL*Loader was capable of doing these kinds of language translations for you. You needed to account for machine language, character set, and datatype all of which could be manipulated either via FTP parameters when a file was transferred (tell ftp not to convert between machine languages, tell sqlloader the machine language being used, tell it the character set, etc.) I found examples of this by scouring the internet for sqlloader examples, but unfortunately I no long have then handy.
    Good luck.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by potian:
    I'm from china.Because my oracle8i use
    chinese characterset, so I cannot import
    this file into my oracle.
    Has anybody can help me?
    Thanks you very much!!<HR></BLOCKQUOTE>
    null

  • 11.2.0.2 Grid Installation for a Standalone Server FAILED!

    OS: OEL-5.5 x86_64 (kernel-2.6.18-194.17.4.0.1.el5, glibc-2.5-49.el5_5.7)
    Product: Oracle 11gR2 (11.2.0.2.0) x86_64 for Linux
    Hi,
    I was trying to perform a clean and full 11.2.0.2 installation for a Standalone Server (Single database + ASM + Restart), but unlike 11.2.0.1, this standalone patch, shipped as set of full installation files, has serious flaws mainly due to insane installation and configuration scripts. My environment is as follows:
    ORACLE_BASE=/opt/oracle
    ORACLE_HOME=/opt/oracle/product/11.2.0/db_1
    GRID_HOME=/opt/oracle/product/11.2.0/grid
    all owned by oracle:dba. ASMLib was configured with four 256 GB partitions on four physical disks.
    1. During grid installation the Prepare, Copy files, Link binaries, Setup files, Execute Root Scripts (root.sh), Update Inventory, Oracle Net Configuration Assistant all succeeded, but ASM Configuration Assistant FAILED and installation couldn't continue. That was because root.sh script (and inside it calling scripts) changed the ownership of ORACLE_BASE and GRID_HOME to root:dba, so that admin and diag directories creations in ORACLE_BASE were not permitted. After fixing that manually as root (immediately after executing root.sh), the installation continues and succeeds.
    2. During installation of Client software the error message window appears stating that cannot find the /opt/oracle/product/11.2.0/db_1/oui/bin/runInstaller.var file. By pressing the Continue button the installation continues ignoring this.
    3. If Oracle Scheduler Agent is selected for installation during Client software installation, the Oracle Enterprise Manager 11g Database Control Release 11.2.0.2.0 cannot start (https problem - cannot establish connection). To fix this, I had to deinstall Client software and install it again without Oracle Scheduler Agent.
    4. The Performance window in Enterprise Manager 11g Database Control Release 11.2.0.2.0 cannot display any graph ("Initializing" and "Transferring data from localhost..." never end).
    Are those issues known issues? If they are, why did Oracle ship that standalone patch without testing it before? Given that prior release (11.2.0.1) was free of any errors above, it is really beyond me to figure out this negligence.
    NJ

    Are those issues known issues? Have you created service request ? That would be much better to be sure about the workaround you found.
    Nicolas.

  • How to run Standalone Server as a Service in Linux

    Hi,
    I need run an Standalone server in Java as a Service in Linux RedHat?
    How to do this? some example or link to helpful sample code?
    How I can execute as a service in Linux RedHat 9 the following server Application?
    import java.io.*;
    import java.nio.*;
    import java.nio.channels.*;
    import java.nio.channels.spi.*;
    import java.net.*;
    import java.util.*;
    // Listen on a port for connections and write back the current time.
    public class NBTimeServer_1 {
    private static final int DEFAULT_TIME_PORT = 8900;
    // Constructor with no arguments creates a time server on default port.
    public NBTimeServer_1() throws Exception {
    acceptConnections(this.DEFAULT_TIME_PORT);
    // Constructor with port argument creates a time server on specified port.
    public NBTimeServer_1(int port) throws Exception {
    acceptConnections(port);
    // Accept connections for current time. Lazy Exception thrown.
    private static void acceptConnections(int port) throws Exception {
    // Selector for incoming time requests
    Selector acceptSelector = SelectorProvider.provider().openSelector();
    // Create a new server socket and set to non blocking mode
    ServerSocketChannel ssc = ServerSocketChannel.open();
    ssc.configureBlocking(false);
    // Bind the server socket to the local host and port
    //InetAddress lh = InetAddress.getLocalHost();
    InetSocketAddress isa = new InetSocketAddress(port);
    ssc.socket().bind(isa);
    SelectionKey acceptKey = ssc.register(acceptSelector,
    SelectionKey.OP_ACCEPT);
    int keysAdded = 0;
    while ((keysAdded = acceptSelector.select()) > 0) {
    // Someone is ready for I/O, get the ready keys
    Set readyKeys = acceptSelector.selectedKeys();
    Iterator i = readyKeys.iterator();
    // Walk through the ready keys collection and process date requests.
    while (i.hasNext()) {
    SelectionKey sk = (SelectionKey)i.next();
    i.remove();
    ServerSocketChannel nextReady =
    (ServerSocketChannel)sk.channel();
    // Accept the date request and send back the date string
    Socket s = nextReady.accept().socket();
    // Write the current time to the socket
    ObjectOutputStream oos = new ObjectOutputStream(s.getOutputStream());
    oos.writeObject(new Zaehler("usr","msg"));
    I thanks in Advance your valuable help.

    Crossposted.

  • BODS 4.2 Cannot import the metadata table, RFC_ABAP_INSTALL_AND_RUN syntax error

    Hi all, we installed BODS 4.2 server to substitute a 4.1, but we are facing the error:
    Error: Cannot import the metadata table <name=T001>
    RFC CallReceive error <Function /BODS/RFC_ABAP_INSTALL_AND_RUN: RFC_ABAP_RUNTIME_FAILURE -(Exception Key: Syntax error in program /BODS/SAPLBODS....
    We already tried the solution for when people get the error related to unicode.
    Also, we are able to pull data via extractors, it only fails when loading Tables....
    Any help is greatly appreciated.

    Dear,
    You will have to import the new ABAP Function Group "BODS/BODS".
    Here are some details:
    Installing Functions on the SAP Server
    SAP BusinessObjects Data Services provides functions that support the use of the ABAP, BAPI, and
    IDoc interfaces on SAP servers. You will need some or all of these functions in the normal operation
    of the software in an SAP environment. These functions perform such operations as dynamically loading
    and executing ABAP programs from Data Services, efficiently running preloaded ABAP programs,
    allowing for seamless metadata browsing and importing from SAP servers, and reporting the status of
    running jobs. Some of these functions read data from SAP NetWeaver BW sources.
    You must upload the provided functions to your SAP server in a production environment. It is
    recommended that you always upload the functions to your SAP server whether you are in a
    development, test, or production environment. The functions provide seamless integration between
    Data Services and SAP servers.
    The default installation places two function module files for SAP servers in the ...\Data
    Services\Admin\R3_Functions\transport directory. You then upload these files to SAP servers
    using the SAP Correction and Transport System (CTS) or manually. Using CTS allows for version
    control as the functions evolve across releases.
    The installation provides two versions of transport files (depending on the server version you are using)
    to install the functions on the SAP server. To obtain the names of the latest transport files for installing
    or upgrading these SAP server functions, see the readme.txt file
    And I've found those files and text files in the local install folder....in:
    Program Files\SAP BusinessObjects\Data Services\admin\R3_Functions
    (that's where I've installed it).
    There you'll find some descriptive txt as how to proceed.
    After installing, it might happen that the executing user is missing some authorizations.
    Here my authorizations team helped me by tracing the user and then adding the necessary rights.
    Sure hope this will help you.

  • Cannot import certificate

    Hey,
    I've purchased a domain and a SSL certificate from Comodo but I cannot import it via the server app. The certificate consist of 5 files but the window where i'm supose to drag files doesn't seem to do anything - the import button is still grayed out after dragging the files in. I guess that it needs some .key file which i do not have. I'm new to this so i'm not sure what am I suppose to do.
    Any help would be appreciated.
    P.S. And how can I delete the "self signed" from the server and start everything from clean so to speak?

    Ferry Gunawan
    good to hear it. Please close this thread if your issue has been resolved.How to close a discussion and why
    Regards,
    JK

  • Cannot find a report for SQL Server monitoring

    We installed a SCOM 2012 environment recently and imported the SQL Server Management packs successfully. SQL Servers are being monitored. 
    However, in the reporting section, i cannot find a group for SQL Server Reporting. All other show up ( Active Directory, Appication Monitoring, Web monitoring, etc) Just none for the SQL Reporting.
    Please help

    Hi,
    I assume that you miss some SQL management packs, would you please re-download the management pack here and import it:
    https://www.microsoft.com/en-hk/download/details.aspx?id=10631
    After successful importing, you should see it under reporting workspace:
    If you still cannot see it, please check operation manager event logs for more information to help to troubleshoot this issue.
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Cannot import package org.apache.catalina in Tomcat 4.1

    Hi,
    Don't know why I cannot import org.apache.catalina.realm.RealmBase.*; or org.apache.catalina.*; but no problem in importing org.apache.*; ?
    error prompts "package org.apache.catalina.realm.RealmBase does not exist " Thanks.
    Jackie

    Yes, I can find org.apache.catalina.jar in /lib but why my jsp program cannot locate this class? Something wrong with my web.xml / server.xml? Thank you.

  • Cannot import DCs, necessary for Web Dynpro use in CAF GP

    Hello!
    I'm a newbie in SAP technologies. I want to develop a Web Dynpro (WD) application, which will be used as UI in CAF GP. The problem is that I cannot import necessary DCs for this!
    As I understand, the following ones are necessary to develop a WD app for use in GP:
    caf/eu/gp/api
    caf/eu/gp/api/wd
    com.sap.security.api.sda
    (according to http://help.sap.com/saphelp_nw2004s/helpdata/en/b2/06ae42848bb211e10000000a155106/content.htm)
    I acted as it is described in "Implementing a Web Dynpro CO which Implements the GP Interface" (https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/50d74ada-0c01-0010-07a8-8c118d408e59).
    Actually, those DCs don't exist in my local configuration - so, as it is told in "Implementing a Web Dynpro CO which Implements the GP Interface", I tried to get the DCs from remote host (there's a server in Intranet with all stuff installed). In NetWeaver Dev Studio, in "Preferences -> Development Configuration Pool" I have written http://<local server>:50100. Actually, I don't know, what port should be used - I've written the one, which handles requests to SAP NetWeaver Portal. The response to "ping" button click is "HTTP response code: 403 (Forbidden)".
    I tried to check the status of SLD, and went to http://<local server>:50100/sld. I have successfully logged in, but when I try to go to tab "Administration", I receive the message " 403 Forbidden. You are not authorized to view the requested resource."
    Is there a problem with my roles & groups? Actually, I'm in group SAP_SLD_ADMINISTRATOR.
    What is wrong?
    How can I get the detailed information about the error (log files or something)?
    Thanks in advance!

    Barry, as I understand, I have no these roles, available for granting. Maybe, I've acted in a wrong way (the version of SAP NetWeaver is "Release 2004s".):
    I logged in NetWeaver portal as administrator, went to section "User administration", selected my user, opened the tab "Assigned Groups" and searched for the groups you've written - I found no one

  • FTP error: Unable to start a standalone server

    Hello,
    I've installed PureFTP Manager, but the following error messages appear when I use different ftp clients:
    [Error] Unable to start a standalone server: [Address already in use]
    Error: the server dropped the connection (it may be too busy).
    I've found a similar problem posted to a number of forums (using different ftp server software) and the explanation seems to be that another program is tying up the port. The solution is to find out which program and disable it. However, this involves using the Terminal and commands, which puts me in deep water.
    Could someone please offer a solution?
    I have the Mac and a PC connected to the modem/router.
    I have a static IP address. LAN IP on the Mac: 10.1.1.2 which I'm entering to test.
    I have FTP access disabled in the Mac OS firewall settings.
    FTP access is not blocked by service filtering in the modem/router's firewall settings.
    I've set up port-forwading:
    Private IP: 10.1.1.2
    Protocal: TCP
    Port Start: 21
    Port End: 21
    Port Map: 21
    However, these saved settings disappear the next time I log in to the router's set up window.
    G4 DP 867 MHZ   Mac OS X (10.2.x)   Max OS X (10.2.8)

    Hello again gordon6010,
    What I was intending to convey is that the message you see on your display is a printer software related error. By removing and reinstalling the drivers you may be able to correct the .dll error.
    In regards to the beginning of the error message "Unable to Start a DCOM Server",  I recommend this document on how to Enable or Disable DCOM. This should help if the DCOM is disabled on your desktop. For further assistance, I will need to ask you a few questions:
    What is the Product and Model Number of your desktop computer?
    What version of Windows do you have installed on your computer?
    Has your computer completed all of its important Windows Updates?
    Have you updated your HP drivers using the HP Support Assistant?
    Are you trying to install a printer on your network or specifically on your computer?
    As an aside, there is no higher level technician as this is a free peer-to-peer forum of support. Please re-post with the results of your troubleshooting, and I look forward to your reply!
    Regards
    MechPilot
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the right to say “Thanks” for helping!

  • IMovie 11 import camera/archive not displaying movies, import not possible

    Guys,
    hope anyone can help me with this one:
    I had some issues with my iMac lately crashing with kernel panics. It crashed (kernel panic) while i was importing some HD material into iMovie 11. ever since, I cannot see any movie thumbnails in the import view (the actual movies are still on the camera/SD card. Also importing from iSight is not possible. The green light next or the camera is on, while no window or an empty import window is visible.
    I did delete the whole iLife 11 suit, incl. all references to iMovies (preferences,...) and then a complete reinstall and updated all again.
    Unfortunately no luck so far.
    Any tips or thoughts what I could do next as I really don't want wipe and reinstall all on my mac again?
    Cheers from DownUnder
    Le Jones

    Hi,
    My problem is very similar. I am able to choose the Archive folder and import the footage that way.  However, I am only able to do that once.  If I try again, it states the file is not a camera archive format file. 
    The only way I can get it to work again is to completely close out iMovie and restart.  Then I can import an archived file.  But then again, only once before I have to restart iMovie to get it to work again.
    Anyone have any workarounds?
    Thanks

  • Crystal Report 2008 and SAP B1 8.8 Cannot import as report

    Dear Friends,
    I has a problem a bout crystal report 2008 SAP with SAP B1 8.8 cannot imported as "Report", if imported as "layout" crystal report working fine, any solution for this, i'am using SAP 8.8 PL 10 if any bug with crystal report in this page level?
    did any body now the solution?

    Hi,
    Try in other way, Open rpt file.
    In Add-in menu > SAP > Save
    provide necessary detail (Company Name,License Server,SQL User/Password)
    "save as per your need"
    Try to generate by this way...
    Thanks
    Shamseer

  • Cannot import specific MOV file into iMovie. HELP please!

    I have been using iMovie for many years and am not a novice.
    For some reason, I have a specific MOV file that I cannot import into iMovie 10.0.5.  When I try to import the file, I get an error message:
    "No Importable Files: None of the selected files or folders can be imported"
    The file is NOT corrupt and plays perfectly in QuickTime. Interestingly, when I try to import the movie in iMovie, it shows 0.0 sec duration, even though it load/plays perfectly in iMovie with a duration of 54:45.  See file A1 below:
    I even tried converting the file to M4V in Quicktime, but iMovie would still not import the new M4V file.
    Any suggestions?  This is an important Movie, I cannot re-record it, and I need to edit it in iMovie.
    Thanks in advance!

    I copied it below.  I would appreciate any suggestions!
    Basic information:
    General
    Format : MPEG-4
    Format profile : QuickTime
    Codec ID : qt 
    File size : 78.9 MiB
    Duration : 54mn 44s
    Overall bit rate mode : Variable
    Overall bit rate : 201 Kbps
    Encoded date : UTC 2014-12-10 21:01:49
    Tagged date : UTC 2014-12-10 21:01:58
    Writing library : Apple QuickTime
    Video
    ID : 1
    Format : AVC
    Format/Info : Advanced Video Codec
    Format profile : [email protected]
    Format settings, CABAC : Yes
    Format settings, ReFrames : 2 frames
    Format settings, GOP : M=2, N=30
    Codec ID : avc1
    Codec ID/Info : Advanced Video Coding
    Duration : 54mn 44s
    Bit rate mode : Variable
    Bit rate : 63.4 Kbps
    Maximum bit rate : 768 Kbps
    Width : 1 728 pixels
    Height : 1 080 pixels
    Display aspect ratio : 16:10
    Frame rate mode : Variable
    Frame rate : 0.294 fps
    Original frame rate : 25.000 fps
    Minimum frame rate : 0.062 fps
    Maximum frame rate : 50.000 fps
    Color space : YUV
    Chroma subsampling : 4:2:0
    Bit depth : 8 bits
    Scan type : Progressive
    Bits/(Pixel*Frame) : 0.116
    Stream size : 24.9 MiB (32%)
    Encoded date : UTC 2014-12-10 21:01:38
    Tagged date : UTC 2014-12-10 21:01:58
    Audio
    ID : 2
    Format : AAC
    Format/Info : Advanced Audio Codec
    Format profile : LC
    Codec ID : 40
    Duration : 54mn 38s
    Source duration : 54mn 38s
    Bit rate mode : Constant
    Bit rate : 128 Kbps
    Channel(s) : 1 channel
    Channel positions : Front: C
    Sampling rate : 44.1 KHz
    Compression mode : Lossy
    Stream size : 48.3 MiB (61%)
    Source stream size : 48.3 MiB (61%)
    Expanded information:
    General
    Count : 284
    Count of stream of this kind : 1
    Kind of stream : General
    Stream identifier : 0
    Count of video streams : 1
    Count of audio streams : 1
    Video_Format_List : AVC
    Video_Format_WithHint_List : AVC
    Codecs Video : AVC
    Audio_Format_List : AAC
    Audio_Format_WithHint_List : AAC
    Audio codecs : AAC LC
    File name : OB
    File extension : mov
    Format : MPEG-4
    Format/Extensions usually used : mp4 m4v m4a m4b m4p 3gpp 3gp 3gpp2 3g2 k3g jpm jpx mqv ismv isma f4v
    Commercial name : MPEG-4
    Format profile : QuickTime
    Internet media type : video/mp4
    Codec ID : qt 
    Codec ID/Url : http://www.apple.com/quicktime/download/standalone.html
    Codec : MPEG-4
    Codec/Extensions usually used : mp4 m4v m4a m4b m4p 3gpp 3gp 3gpp2 3g2 k3g jpm jpx mqv ismv isma f4v
    File size : 78.88 MiB
    Duration : 00:54:44.630
    Overall bit rate mode : Variable
    Overall bit rate : 201 Kbps
    Stream size : 5.71 MiB (7%)
    Proportion of this stream : 0.07233
    HeaderSize : 1305394
    DataSize : 81406130
    FooterSize : 0
    IsStreamable : Yes
    Encoded date : UTC 2014-12-10 21:01:49
    Tagged date : UTC 2014-12-10 21:01:58
    File last modification date : UTC 2014-12-10 21:47:04
    File last modification date (local) : 2014-12-10 16:47:04
    Writing library : Apple QuickTime
    Writing library/Name : Apple QuickTime
    Video
    Count : 274
    Count of stream of this kind : 1
    Kind of stream : Video
    Stream identifier : 0
    StreamOrder : 0
    ID : 1
    Format : AVC
    Format/Info : Advanced Video Codec
    Format/Url : http://developers.videolan.org/x264.html
    Commercial name : AVC
    Format profile : [email protected]
    Format settings : CABAC / 2 Ref Frames
    Format settings, CABAC : Yes
    Format settings, ReFrames : 2 frames
    Format settings, GOP : M=2, N=30
    Internet media type : video/H264
    Codec ID : avc1
    Codec ID/Info : Advanced Video Coding
    Codec ID/Url : http://www.apple.com/quicktime/download/standalone.html
    Codec : AVC
    Codec/Family : AVC
    Codec/Info : Advanced Video Codec
    Codec/Url : http://developers.videolan.org/x264.html
    Codec/CC : avc1
    Codec profile : [email protected]
    Codec settings : CABAC / 2 Ref Frames
    Codec settings, CABAC : Yes
    Codec_Settings_RefFrames : 2
    Duration : 00:54:44.630
    Bit rate mode : Variable
    Bit rate : 63.4 Kbps
    Maximum bit rate : 768 Kbps
    Width : 1 728 pixels
    Height : 1 080 pixels
    Pixel aspect ratio : 1.000
    Display aspect ratio : 16:10
    Rotation : 0.000
    Frame rate mode : Variable
    Frame rate : 0.294 fps
    Original frame rate : 25.000 fps
    Minimum frame rate : 0.062 fps
    Maximum frame rate : 50.000 fps
    Frame count : 967
    Resolution : 8 bits
    Colorimetry : 4:2:0
    Color space : YUV
    Chroma subsampling : 4:2:0
    Bit depth : 8 bits
    Scan type : Progressive
    Interlacement : Progressive
    Bits/(Pixel*Frame) : 0.116
    Stream size : 24.9 MiB (32%)
    Proportion of this stream : 0.31508
    Encoded date : UTC 2014-12-10 21:01:38
    Tagged date : UTC 2014-12-10 21:01:58
    Buffer size : 768000
    Audio
    Count : 222
    Count of stream of this kind : 1
    Kind of stream : Audio
    Stream identifier : 0
    StreamOrder : 1
    ID : 2
    Format : AAC
    Format/Info : Advanced Audio Codec
    Commercial name : AAC
    Format profile : LC
    Codec ID : 40
    Codec : AAC LC
    Codec/Family : AAC
    Codec/CC : 40
    Duration : 00:54:38.179
    Source duration : 00:54:38.193
    Bit rate mode : Constant
    Bit rate : 128 Kbps
    Channel(s) : 1 channel
    Channel positions : 1/0/0
    ChannelLayout : C
    Sampling rate : 44.1 KHz
    Samples count : 144567694
    Frame count : 141179
    Source frame count : 141180
    Compression mode : Lossy
    Stream size : 48.3 MiB (61%)
    Proportion of this stream : 0.61259
    Source stream size : 48.3 MiB (61%)
    Source_StreamSize_Proportion : 0.61259

Maybe you are looking for

  • Problem with apply changes on master-detail with respect to date handling

    dear sir, i have one tabler where in i have created from_Date and to_date as varchar2(30) each. I stored the from date as 'dd-mon-yyyy hh24:mi' I had written before header process for calculating no of days between from_Date and to_Date using the sai

  • Itunes 10.5.3 will not download/update

    "Files shared by these updates" has an invalid signature, it will not be installed ----- This  is the error i receive on both of my computers, there for I can not use my itunes with the new iphone I purchased because the older version of itunes does

  • How to reference variable values in a BW Web Template

    Hi All, I'm having a problem which I hope someone can help me with. OVERVIEW I've developed a BW Web template with (among other things) a TEXTELEMENTS Web Item and a TABLE Web Item. I've enhanced the context menu so that when a user selects a row wit

  • Monitoring an iWeb MobileMe hosted site

    Hi Just wondering if anyone knows of a way or an app to monitor your MobileMe hosted iWeb site, for such info as when a comment is posted to a blog, Traffic, who/what ip's are hitting the site etc Thanks

  • HT5622 I forgot my security question answers. What do I do

    I went to buy something on iTunes and it asked for my security questions out of no where and I made my account hecka long ago so I don't remember the answers and now it won't let me buy anything or do anything with my account. How do I fix that?