ReDeploying Portal Content - Need Help Plz.

Hello All,
Is there is way to redeploy all Portal Content. All of a sudden the Links and Iview in the my Portal are not working it keep saying that it cannot find the iViews and the Application is missing, can some one please help me with this.
Best Wishes,
John.
Message was edited by: John Bray

Hi John,
if you have a backup of your portal server file system you could restore from the backup the ...\irj\root\WEB-INF\deployment directory (with subfolder) and remove from every PAR-File the .bak extension.
By that all PARs will be deployed on the next server startup.
If the PCD content (iViews,Pages,etc) is missing, you need to restore the DB or you could import a transport package from another server.
Hope this helps,
Robert

Similar Messages

  • Problem with changing flash content - Need help

    I need help in changing  the flash content. Here is my proble,
    1) I bought a flash template (I will call this Original) from a website and paid some money to customize my menu,logo and background color.
    2) After they finished it they sent me several files. Like 1) index.html, .swf, psd, .fla. In all the files .html,.swf (the video) and .psd I am seeing my customize changes (logo,menu and background color). But the .fla file they sent me is still shows everything from original template. It doesn't have my logo, menu or background color.
    3) I asked their technical support and they walk me through. a) Open the .fla file in flash pro. b) Change the content c) Hit Ctrl+Enter and it will export the new .swf file to the flash folder. d) Make sure I delete the video from flash folder and replace the name with the one I created.
         I did all these steps. But the problem is the .SWF that i generated is showing everything from the orignal template. It did change the content but I don't see any of my customize request. (Menu, logo or color)
    4) Then I open the index.html and I DID NOT see any of the changes in the content.
    My feeling is they did not provide me the correct .FLA file. I really need your help.
    My confusion is a) Have they provide me the correct .FLA file or I am doing something wrong. b) When I generated the new .swf video and renamed it properly why it didn't reflect in the index.html file.
    I am really going back and forth with them since last 15 days and its not going anywhere. I really appreciate any help.
    Thanks,
    Jessy

    Unfortunately, if you have not enough knowledge about using Flash, and do not want to pay to have this done for you, the folks who did this for you are likely going to be the only ones who can help you resolve it.  They should be able to provide the edited fla and the new swf if they are in any way a credible/reliable business.... which at this point sounds like they are not.

  • Portal Content Transport help!

    Hi,
         I created some "Remote Delta Links" in my Development Portal that point to IViews on my Dev BI System.  When I transport the "Remote Delta Links" from my Dev Portal to my Prd Portal the reference is still to my Dev BI System. 
    Why would they still be point to my Dev Producer when transported to my Production Portal?  Sounds like a transport configuration issue.
    Anyone?

    Hmmm..  It looks like the Producer on the Development Portal and the Production Portal have to have the same name! 
    Unlike in non-portal BI transports where the Development ID is changed over to the Production ID...
    read step 1 real carefully at this link.
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/45/2458b9df4a6d95e10000000a114a6b/content.htm">Transporting Portal Content Help Link</a>

  • Need Help Need Help PLZ PLZ

    my problem is that i have made a calendar by using jtable and i can't highlight or put any sign to keep track on date, but the biggest problem is that i have to submit this project after two days, so i will appreciate any help or tips from you. Here is my code:
    CODE
    /*Contents of CalendarProgran.class */
    //Import packages
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.table.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    public class CalendarProgram{
    static JLabel lblMonth, lblYear;
    static JButton btnPrev, btnNext;
    static JTable tblCalendar;
    static JComboBox cmbYear;
    static JFrame frmMain;
    static Container pane;
    static DefaultTableModel mtblCalendar; //Table model
    static JScrollPane stblCalendar; //The scrollpane
    static JPanel pnlCalendar;
    static int realYear, realMonth, currentYear, currentMonth;
    public static void main (String args[]){
    //Look and feel
    try {UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());}
    catch (ClassNotFoundException e) {}
    catch (InstantiationException e) {}
    catch (IllegalAccessException e) {}
    catch (UnsupportedLookAndFeelException e) {}
    //Prepare frame
    frmMain = new JFrame ("Gestionnaire de clients"); //Create frame
    frmMain.setSize(330, 375); //Set size to 400x400 pixels
    pane = frmMain.getContentPane(); //Get content pane
    pane.setLayout(null); //Apply null layout
    frmMain.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //Close when X is clicked
    //Create controls
    lblMonth = new JLabel ("January");
    lblYear = new JLabel ("Change year:");
    cmbYear = new JComboBox();
    btnPrev = new JButton ("<<");
    btnNext = new JButton (">>");
    mtblCalendar = new DefaultTableModel(){public boolean isCellEditable(int rowIndex, int mColIndex){return false;}};
    tblCalendar = new JTable(mtblCalendar);
    stblCalendar = new JScrollPane(tblCalendar);
    pnlCalendar = new JPanel(null);
    //Set border
    pnlCalendar.setBorder(BorderFactory.createTitledBorder("Calendar"));
    //Register action listeners
    btnPrev.addActionListener(new btnPrev_Action());
    btnNext.addActionListener(new btnNext_Action());
    cmbYear.addActionListener(new cmbYear_Action());
    //Add controls to pane
    pane.add(pnlCalendar);
    pnlCalendar.add(lblMonth);
    pnlCalendar.add(lblYear);
    pnlCalendar.add(cmbYear);
    pnlCalendar.add(btnPrev);
    pnlCalendar.add(btnNext);
    pnlCalendar.add(stblCalendar);
    //Set bounds
    pnlCalendar.setBounds(0, 0, 320, 335);
    lblMonth.setBounds(160-lblMonth.getPreferredSize().width/2, 25, 100, 25);
    lblYear.setBounds(10, 305, 80, 20);
    cmbYear.setBounds(230, 305, 80, 20);
    btnPrev.setBounds(10, 25, 50, 25);
    btnNext.setBounds(260, 25, 50, 25);
    stblCalendar.setBounds(10, 50, 300, 250);
    //Make frame visible
    frmMain.setResizable(false);
    frmMain.setVisible(true);
    //Get real month/year
    GregorianCalendar cal = new GregorianCalendar(); //Create calendar
    realMonth = cal.get(GregorianCalendar.MONTH); //Get month
    realYear = cal.get(GregorianCalendar.YEAR); //Get year
    currentMonth = realMonth; //Match month and year
    currentYear = realYear;
    //Add headers
    String[] headers = {"Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"}; //All headers
    for (int i=0; i<7; i++){
    mtblCalendar.addColumn(headers);
    tblCalendar.getParent().setBackground(tblCalendar.getBackground()); //Set background
    //No resize/reorder
    tblCalendar.getTableHeader().setResizingAllowed(false);
    tblCalendar.getTableHeader().setReorderingAllowed(false);
    //Single cell selection
    tblCalendar.setColumnSelectionAllowed(true);
    tblCalendar.setRowSelectionAllowed(true);
    tblCalendar.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
    //Set row/column count
    tblCalendar.setRowHeight(38);
    mtblCalendar.setColumnCount(7);
    mtblCalendar.setRowCount(6);
    //Populate table
    for (int i=realYear-100; i<=realYear+100; i++){
    cmbYear.addItem(String.valueOf(i));
    //Refresh calendar
    refreshCalendar (realMonth, realYear); //Refresh calendar
    public static void refreshCalendar(int month, int year){
    //Variables
    String[] months = {"January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"};
    int nod, som; //Number Of Days, Start Of Month
    //Allow/disallow buttons
    btnPrev.setEnabled(true);
    btnNext.setEnabled(true);
    if (month == 0 && year <= realYear-10){btnPrev.setEnabled(false);} //Too early
    if (month == 11 && year >= realYear+100){btnNext.setEnabled(false);} //Too late
    lblMonth.setText(months[month]); //Refresh the month label (at the top)
    lblMonth.setBounds(160-lblMonth.getPreferredSize().width/2, 25, 180, 25); //Re-align label with calendar
    cmbYear.setSelectedItem(String.valueOf(year)); //Select the correct year in the combo box
    //Clear table
    for (int i=0; i<6; i++){
    for (int j=0; j<7; j++){
    mtblCalendar.setValueAt(null, i, j);
    //Get first day of month and number of days
    GregorianCalendar cal = new GregorianCalendar(year, month, 1);
    nod = cal.getActualMaximum(GregorianCalendar.DAY_OF_MONTH);
    som = cal.get(GregorianCalendar.DAY_OF_WEEK);
    //Draw calendar
    for (int i=1; i<=nod; i++){
    int row = new Integer((i+som-2)/7);
    int column = (i+som-2)%7;
    mtblCalendar.setValueAt(i, row, column);
    //Apply renderers
    tblCalendar.setDefaultRenderer(tblCalendar.getColumnClass(0), new tblCalendarRenderer());
    static class tblCalendarRenderer extends DefaultTableCellRenderer{
    public Component getTableCellRendererComponent (JTable table, Object value, boolean selected, boolean focused, int row, int column){
    if (column == 0 || column == 6){
    setBackground(new Color(255, 220, 220));
    else{
    setBackground(new Color(255, 255, 255));
    super.getTableCellRendererComponent(table, value, selected, focused, row, column);
    return this;
    static class btnPrev_Action implements ActionListener{
    public void actionPerformed (ActionEvent e){
    if (currentMonth == 0){ //Back one year
    currentMonth = 11;
    currentYear -= 1;
    else{ //Back one month
    currentMonth -= 1;
    refreshCalendar(currentMonth, currentYear);
    static class btnNext_Action implements ActionListener{
    public void actionPerformed (ActionEvent e){
    if (currentMonth == 11){ //Foward one year
    currentMonth = 0;
    currentYear += 1;
    else{ //Foward one month
    currentMonth += 1;
    refreshCalendar(currentMonth, currentYear);
    static class cmbYear_Action implements ActionListener{
    public void actionPerformed (ActionEvent e){
    if (cmbYear.getSelectedItem() != null){
    String b = cmbYear.getSelectedItem().toString();
    currentYear = Integer.parseInt(b);
    refreshCalendar(currentMonth, currentYear);

    Welcome to the forum. You will need to learn a couple things if you want to receive help and not get flamed to death:
    1) All code needs to be posted within code tags. You can read up on them here:
    http://forum.java.sun.com/help.jspa?sec=formatting
    You want to make it as easy as possible for the volunteers here to help you. That means making your code readable.
    2) Do not put "urgent" "need help" "hurry please" in your posts if you are smart. Definitely don't put them in the header of the post. The urgency is yours, not ours. Putting that stuff in there only turns people off. If you have a problem deemed worthwhile by the volunteers here, if you have put thought into your post so you make it easy as possible for others to help you, and if you show some effort on your own, you are almost guaranteed to get timely help.
    3) List all error messages completely.
    4) Keep all necessary code, get rid of all unnecessary code. Your code should be compilable on its own, but it should not contain anything that isn't necessary for demonstrating your problem.
    5) Specifics:
    Why are you throwing out all those exceptions?
    Why is everything in one big huge GUI class? Break your code down into functional units. Make sure the logic works in a non-GUI way, THEN add a GUI class.
    Why the huge main method? The main should be short and sweet.
    Why the static inner classes? Do you know what is the difference between static inner classes and non-static inner classes?
    Why all the static variables anyway? You are doing procedural programming with an OOP language. You should use OOP if you can with an OOP language.
    Sorry, but this code looks like it was thrown together in a big hurry. I think that you have a lot of work to do. Good luck!

  • HT5312 I need help plz   

    I need help! I forgot my security question and when I send it to my rescue email but I also forgot that password too so I wanted to change my rescue emial but I don't know how? Can you help me plz!!! 

    From a Kappy  post
    The Three Best Alternatives for Security Questions and Rescue Mail
       1. Use Apple's Express Lane.
    Go to https://expresslane.apple.com ; click 'See all products and services' at the
    bottom of the page. In the next page click 'More Products and Services, then
    'Apple ID'. In the next page select 'Other Apple ID Topics' then 'Forgotten Apple
    ID security questions' and click 'Continue'. Please be patient waiting for the return
    phone call. It will come in time depending on how heavily the servers are being hit.
    2.  Call Apple Support in your country: Customer Service: Contact Apple support.
    3.  Rescue email address and how to reset Apple ID security questions.
    A substitute for using the security questions is to use 2-step verification:
    Two-step verification FAQ Get answers to frequently asked questions about two-step verification for Apple ID.

  • I can't update the apps in my ipad once I try it update it says this update not for this Apple ID . I need help plz

    I can't update the apps in my ipad once I try it update it says this update not for this Apple ID . I need help plz

    Help please any one ?

  • Newbie: Received Flash content - need help embedding - onClick

    Hi,
    I received a web banner from one of our suppliers that I need to embed into our website.  I've got it into the web page but don't know how to configure an "onclick" action.  In my reading I don't find a parameter to specify what action to take if someone clicks on the banner.  Right now it opens a new window with an error saying it can't find "/undefined".  How do I defined the URL?  The vendor that gave us the marketing content has been of no help.
    Thanks.
    Steve

    Hi Ned,
    Here's ProCurve's code and My code.  Do I need something like this?
    <param name="clickTag" value="http://www.mysite.com/procurve" />
    ProCurve code:
    <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="160" height="600" id="2325PWC8003_ISS_160x600" align="middle">
    <param name="allowScriptAccess" value="sameDomain" />
    <param name="movie" value="2325PWC8003_ISS_160x600.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#000000" /><embed src="2325PWC8003_ISS_160x600.swf" quality="high" bgcolor="#000000" width="160" height="600" name="2325PWC8003_ISS_160x600" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
    </object>
    My code:
        <object
            classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
            codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"
            width="160"
            height="600"
            id="2325PWC8003_ISS_160x600"
            align="middle">
            <param name="allowScriptAccess" value="sameDomain" />
            <param name="movie" value="flash/procurve/ISS/2325PWC8003_ISS_160x600.swf" />
            <param name="quality" value="high" /><param name="bgcolor" value="#000000" />
            <embed src="flash/procurve/ISS/2325PWC8003_ISS_160x600.swf"
                   quality="high"
                   bgcolor="#000000"
                   width="160"
                   height="600"
                   name="2325PWC8003_ISS_160x600"
                   align="middle"
                   allowScriptAccess="sameDomain"
                   type="application/x-shockwave-flash"
                   pluginspage="http://www.macromedia.com/go/getflashplayer" />
        </object>
    Thank you very much for your help!
    Steve

  • Newbie: Received Flash content - need help embedding

    Hi,
    I received a web banner from one of our suppliers that I need to embed into our website.  I've got it into the web page but don't know how to configure an "onclick" action.  In my reading I don't find a parameter to specify what action to take if someone clicks on the banner.  Right now it opens a new window with an error saying it can't find "/undefined".  How do I defined the URL?  The vendor that gave us the marketing content has been of no help.
    Thanks.
    Steve

    Hi,
    I received a web banner from one of our suppliers that I need to embed into our website.  I've got it into the web page but don't know how to configure an "onclick" action.  In my reading I don't find a parameter to specify what action to take if someone clicks on the banner.  Right now it opens a new window with an error saying it can't find "/undefined".  How do I defined the URL?  The vendor that gave us the marketing content has been of no help.
    Thanks.
    Steve

  • Searching Problem, need help plz...

    Hi All,
    I have a problem. After created index my_doc_idx1, i’m searching a word on all document i stored but find nothing. Everytime i search there’s no rows selected.
    anybody help me please?
    I including my code.
    My documents are:
    1. doc1.html contain:
    “Oracle interMedia audio, document, image, and video is designed to manage Internet media content”
    2. doc2.html contain:
    “Oracle interMedia User’s Guide and Reference, Release 9.0.1”
    3. word1.doc contain:
    “Oracle application server.”
    4. oracletext.pdf contain:
    “Stages of Index Creation.”
    Oracle9i 9 realese 2, Windows XP
    Thanks,
    Robby
    set serveroutput on
    set echo on
    -- create table
    create table my_doc (
    id number,
    document ordsys.orddoc);
    INSERT INTO my_doc VALUES(1,ORDSYS.ORDDoc.init());
    INSERT INTO my_doc VALUES(2,ORDSYS.ORDDoc.init());
    INSERT INTO my_doc VALUES(3,ORDSYS.ORDDoc.init());
    INSERT INTO my_doc VALUES(4,ORDSYS.ORDDoc.init());
    COMMIT;
    -- create directory
    create or replace directory dir_doc as 'e:\projects'
    -- import data
    DECLARE
    obj ORDSYS.ORDDoc;
    ctx RAW(4000) := NULL;
    BEGIN
    SELECT document INTO obj FROM my_doc WHERE id = 1 FOR UPDATE;
    obj.setSource('file','DIR_DOC','doc1.html');
    obj.import(ctx,FALSE);
    UPDATE my_doc SET document = obj WHERE id = 1;
    COMMIT;
    SELECT document INTO obj FROM my_doc WHERE id = 2 FOR UPDATE;
    obj.setSource('file','DIR_DOC','doc2.html');
    obj.import(ctx,FALSE);
    UPDATE my_doc SET document = obj WHERE id = 2;
    COMMIT;
    SELECT document INTO obj FROM my_doc WHERE id = 3 FOR UPDATE;
    obj.setSource('file','DIR_DOC','word1.doc');
    obj.import(ctx,FALSE);
    UPDATE my_doc SET document = obj WHERE id = 3;
    COMMIT;
    SELECT document INTO obj FROM my_doc WHERE id = 4 FOR UPDATE;
    obj.setSource('file','DIR_DOC','oracletext.pdf');
    obj.import(ctx,FALSE);
    UPDATE my_doc SET document = obj WHERE id = 4;
    COMMIT;
    END;
    -- check properties
    DECLARE
    obj ORDSYS.ORDDoc;
    idnum INTEGER;
    ext VARCHAR2(5);
    dotpos INTEGER;
    mimetype VARCHAR2(50);
    fname VARCHAR2(50);
    ctx RAW(4000) := NULL;
    BEGIN
    fname:= '';
    DBMS_OUTPUT.PUT_LINE('----------------------------------------');
    FOR I IN 1..4 LOOP
    SELECT id, document INTO idnum, obj FROM my_doc
    WHERE id = I;
    fname := obj.getSourceName();
    dotpos := INSTR(fname, '.');
    IF dotpos != 0 THEN
    ext := LOWER(SUBSTR(fname, dotpos + 1));
    ext := LOWER(ext);
    mimetype := 'application/' || ext;
    IF ext = 'doc' THEN
    mimetype := 'application/msword';
    obj.setFormat('DOC');
    ELSIF ext = 'pdf' THEN
    mimetype := 'application/pdf';
    obj.setFormat('PDF');
    ELSIF ext = 'ppt' THEN
    mimetype := 'application/vnd.ms-powerpoint';
    obj.setFormat('PPT');
    ELSIF ext = 'txt' THEN
    obj.setFormat('TXT');
    END IF;
    obj.setMimetype(mimetype);
    END IF;
    DBMS_OUTPUT.PUT_LINE('Document ID: ' || idnum);
    IF TO_CHAR(DBMS_LOB.getLength (obj.getContent())) = 0 THEN
    DBMS_OUTPUT.PUT_LINE('Content is NULL.');
    DBMS_OUTPUT.PUT_LINE('No information available.');
    ELSIF TO_CHAR(DBMS_LOB.getLength (obj.getContent())) <> 0 THEN
    DBMS_OUTPUT.PUT_LINE('Document Source: ' || obj.getSource());
    DBMS_OUTPUT.PUT_LINE('Document Name: ' || obj.getSourceName());
    DBMS_OUTPUT.PUT_LINE('Document Type: ' || obj.getSourceType());
    DBMS_OUTPUT.PUT_LINE('Document Location: ' || obj.getSourceLocation());
    DBMS_OUTPUT.PUT_LINE('Document MIME Type: ' || obj.getMimeType());
    DBMS_OUTPUT.PUT_LINE('Document File Format: ' || obj.getFormat());
    DBMS_OUTPUT.PUT_LINE('BLOB Length: ' || TO_CHAR(DBMS_LOB.getLength (obj.getContent())));
    END IF;
    DBMS_OUTPUT.PUT_LINE('----------------------------------------');
    END LOOP;
    EXCEPTION
    END;
    -- create index
    create index my_doc_idx1
    on my_doc(document.comments)
    indextype is ctxsys.context;
    commit;
    alter index my_doc_idx1
    rebuild online
    parameters('sync memory 10m');
    -- searching
    select id from my_doc t
    where contains(t.document.comments,'oracle') > 0
    order by id;
    select id from my_doc t
    where contains(t.document.comments,'application server') > 0
    order by id;
    select id from my_doc t
    where contains(t.document.comments,'index creation') > 0
    order by id;

    Hi,
    Which is best depends on the type of application you are building and the nature of the docs. For simple use with pdf's and word docs I prefer to use bfile or blob which is why I mentioned it. No sense in overcomplicating it.
    My recommendation - look at the interMedia docs and determine if you need the advanced features it provides. I like the application a lot, but am a firm believer in not adding complexity if there is no benefit to be had. Unless you are just playing around with it to learn, I'd recommend matching your project requirements up with what best meets them and go whichever route that is.
    Thanks,
    Ron

  • I need help plz with this easy code

    The output shows null in the frame ,, no buttons no areas or fields .. plz help ASAP
    import java.awt.* ;
    import javax.swing.* ;
    public class GUI extends JFrame{
        public void function (){
             setSize(500,500);
             setTitle("SokAndO");
             Container first = this.getContentPane();
             JButton _send = new JButton ("Send") ;
             JTextField _text = new JTextField () ;
             JTextArea _history = new JTextArea (100,100);
             JPanel p1 = new JPanel();
             JPanel p2 = new JPanel();
             JPanel p3 = new JPanel();
             p1.add(_send);
             p2.add(_history);
             p3.add(_text);
                first.setLayout (new FlowLayout());
             setVisible(true);
             public static void main(String arg[]){
              GUI lol=new GUI();
              lol.function();
    }

    and wht is the use of this statment ???
    Container first =
    this.getContentPane();With this statement you have a variable first that refers to the JFrame's contentPane, but as noted above, you do nothing with it. You need to look at Swing examples on how to add components to JPanels and such. The Sun tutorials should be a good place to start.

  • New to Portal and need help with PDK

    Hi there,
    I have looked all over otn to find a simple document that explain how to install and use PDK but I can't find any. Can someone help me with this? There is a video on otn but it doesn't work here.
    Regards,
    Robert

    The Getting Started page on Portal Studio is a possible way to start.
    There's a PDK article Installing the PDK-Java Framework and Sample Providers you may want to check out too.

  • Need help plz with hw!!

    Write a program called SortWords. The program prompts the user for the name of an input file. This file contains words, one word per line. The words are in any order. The program sorts all the words in the input file into alphabetical order and writes these sorted words back into the original file.
    Note: you are NOT allowed to solve this problem using data structures that have not yet been covered in this unit, such as arrays or linked lists. You may only use methods from the String class, the Scanner class, the PrintWriter class and the File class (along with as many temporary text files as may be needed). One possible approach is to read the first 2 words from the input file and compare them. If the first word comes before the second word in alphabetical order, then write the first word into the temporary file. If the first word comes after the second word in alphabetical order, then write the second word into a temporary file. The word that was NOT written into the temporary file becomes the first word. Read the next word from the input file and compare the two words, writing one of them into the temporary file using the rules stated above. When all the words have been read from the original input file, then the temporary file becomes the original file and the original file becomes the temporary file. The program keeps reading words from the original file until the program goes through the original file, writing only the first word every time, into the temporary file. Once this happens it means that the words in the file are properly sorted and the program can stop.
    Note: the above approach is one way of solving the problem, but you may use another approach if you wish.

    kevinaworkman wrote:
    I think you should use some arrays, maybe some linked lists.
    No, but seriously, here's one possible approach:
    Read the first 2 words from the input file and compare them. If the first word comes before the second word in alphabetical order, then write the first word into the temporary file. If the first word comes after the second word in alphabetical order, then write the second word into a temporary file. The word that was NOT written into the temporary file becomes the first word. Read the next word from the input file and compare the two words, writing one of them into the temporary file using the rules stated above. When all the words have been read from the original input file, then the temporary file becomes the original file and the original file becomes the temporary file. The program keeps reading words from the original file until the program goes through the original file, writing only the first word every time, into the temporary file. Once this happens it means that the words in the file are properly sorted and the program can stop.
    Does that help?We've added a third way to the "give a man a fish / teach a man to fish" dichotomy: slap a man with a fish.

  • New External Drive .. NEED HELP PLZ

    Hi
    i just plugin (usig USB) my new external hard drive ( 160 GB )
    and i`m trying to copy some files to it
    and it shows this msg
    " the item ... could not be moved because new volume cannot be modified "
    so how can i make it ? and also it shows the new volume for read only .. how can i make it read and wirte ??
    thnx

    Yes, I think so. You can create as many partitions as you like - if you look at that document, the second part shows how to partiton the drive into several partitions - just do it as shown but format one of them FAT32 or NTFS
    But....
    I don't know if a PC can read a single Fat32 or NTFS partition from a drive partitioned using GUID. I think it would have to be Master Boot Record Scheme in which case, you would need Fat 32 all the way.
    As you have to wipe the drive anyway, it won't hurt to try I suppose. In the worst case you can always reformat it back to OSX only or Fat 32 so that the PC and Mac can read it (NTFS if you only need the mac to be able to read it).
    From a performance perspective I'd use two drives. To swap data between a pc and mac just network them rather than trying to make one drive do two jobs.
    I hope that helps,
    best of luck.

  • Newbie in portal and need help

    Hi,
    In portal, is there any view (like data dictionary views) where I can get the name of the reports and the name of the tables or views that they are based on
    example.
    let's say I have 2 reports.
    1- rept_dept based on scott.dept table
    2- rept_emp based on scott.dept and scott.emp table
    I need a SQL statment that will produce this output
    report name table_name
    rep_dept scott.dept
    rep_emp scott.dept
    scott.emp
    Thank you !
    Gregg.

    Jose,
    i suggest you start with looking at the status of the report with id=14511 in the logs of the reportserver. You can find these from the Oracle Entreprise Manager by selecting the reportserver -link, than follow the failed/completed task-links.
    If the report finished succesfully, Internet Explorer probably tried to show the report before it was finished. If this is the case, you can build a small timer that waits for the report to finish or that queries the report server if the report is finished before you trie to show the report.
    Questions:
    Can you show the report when you enter the url to the report manually in Internet Explorer?
    Do you use Headstart?

  • My ipod freeze every time i plug in the computer i need help plz

    my ipod freeze every time i plug on my computer i dont know how to reset and delete all songs plz help u.u

    Does your iTunes see your nano?
    iPod not recognized in 'My Computer' and in iTunes for Windows
    iPod: Appears in Windows but not in iTunes
    If so, then follow through this:
    How to reset iPod
    Restoring iPod to factory settings
    If not, do one or more of the following
    Restart your computer
    Uninstall & Reinstall iTunes [Windows XP] [Windows Vista & 7]
    Reset iPod (will NOT delete everything)
    Go to My Computer (Windows XP) or Computer (Windows Vista & 7) and see if it shows
    Restore iPod (WILL delete everything)
    Make sure iTunes and iOS firmware is up to date.
    Hope all this helps.
    Message was edited by: keeferaf

Maybe you are looking for

  • NF de Saída a partir de Várias NF de entrega

    Pessoal, Boa Noite!!! Tenho o seguinte cenário tenho um cliente que tem varias filiais e eu vendi algumas impressoras para ele. Ele pediu para enviar para essas filiais e faturar pela matriz. Fiz 7 NFs de entrega cada uma com o cnpj da filial de dest

  • Is there a way to keep your original Illustrator EPS file open after saving it as a PDF?

    After I create artwork in Illustrator, and save it as an EPS, I have to then save it as a PDF so I can email it to the customer for proofing/approval. The pain in the behind part is that once I save this EPS as a PDF, I have to close the PDF then reo

  • How well does the Droid Charge do when dropped accidentally?

    how well does the Droid Charge do when dropped accidentally? any screen or internal damages? I'm probably going to have some kind of rubberized case.

  • Apple's First Official Response on FCPX

    Well, I found this on the Apple website today. It's an FAQ addressing some overall concerns by the pro market. Now I'm not exactly a pro yet, but if I try to jump in a pros shoes, unfortunately this doesn't give me much promise. It does say some good

  • What exactly is Other?

    So when I go on iTunes and click on my iPod I always is that yellow bar of Other. I have no idea what is it is and it's always like 1.02 GB and I'm like what the heck? So what is other because I don't have any contacts, nothing on my calendar, or any