Dreamweaver help?  Trying to insert a slideshow in CS3

I followed the directions to a tee, but yet I can not see my slideshow in preview or when I upload it.  Not sure what to do next.  Here is the URL of the page.
http://www.whatisthatsong.net/danaisleyphotographyIndex.html

skipisley wrote:
I have only worked with DW for a year and most of what I have done is in the design mode...so when you talk about code...I'm a newbie
This is the reason why we always advocate that people learn basic html and css before even opening Dreamweaver  :-)  If your don't understand code, then it's difficult to troubleshoot any problems you may have...  After using DW for a year, I'm surprised you don't understand what a div is  :-)
I don't have access to all your image/swf files, so can't really tell if this works or not, but this will get rid of the validation errors about the div tags...
Remove the following from the very bottom of the page:
<p class="style2"></p>
</div>
                    </div>
                </form>
and see what happens.  If that doesn't fix the issue, then it has to be something wrong with the insertion of the swf I guess...
as shown by the link to the validator I gave you in my previous post.
Seriously, take some time out and learn some html/css  :-)  it will make using DW much easier for you in the long run.  How I learned was just watching the code as I inserted something on a page, plus what basic elements were and how they working on a page.
These are some basic tutorials that may help...  go through them, but watch the code view to see what's happening and how everything relates....
*From Tables to CSS Web Design Part 1 -
http://www.adobe.com/devnet/dreamweaver/articles/table_to_css_pt1.html*
*From  Tables to CSS Web Design Part 2 -

Similar Messages

  • Dreamweaver Help | Changes to Insert options | Creative Cloud

    This question was posted in response to the following article: http://helpx.adobe.com/dreamweaver/using/changes-insert-options-creative-cloud.html

    There are lots of bugs in this update and the removal of the ability to drag bindings to the code window really hurts the workflow. Removing spry options from the forms panel also creates a huge slowdown in the work of creating forms.
    There's also a bug on the mac side that causes the files panel to respond to the delete key when you're in the code or design view. 90% of the time when I try and delete some code or content from the Code or Design panel I get a warning about deleting files and find that the Files panel is selected. The only work around is to remove the Files panel from the desktop.
    The Properties panel has also lost the ability to dynamically link to record sets when working in PHP. Hand coding is the only option. Again, this 'improvement' reduces productivity.
    In general, the new Forms panel and resulting popups for info is a huge step backward. When prepping forms for PHP or other server side programming the options are gone. You can't select a button anymore, you have to select a submit or a reset... All a bunch of monkey motion that's inefficient. Even the Forms button doesn't properly insert a form around selected text. You just as well code forms by hand because you have to go into code view and fix everything anyway.
    The only thing that 'may' help out is the addition of some HTML5 options, but to tell you the truth, I haven't had time to try any of them yet because I uninstalled this update and went back to the previous version so that I could get some work done.
    I'm not a happy camper.....

  • Help trying to insert JScrollPane into code

    Yes! It is me again on the same program. I have the program working with a few peoples help on this board. But, I want to make the display look better. So, I thought I would use the JScrollPane component. But, I'm getting a cannot resolve symbol error on the following statement.
    f.setContentPane(scrollPane);
    The code is below. Any help in getting the JScrollPane to work would be very appreciated.
    Code:
    import java.util.*;
    import mycorejava.Day;
    import mycorejava.*;
    import myjavastdio.*;
    import java.io.*;
    import java.text.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.event.*;
    public class P5AWT extends JFrame
    private JTextField inputfile;
    private JTextField outputfile;
    private JTextArea ta;
    private JMenuItem newMT, openMT, saveAsMT, exitMT;
    String curFile, filename = "";
    int numstaff;
    Employee[] staff;
    public P5AWT()
    super ("P5AWT Starter Program");
    addWindowListener(new WindowAdapter()
    { public void windowClosing(WindowEvent e) { System.exit(0); }} );
    JMenuBar mb = new JMenuBar ();
    setJMenuBar(mb);
    JMenu fileMenu = new JMenu ("File");
    mb.add(fileMenu);
    fileMenu.add (newMT = new JMenuItem ("New"));
    newMT.addActionListener( new NewCommand());
    fileMenu.add (openMT = new JMenuItem ("Open"));
    openMT.addActionListener( new LoadFileCommand());
    fileMenu.add (saveAsMT = new JMenuItem ("Save As"));
    saveAsMT.addActionListener( new SaveAsFileCommand());
    fileMenu.add (exitMT = new JMenuItem ("Exit"));
    exitMT.addActionListener( new CloseCommand());
    JPanel p3 = new JPanel();
    getContentPane().setLayout(new FlowLayout(FlowLayout.CENTER));
    ta = new JTextArea(200, 40);
    //p3.add(ta);
    //getContentPane().add(p3, BorderLayout.CENTER);
    JScrollPane scrollPane = new JScrollPane(ta);
    f.setContentPane(scrollPane);
    // Bail Out
    class CloseCommand implements ActionListener {
    public void actionPerformed (ActionEvent e) {
    System.exit (0);
    // New
    class NewCommand implements ActionListener {
    public void actionPerformed (ActionEvent e) {
    ta.setText(" ");
    // Load a file into the text area.
    class LoadFileCommand implements ActionListener {
    public void actionPerformed (ActionEvent e) {
    int state;
    String msg;
    FileDialog file = new FileDialog (P5AWT.this, "Open File", FileDialog.LOAD);
    file.setFile ("*.*"); // Set initial filename filter
    file.show(); // Blocks
    if ((curFile = file.getFile()) != null) {
    System.out.println(curFile.substring(curFile.indexOf(".") + 1));
    filename = file.getDirectory() + curFile;
    setCursor (Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
    doit( filename );
    setCursor (Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
    // Load a file into the text area.
    class SaveAsFileCommand implements ActionListener {
    public void actionPerformed (ActionEvent e) {
    int state;
    String msg;
    FileDialog file = new FileDialog (P5AWT.this, "Save As", FileDialog.SAVE);
    file.setFile ("*.*"); // Set initial filename filter
    file.show(); // Blocks
    if ((curFile = file.getFile()) != null) {
    filename = file.getDirectory() + curFile;
    setCursor (Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
    saveAs(filename);
    setCursor (Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
    public static void main(String[] args)
    JFrame f = new P5AWT();
    f.setSize(475,400);
    f.setVisible(true);
    f.show();
    public void saveAs(String file)
              String emptype = "";
              try
                   PrintWriter fout = Text.create(file);     //attempts to open output
                   for( int x = 0; x < numstaff; x++ )
         if (staff != null) emptype = (staff[x].getClass().getName());
         if (emptype.equals("Employee"))
         staff[x].printToFile(fout);
    //ta.append("\n\n******************** MANAGERS ********************\n");
         for( int x = 0; x < numstaff; x++ )
         if (staff[x] instanceof Manager)
    //staff[x] = (Manager)staff[x]; - This is used if access to elements needed outside of class
         staff[x].printToFile(fout);
                   fout.close();
              catch(IOException e)
                   System.out.println("An IO Exception occured!");
    public void doit(String file)
    String filename = "";
    String emptype = "";
    String firstname = "";
    String lastname = "";
    String ssn = "";
    String hiredate = null;
    String secfirstname = "";
    String seclastname = "";
    String ofile = "";
    numstaff = 0;
    int yy = 0;
    int mm = 0;
    int dd = 0;
    double salary = 0;
    try
    BufferedReader fin = Text.open(file); // attempts to open data file
    try
    numstaff = Text.readInt(fin); // # of records to set array size
    staff = new Employee[numstaff];
    for(int x = 0; x <= numstaff; x++) // # of records
    emptype = Text.readString(fin);
    firstname = Text.readString(fin);
    lastname = Text.readString(fin);
    ssn = Text.readString(fin);
    salary = Text.readDouble(fin);
    yy = Text.readInt(fin);
    mm = Text.readInt(fin);
    dd = Text.readInt(fin);
    if(emptype.equals("M"))
    secfirstname = Text.readString(fin);
    seclastname = Text.readString(fin);
    staff[x] = new Manager( emptype, firstname, lastname, ssn, salary,
    yy, mm, dd, secfirstname, seclastname);
    else
    staff[x] = new Employee(emptype, firstname, lastname, ssn, salary,
    yy, mm, dd);
    staff[x].raiseSalary(5);
    catch (EOFException e)
    ta.append("******************** EMPLOYEES ********************\n");
    for( int x = 0; x < numstaff; x++ )
    if (staff != null) emptype = (staff[x].getClass().getName());
    if (emptype.equals("Employee"))
    staff[x].printToAwt(ta);
    ta.append("\n\n******************** MANAGERS ********************\n");
    for( int x = 0; x < numstaff; x++ )
    if (staff[x] instanceof Manager)
    //staff[x] = (Manager)staff[x]; - This is used if access to elements needed outside of class
    staff[x].printToAwt(ta);
    catch (FileNotFoundException e) // file not found, what the heck is this e thing
    System.out.println("The file: " + file + " doesn't exist! ABORTING!");
    catch(IOException e)
    System.out.println("An IO Exception occured!");
    class Employee
    private NumberFormat coolsalary = NumberFormat.getCurrencyInstance(Locale.US);
    public Employee(String emptype, String fn, String ln, String ssn, double s, int yy, int mm, int dd)
    type = emptype;
    fname = fn;
    lname = ln;
    salary = s;
    social = ssn;
    year = yy;
    day = dd;
    month = mm;
    hireDay = new Day(year,month,day);
    public void print()
    System.out.println();
    System.out.print(fname + " " + lname + "\t" + social + " " + coolsalary.format(salary) + " " + hireDay.toString()); }
    public void printToFile(PrintWriter out)
    out.println();
    out.print(fname + " " + lname + "\t" + social + " " + coolsalary.format(salary) + " " + hireDay.toString());
    public void printToAwt(javax.swing.JTextArea ta)
    ta.append("\n");
    ta.append(fname + " " + lname + "\t" + social + " " + coolsalary.format(salary) + " " + hireDay.toString());
    public void raiseSalary(double byPercent)
    salary *= 1 + byPercent / 100;
    public int hireYear()
    {  return hireDay.getYear();
    public String type;
    public String fname;
    public String lname;
    public double salary;
    public String d;
    public String social;
    public int year;
    public int month;
    public int day;
    public Day hireDay;
    private Date date;
    class Manager extends Employee
    public Manager(String emptype, String fn, String ln, String ssn, double s, int yy, int mm, int dd, String fsec, String lsec)
    super(emptype, fn, ln, ssn, s, yy, mm, dd);
    secretaryfName = fsec;
    secretarylName = lsec;
    public void raiseSalary(double byPercent)
    {  // add 1/2% bonus for every year of service
    Day today = new Day();
    double bonus = 0.5 * (today.getYear() - hireYear());
    super.raiseSalary(byPercent + bonus);
    public void print()
    {    super.print();
    System.out.print(" " + getName());
    public void printToAwt(javax.swing.JTextArea ta)
    super.printToAwt(ta);
    ta.append(" " + getName());
    public void printToFile( PrintWriter out)
    super.printToFile(out);
    out.print(" " + getName());
    public void setSecretaryName(String fn, String ln)
    {  secretaryfName = fn;
    secretarylName = ln;
    public String getName()
    {  return secretaryfName + " " + secretarylName;
    private String secretaryfName;
    private String secretarylName;

    Alright, I feel like the biggest idiot that ever walked the earth. Thank you for your help.

  • How do I insert Fireworks Slideshow (non flash) into Dreamweaver?

    I have been trying to import a slideshow from flash that I created from the built in template. I used the player that does not require a flash plug in and I cannot figure out how to insert it into my webpage in Dreamweaver. When I post the code directly it says that I have to enable java script?  I am new to dreamweaver/fireworks and coding. I know that it should be simple, but I have not been able to figure it out.  Thank you for any help you can offer!

    I don't use that function, but here's a list of articles that may prove useful:
    http://community.adobe.com/help/search.html?q=creating+a+slideshow+in+dreamweaver&lbl=drea mweaver_product_adobelr&self=1&hl=en_US&lr=en_US&area=0
    You could also look at using jquery, very simple to use and help docs come with most of the apps.
    Lots of goodies here:
    http://www.1stwebdesigner.com/resources/57-free-image-gallery-slideshow-and-ligh tbox-solutions/
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    http://csstemplates.com.au/
    http://twitter.com/nadiap

  • I'm not familiar with MAC's.  Trying to insert turbo tax cd into my Dad's Mac OS X version 10.5.8 but it won't go in/stay.  Help please!

    I am not familiar with MAC's.  I am trying to insert Turbo Tax CD into my Dad's Mac.  But, the CD will not go in/stay in.  Need some help with this, anyone have an answer?  I would greatly appreciate it!  Thanks!

    Confused: You say nothing will "catch" in the slot, which I take to mean the optical drive won't accept anything. Just spits it out. Then you say you thought there was an eject button to push, which would imply there's a stuck disc inside.
    If it's the latter, try holding down the mouse while booting.
    http://support.apple.com/kb/TS2097

  • How do i insert a slideshow in reflow?

    how do i insert a slideshow in reflow?

    Hi -
    There isn't currently a way to insert something like that in Reflow, so your best best is to export the code from Reflow, then edit it in another tool such as Dreamweaver to add the extra content.
    Hope that helps, and thanks for using Reflow!
    Vic

  • HT3775 I am trying to add a slideshow to my website

    I am trying to add a slideshow to my website, with no luck. I am using dreamweaver and have created a slide show in iPhoto. I'm not sure what format I need to save the slideshow in, in order to add to my website. Any HELP would be great. Thank you in advance!

    QuickTime movie format will create a .mov or .m4v file that you can use in a Web page.

  • Help with Spry Menubar and slideshow widget in IE

    I have a spry slideshow and menubar created in dreamweaver CS4.  Both work in Firefox, Safari, Chrome, etc. but not IE.
    Here's the link:
    http://www.salmonrunvacations.com/test/
    Check in firefox first, then IE.
    For the menu, what I've done is created a CSS div to insert the menubar into.  This way I can use a background image to frame the menubar. I then tweaked the CSS to shift the menu into the correct position so it lines up with the background image.  This information is not transferring for some reason, as the menubar sits at the top left of that div, ignoring placement info.
    Different versions of IE create different errors as well.  Note that the "galleries" menu should have a flyout submenu.  This doesn't work either, though I could remedy this by making "galleries" a page that links to the two submenues, but I'd kind of just like to get it fixed.
    As for the slideshow, I used a widget fromt the adobe exchange using Adobe Air.  It exported the code as its own html page and CSS, JS, etc, but I just inserted the HTML into a div in the index page.  Again, it works great in FF, not in IE.  I should also note that when I load the page in Dreamweaver CS4, I get a bunch of error menus saying this widget no longer exists.  Dreamweaver does not accurately display the slideshow either.
    Help on either of these issues would be most welcome.
    Thanks and God bless,
    Mike.

    I'm sorry to say it still doesn't work.  I hate to bother you and take your time, but at lease in IE 7 and 8, the slideshow still doesn't function.
    For anyone interested, the code at the bottom was generated by Yahoo web hosting servers, and is for tracking site statistics.  If you have a similar problem and want to get rid of that code as a possible solution, you have to go into the yahoo web hosting control panel, click "detailed statistics," then "options," and disable the site statistics tracking option.
    I could just try to go with another java slideshow, but I really like this one.
    Any other ideas on how to make it work?  Also, the flyout menus under "galleries" display behind the slideshow (or at least the box that shows it not working).  I suppose that may be fixed when the slideshow is fixed.  We'll see. Please let me know if you have any other suggestions to make it work.
    Thanks,
    Mike.

  • Oracle error ORA-01461when trying to insert into an ORACLE BLOB field

    I am getting Oracle error ‘ORA-01461: can bind a LONG value only  for insert into a LONG column' when trying to insert into an ORACLE BLOB field. The error occurs when trying to insert a large BLOB (JPG), but does not occur when inserting a small (<1K) picture BLOB.(JPG). Any ideas?
    BTW, when using a SQL Server datasource using the same code.... everything works with no problems.
    ORACLE version is 11.2.0.1
    The ORACLE datasource is JDBC using Oracle's JDBC driver ojdbc6.jar v11.2.0.1 (I also have tried ojdbc5.jar v11.2.0.1; ojdbc5.jar v11.2.0.4; and ojdbc6.jar v11.2.0.4 with the same error result.)
    Here is my code:
    <cfset file_mime = Lcase(Right(postedXMLRoot.objname.XmlText, 3))>
    <cfif file_mime EQ 'jpg'><cfset file_mime = 'jpeg'></cfif>
    <cfset file_mime = 'data:image/' & file_mime & ';base64,'>
    <cfset image64 = ImageReadBase64("#file_mime##postedXMLRoot.objbase64.XmlText#")>
    <cfset ramfile = "ram://" & postedXMLRoot.objname.XmlText>
    <cfimage action="write" source="#image64#" destination="#ramfile#" overwrite="true">
    <cffile action="readbinary" file="#ramfile#" variable="image_bin">
    <cffile action="delete" file="#ramfile#">
    <cfquery name="InsertImage" datasource="#datasource#">
    INSERT INTO test_images
    image_blob
    SELECT
    <cfqueryparam value="#image_bin#" cfsqltype="CF_SQL_BLOB">
    FROM          dual
    </cfquery>

    Can't you use "alter index <shema.spatial_index_name> rebuild ONLINE" ? Thanks. I could switch to "rebuild ONLINE" and see if that helps. Are there any potential adverse effects going forward, e.g. significantly longer rebuild than not using the ONLINE keyword, etc? Also wondering if spatial index operations (index type = DOMAIN) obey all the typical things you'd expect with "regular" indexes, e.g. B-TREE, etc.

  • Can't find some albums when trying to insert photos into other programs

    I am having trouble finding albums (and thus pictures) when trying to insert photos into a Word document or upload to mySpace/ facebook etc.
    After choosing 'insert<picture<from file<pictures<iPhoto Library' , I have the option of looking into the year-month-date or by album. Since I have a better memory of the 50+ albums I have created rather than their dates, I choose "Albums". This list only contains about half of my albums (with folder icons) and it appears outdated...ie one of the albums no longer exists in iPhoto and has been changed to a folders with several albums in it.
    I'm wondering why this is happening or how i can update the album list. I realize i could use the year-month-day thing but that is too frustrating.
    Carey
    iBook G4   Mac OS X (10.4.3)  
    iBook G4   Mac OS X (10.4.3)  

    Hi chantreya,
    iPhoto 5 now stores the Album information in a data xml file. The Albums folder within the iPhoto Library folder is no longer used. At some point, usually after a rebuild, you will no longer have that folder in the Finder.
    If you need to access photos from an album it is very difficult for a third party application to navigate the iPhoto Library in order to find the photo you need. You will have to know the date of import in order to find the photo.
    There are some third party applications that can read the xml file and can navigate the iPhoto library and show you the Albums. Hopefully more applications will be revised to read this file.
    Until then you will have to Share/Export the photos to the desktop. You can then navigate to the desktop to use the photos (example: web uploading from online photo site)
    If your application supports drag and drop, you can drag the photo from an open iPhoto Library window into your application.
    For email you can also use the email icon within iPhoto to open a message with the highlighted photo attached.
    You can also use spotlight to find images in an Album...
    This is what I have done using Spotlight to find my images that are in iPhoto albums without opening iPhoto..
    In iPhoto, select the album, then select all, go to Photos/batch change.
    Change the comments to text. In the text field I put the name of the Album.
    Do this for each album.
    Close iPhoto.
    Open Spotlight and put in the name of the Album ( you have to remember the names of the albums or have then written down)
    In the spotlight search results. click on "show all"
    Under "Images" click on the "xx more" to show all the images in the album.
    Make sure you have it in icon view, the icon view box is the last one on the blue images line.
    Now you can control click on the image to "reveal in finder", open in iPhoto or Mail, etc.
    I am not sure if this is going to make you happy and it is a little more work, but you can find images in albums and even view them in a slideshow (by clicking the play arrow at the end of the Images highlighted blue line) using Spotlight, all without opening iPhoto.
    One important thing to know is you can set up a graphic program to be an external editor (when you double click an image in the library} such as PhotoShop or PS Elements. You set up that within iPhoto Preferences. Just make sure you save the image flattened and with the same name. The edits will then be relected in iPhoto when you hit "save".
    Two Apple kbs for you to read
    Don't tamper with files in the iPhoto library folder
    About the iPhoto Library folder
    Lori

  • HELP: Error while insert in master-detail form!!!

    Hello
    I have created a master-detail form and when I tried to insert a new record I got an error that the field on the detail table that references the primary key on the master table can not be null. I don't understand this error because I thought that when you create a master-detail form and you insert a new record the field that make the references in the detail table to the primary key on the master table will be automatically filled, am I wrong??. Can anybody tell me what is going on??. The primary key of my master table is filled with a trigger before insert, is that the problem??.
    Please Help me is really urgent
    Ana Maria

    I am still new to this, but maybe this will help.
    1. Double check that your foreign key link definition in the detail table is referencing the correct column in the master table. If this is not present or referencing the column, this may be causing the problem. Self evident, but sometimes it is the simple things that get us.
    2. I have not used a trigger yet, but could there be validation being done in the form before the trigger is firing. Therefore, there would not be a value in the detail part of the form.
    Hope this was of some help.

  • Trying to insert a Large CLOB : connection reset by peer

    I am Trying to insert a Large CLOB .. i get this error message
    java.sql.SQLException: Io exception: connection reset by peer
    I am using a prepared statement to insert a Clob. It works fine with small data.
    Thanks for your help in advance.

    It might help if you gave more information - this probably depends on your database and driver, so giving info on them will help.

  • Need help adding audio to a slideshow in iDVD. I don't see my playlists.

    I'm a relatively new Mac user & am trying to create my first DVD ever. I'm just learning as I go. I'm trying to create a slideshow with about 400 pictures to show at a "Going Away" Party. I've created a playlist to go along with it, but when I click on Audio & then on iTunes, it pulls up all of my songs in my whole library, but doesn't show my playlists anywhere. When I click on "help" it tells me that I should be able to go to Audio, click on iTunes, click on "library", & then find my playlist. However, I don't see "library" under iTunes. Help!

    +but is it possible to make many different slideshows on the DVD but somehow have it play automatically from one to the other+
    No. You can do that in DVD Studio Pro.
    Here's a couple of examples of how I did these projects a couple of years ago:
    *Mediterranean 2003 cruise*
    I had over 1000 images from a Mediterranean cruise. I broke them down in to 24 Albums in iPhoto (fewer than 99 images each). In iDVD, I created 6 Folders which created sub-menus. Main Menu buttons (folders/slideshows) such as Barcelona, French Riviera, Florence, Rome, Naples, Malta. Then I added each of the corresponding 24 iPhoto Albums to those 6 slideshows, thereby creating 24 total slideshows on sub-menus. Takes some planning. All slideshows had transitions and music.
    *Ireland 2004 iDVD Project*
    Nearly 800 images dragged into iDVD as organized folders from the hard drive. Transitions on each image, and menus, sub-menus, and sub-sub menus. The sub-menus are created by clicking on the Folder icon on the iDVD interface.
    Main Menu has 6 buttons: Downpatrick, Antrim Coast, Letterkenny, Sligo, Trim, and Extras. Behind each button are additional buttons ranging from 3 to 6 buttons. The Extras button goes fairly deep. When you click on Extras, it gives you 3 choices on a new menu. The "B&Bs" button opens a new menu with 5 buttons. The "Movies" button opens a new menu with 4 buttons. If you click on the "Irish Music" button, you open a new menu with 2 buttons. At that point, you are at a "sub-sub-sub menu."
    Music was on most of the slideshows. Some movies converted to QT DV from Canon S400 digicam .AVI files (iDVD 4). Now convert to H.264 with QuickTime 7. Images are original 4MP (2MB) JPEG images from the same digicam. This DVD project is around 4GB with all pictures as DVD-ROM content.

  • Exception while trying to insert data into Target Table

    Hi ,
    Im trying pick data from a table A which is in DB1 and trying to insert table B which is in DB2 .Below are the steps which I did.But im getting the exception
    *"Caused By: java.sql.SQLSyntaxErrorException: ORA-02019: connection description for remote database not found:"* .Can some one help me with this .
    Note : The DB that im using is Oracle 10g Express Edition and ODI studio is ODI 11.1.1.5.0
    1.Created a two Data Server -one for each Data base (DB1 and DB2)
    2.Created two Physical Schema under the respective Data Server
    3.Created two Logical Schema referring respective Physical Schema
    4.Created a two Models for each Logical schema and did Reverse Engineer
    5.Created an Interface , imported the Knowledge models and did the mapping between the Source and Target Data Source
    KM's used :
    Source data store-Staging Area-LKM Oracle to Oracle (DBLink)
    Target Properies-IKM Oracle Incremental Update
    I unchecked Stagin Area Different from Target .
    Thanks
    John

    Hi John,
    I think you need to create public database link then create public synonym
    After creating that, please check it from DB side it is working or not, then check from ODi end and go thru below URL hope this will helps you.
    https://forums.oracle.com/forums/thread.jspa?threadID=530074
    Thanks,
    Phani

  • Trying To Insert XML String Greater Than 4000 Characters in PHP Fails

    Dear Sir,
    Subject:-Trying To Insert XML String Greater Than 4000 Characters in PHP Fails ORA-01704.
    In an attempt to design web app in PHP and inserting data into "CLOB" field of "articles" table associated with it, returning ORA-01704: string literal too long error.
    Platform: OEL5
    Database 11g(11.0.7.0)
    php : 5.2
    I refer to oracle document ID: [ID 336888.1] it is asking to contact support.
    Please help us in this regards.
    Many Thanks,
    mkyazdani

    Hi,
    I appreciate you, yes it is similar i have referred that manual and also inform to our php developer about the changes we need to make in our php script.
    Regards,
    mkyazdani

Maybe you are looking for