Please Help!!!! importing mpegs from dazzle

I am new to the editing business and need some help. I am looking at getting Express HD but need to know a few things apple couldn't tell me before i buy. I have both mac and pc. i transfer vhs to dvd by capturing with dazzle on my pc. then i want to be able to import with FCEHD to my mac. the software that came with my dazzle is pinnacle studio 8, it came with it what can i say! i want to know if i get FCEHD will it import the files that studio 8 creates? i capture them as an mpeg so i would think it would work. if i can't, what do you recommend for a capture card for mac? anything out there better than the other? I really don't want to have to spend the money getting a new capture device since i have dazzle for my pc right now. Any help would be much appreciated. Did i confuse anyone?
Thanks in advance.
g5 dual 2.5   Mac OS X (10.4.4)  
g5 dual 2.5   Mac OS X (10.4.4)  

Actually, there is a way for Final Cut to import MPEG's, although its not particularly easy, or free. Here's how to do it. Final Cut is built on QuickTime, so Final Cut can read anything that your Quicktime Player can read. To get Quicktime to read MPEG's, you can download an MPEG decoder for Quicktime from Apple for about $20 and install it. Upon doing so, both Final Cut and Quicktime will be able to play your MPEG files. However, there's another catch. Final Cut will NOT import MPEG audio. So when you import an MPEG file into Final Cut, you'll get a video only clip. To get your audio, you have two options. You can buy Quicktime Pro for $30, which will convert your MPEG files into Quicktime files, which you can then import into Final Cut. Or, you can export an audio only file from your Dazzle and then convert it to a Wave or AIFF file using a program called Audacity, which you can download for free. Then, import that audio file into Final Cut and sync it up with the video file. So, yes, it is possible for Final Cut to open MPEG files, but it takes a bit of work and it might cost you 20-$50.

Similar Messages

  • Help Importing objects from 1 user to another user and problem with trigger

    Hello community, i am having a little difficulty with the exporting objects from one user to another specifically the exporting of the trigger.
    Here is the situation, because of SOX purpose whenever a update is sent to the client the dba have to execute the script as himself (priviliged user) and is not allowed to log into the schema to make changes. Therefore we perpend the object definitions with &user_schema.. and they define user_schema in sqlplus and execute the update script.
    Here is a small example which requires two users (user1 and user2) with the following grants (connect, create table, create trigger, create view, create sequence). Please forgive the naming of the objects, just trying to be as simple as possible.
    I start out by logging in as system user via sqlplus and execute the following.
    ------------------Begin sqlplus----------------------
    define user_schema=user1;
    create table &user_schema..abc01 (
      col1 number,
      col2 varchar2(20),
      col3 number,
      constraint pk_abc01_col1 primary key (col1)
    create table &user_schema..xyz01 (
      col1 number,
      col2 varchar2(20),
      col3 number,
      constraint pk_xyz01_col1 primary key (col1)
    create or replace view &user_schema..view1 as
    select x.col1, x.col2, x.col3, a.col1 as acol1, a.col2 as acol2, a.col3 as acol3
    from xyz01 x
    inner join abc01 a on a.col1 = x.col1;
    create sequence &user_schema..seq_xyz01 start with 1 increment by 1;
    create or replace trigger &user_schema..trig01
    before insert on &user_schema..xyz01 for each row
    begin
      if (nvl(:new.col1, -1) = -1) then
        select seq_xyz01.nextval into :new.col1 from dual;
      end if;
    end;
    /--------------------End sqlplus----------------------
    I would then proceed to export using the exp utility via the command line
    exp system/systempassword file=user1.dmp owner=user1
    Then import user1 objects into user2
    imp system/systempassword file=user1.dmp fromuser=user1 touser=user2
    Now the problem:
    When i take a look at the sql for user2 trigger (trig01) i see the following (viewed via sqldeveloper)
    create or replace TRIGGER "USER2".trig01
    before insert on user1.xyz01 for each row
    begin
      if (nvl(:new.col1, -1) = -1) then
        select seq_xyz01.nextval into :new.col1 from dual;
      end if;
    end;its referring to user1.xyz01 table, however i want it to point to is user2.xyz01 table. Can someone please help me out or offer another solution to go about this because i need the ability to import the objects into a different user without the import failing and having to recompile the object.
    I've also tried executing this while connected as system user via sqlplus:
    define user_schema=user1
    create or replace trigger &user_schema..trig01
    before insert on xyz01 for each row
    begin
      if (nvl(:new.col1, -1) = -1) then
        select seq_xyz01.nextval into :new.col1 from dual;
      end if;
    end;
    /but that fails stating that table or view does not exist, please help
    however that fails because i
    Edited by: user3868150 on Nov 6, 2009 6:05 PM

    When performing an update in their system, the same script will be run with different values, thats not the problem.
    The client currently have just that one schema in their environment, however they want to have another instance of the application set up in their environment (same database) and have that go off on its own track separate from the original application.
    Now when we do an exp of the schema and the imp it into another user it get imported, however its incorrect. As stated before the trigger will be acting on the table in the original schema when it should be acting on the table in the newly imported schema.
    I suppose there is no other way around this when a trigger is created the way in which i outlined above. I guess after the data gets imported into a different user the trigger would have to be recompiled to point to the correct table.
    If you have an alternate solution to go about this i am open to suggestions. However like i mentioned in the original post because of SOX purpose the dba is not allowed to log in and execute update scripts as the schema user. The scripts should only be executed as that privileged user (dba).
    Also if i hard code the user when the trigger is created
    create or replace trigger user1.trig01
    before insert on user1.xyz01 for each row
    begin
    if (nvl(:new.col1, -1) = -1) then
    select seq_xyz01.nextval into :new.col1 from dual;
    end if;
    end;
    /it still doesn't get imported the way that i want it to be imported in user2
    create or replace TRIGGER "USER2".trig01
    before insert on user1.xyz01 for each row
    begin
      if (nvl(:new.col1, -1) = -1) then
        select seq_xyz01.nextval into :new.col1 from dual;
      end if;
    end;now when i do an insert to test
    insert into user1.xyz01 (col2, col3) values ('abc', 123); -- Works fine, no problems here
    insert into user2.xyz01 (col2, col3) values ('abc', 123);Results in an error ORA-01400: cannot insert NULL into ("USER2".XYZ01"."COL1") because the trigger doesn't exist on user2.xyz01 table.
    Just try and create the schema like how i outlined above in your environment to see what i'm talking about. It seems that the only way to get the trigger to be imported the way i want it to is to actually log in as that user and create the trigger.
    sqlplus user1/user1
    {code}
    create or replace trigger trig01
    before insert on xyz01 for each row
    begin
    if (nvl(:new.col1, -1) = -1) then
    select seq_xyz01.nextval into :new.col1 from dual;
    end if;
    end;
    {code}
    Edited by: user3868150 on Nov 6, 2009 6:10 PM

  • Please help.downloading apps from ovi store over w...

    i simply cannot download a single application from ovi store over wifi.its too costly over 3g .please help me.latest firmware updated.

    You dont have change your wifi settings.(I hopr you dont have any probs with your internet connection)
    Use this installation files and install reps.
    http://my-maemo.com/download/repos/extras.install
    http://my-maemo.com/download/repos/extras-testing.install
    http://my-maemo.com/download/repos/extras-devel.install
    And also check your nokia catalogues  from appmanager.
    "You may loose faith on us.. But never in your selves! From here, the fight will be your own.."
    _____________[Protect Transformers]_____________

  • PLEASE HELP LOCATE SONGS FROM EXTERNAL HD (Cloud)

    First off, I would like to thank ANYONE who can help me out please! I am desperate now for some advice to help me through this, I have spent the last 10 Hours (Not Exaggerating) trying to find a solution to my problem online and reading through countless things I HAVE NOT been able to get an answer to resolve the issue that I am having. Please I beg you to help me! I just wanna call Apple Support so that someone can walk me through this but I am using a Windows and they won't take calls from Windows users (which is kind of lame since I am an Iphone/Ipad/Itunes customer just not on an Apple Computer) and honestly I would even pay money to have this issue fixed already I just don't wanna waste any more time on it!!!
    SO, that being said. Here is the most concise explanation I can give you of my troubles!
    1. I have both a Laptop and a Desktop. My Laptop has been my primary source for Itunes for the passed 8 years, however, it is old and I want to start using my Desktop for Itunes from now on..also, I NEED to free up space on my Laptop so that I can back up my Iphone 5 which has a broken screen, but that's another story!
    2. I Purchased something called a "WD MY CLOUD" Which is basically a personal ICloud that has 2TB of external HD Space on it. I hooked up my WDMyCloud and configured it, got it working perfectly, and I began the multiple hour long process to transfer my ITUNES Folder from my Laptop over to the WDMyCloud.
    3. All of the files and songs were successfully transferred from my Laptop to the WDMyCloud.
    4. I Installed Itunes onto my Desktop.
    5. I shift+clicked Itunes and chose the Itunes Library from my WDMyCloud. I believe the file is found in: \\WDMYCLOUD\Oliver\iTunes\iTunes Library. (And that is the .itl)
    6. When I have Itunes open, I go to preferences, and I change the MEDIA Folder to the iTunes Music Folder located on my WDMyCloud. I believe the file is found as: \\WDMYCLOUD\Oliver\Itunes\iTunes Music. (It does have all of my songs in there on the WDMyCloud in Folders by Album or however itunes had it organized)
    7. Now I am staring at my Itunes Playlists and All of my Songs are there, however, whenever I try to Play ANY Song on there I receive this error: "The song "xx" could not be used because the original file could not be found. Would you like to Locate it?" (And no, I would not like to manually locate over 3,000 songs)
    Also, every single Song has an "!" Exclamation mark next to it.
    8. If I use "Get Info" about the track to see where Itunes is looking for the track, I will show you an example now here to what it says:
    "file://localhost/C:/Users/Oliver/Downloads/Firebeatz - Gangster (Original Mix).mp3"
    (Now I do realize that this is incorrect, it should be looking for the songs in my WDMyCloud, that path above is from my Laptop's Downloads Folder and I have no idea how to fix this.)
    9. I have also tried using the "FindTracks.vbs" on my \\WDMYCLOUD\Oliver\Itunes\iTunes Music Folder and this did nothing, at all.
    10. I have opened the Itunes Library XML that is saved onto my WDMyCloud from my Laptop, and it shows the script as:
    <plist version="1.0"><dict><key>Major Version</key><integer>1</integer><key>Minor Version</key><integer>1</integer><key>Date</key><date>2014-05-24T16:40:35Z</date><key>Application Version</key><string>11.2</string><key>Features</key><integer>5</integer><key>Show Content Ratings</key><true/><key>Music Folder</key><string>file://localhost//WDMYCLOUD/Oliver/Itunes/iTunes%20Music</string><key>Library Persistent ID</key><string>5C3728163E81BB1D</string><key>Tracks</key>
    <p
    ^^ Now I'm not really sure how clumped up that is going to look once I post cuz when I tried copy/pasting it from the XML on to here it came out looking super weird, but as you can see the key thing there is that the file it says it's looking in is the Itunes Music file in my WDMyCloud. So I don't know what could be wrong with the XML script path if there is anything wrong with it at all. The rest of the XML is super super long list of all my tracks and albums an such which is obviously unimportant to this matter. But maybe this can help figure out my problem.
    Anyway, that's about as far as I was able to get after 10 hours of research, and like I said, still no solution. I'm stuck! Please please please help me figure this out! One of the biggest reasons I purchased this WDMyCloud was to use it as a consistent Itunes mediator between my devices and I absolutely MUST free up space on my Laptop ASAP and this is the only way! Thank you so much for your help in advance!!

    See Make a split library portable for some general advice on making a working library portable. It should be less hassle than fixing a broken one.
    Since the library works perfectly on the laptop I would suggest you start over and do it like this;
    1. Create a new iTunes folder in the root of the external as \\WDMYCLOUD\iTunes (capitalised as shown please, just to appease my OCD)
    2. Copy into it the following items from C:\Users\Oliver\Music\iTunes
    Album Artwork
    iTunes Library.itl
    iTunes Library Extras.itdb
    iTunes Library Genius.itdb
    sentinel
    3. Shift-start iTunes and open the library at \\WDMYCLOUD\iTunes\iTunes Library.itl
    4. Under Edit > Preferences > Advanced change the media folder to \\WDMYCLOUD\iTunes\iTunes Media (again capitalised as shown please)
    5. Use File > Library > Organize Library. Tick both boxes, or the one that isn't greyed out, then click OK.
    iTunes will gather in copies of all your media files, putting them into the correct locations so that the library is in the modern layout, and able to be moved from one machine to another.
    I'd recommend you clone the entire iTunes folder to another drive (see this backup tip) before you think about cleaning the originals.
    If your library is large then having the library files on a network share will slow things down as the database has to be written out almost any time you do anything with your library. Once you've connected the library to the new computer and had it opened and working you can copy the library files and Album Artwork folder into the local C:\Users\Oliver\Music\iTunes folder (deleteing what is already there first) then shift-start-iTunes and connect to C:\Users\Oliver\Music\iTunes\iTunes Library.itl. If/when you want to move the library to a different drive/computer copy the files back out to the drive and access the library there at lease once before the move.
    tt2

  • Very urgent!!! Please help! Anybody from Oracle who can help?

    I am using Oracle9i with oracle pool in my JSP for database handling.
    I am using OracleConnectionCacheImpl and OracleConnectionCacheImpl.DYNAMIC_SCHEME.
    I am also setting max and min limit for connections
    ocacheimpl.setMinLimit (5);
    ocacheimpl.setMaxLimit (10);
    I have used a startup servlet that loads on tomcat startup
    creating pool ( that is, OracleConnectionCacheImpl)
    This OracleConnectionCacheImpl in then I am putting as
    application wide object and getting access to it in all my JSPs
    Initially it creates 5 connections. But after some time (2 hrs or
    so) all the connections are getting killed. (I can see this
    from the "Sessions" tab of the enterprise manager)
    Now if I request my JSP then I get error. But after around 30mins
    again 5 connections are created automatically( I hope thats what
    DYNAMIC_SCHEME would do) and then my JSp works.
    My question is why all connections are getting killed and why it
    takes so much time to reset the connections again!
    Is Oracle's DYNAMIC_SCHEME has got some bug? or I have to do
    some settings in my oracle server. Please help
    I am using oracle9i in Japanese OS(Windows).

    Check once *REMADV *.
    Amit.

  • PLEASE HELP!! from snow leopard to mountain lion - install page just sitting there

    Hi,
    I am updating my macbook from Snow Leopard to Mountain Lion. I downloaded the software from the app store just fine  and checked to make sure my macbook is compatible (which it is). But now I am trying to install it on my HD and it wont do anything. I agreed to the terms and conditions and entered my admin passwprd already and nothing's happening. I've done this multiple times, closing out of the mountain lion app and restarting it - going through the process over again and still nothing is happening. No horizontal blue install bar, no reving of the fans making it sound like work is being done - nada. Please help!!!

    Hi,
    You could try and redownload the Installer.app and try again (move the installer that you have allready downloaded to the desktop first).
    Robin

  • Please help -installed update from itunes wiped my phone

    I just installed an update on itunes and it must have done some sort of factory reset as it wiped everything including my contacts from my phone. I plugged it in again to see if it could install a back up and I can't find anything. Also, it started 'backing up' the new empty phone and asked me to register it.
    Please help anyone- I had a lot of music and expensive aps on there not to mention contacts and diary entries. I never had problems with it before but this is an absolute nightmare.
    Many thanks

    Am really annoyed now- by the number of people viewing this thread this is clearly a big problem and yet nobody at Apple has bothered to help. I would much rather pick up the phone and speak to someone but can't because it's been 90 days since my purchase.
    I have spent a lot of money on music and aps and it looks like Apple don't even care- it's a disgrace. I can now see what all the fuss is about in the media and why people are angry at them as well. I won't be buying any of their products again that's for sure.

  • Please Help - restore iphone from old backup

    Dear Applers,
    i got very complectated case,
    i use Apple iPhone 3G (3.1.3) & Mac Book Pro (iTunes 10)
    i took backup for my phone at 12 pm, at 5 pm i deleted my messages by accident and when i connected my mobile to the computer to get back my things the computer automaticilty synced my mobile and took a new backup at 5 pm.
    when i right click > restore, the computer show me that the last backup is at 5pm which is i dont want because it doesnt have my data, i want to be able to restore from the backup that i took earlier that day.
    i tried to go to Users/ Library / Application Support / Mobile Backup and i found that my old files still their beside the new files
    i tried to delete my new backup files from this directory so that way it take the backup before it. it didnt work .. it just deleted every thing
    i really dont know what to do i feel like my data is here but i cant access it
    Please Help,
    Thanks

    To be able to read the content of those files inside the backup folder, you'll have to use special software like "backup extractor"  http://supercrazyawesome.com/ for example. But don't use the original folder to test, copy it to another place on your HD and use this copy to try.
    Some files are not replaced when a backup is made, only files that changed in data are replaced, as far as I know.

  • Please help cannot send from bluetooth phone to brand new macbook.

    i just recently upgraded to a macbook, and after using my old ibookg4 to recieve pics from my mobile phone [LG viewty] i wanted to do the same again! but no lck i have restarted both mac and phone and it hasnt made a difference. i can send to my phone from mac but not from mac to phone. Please help....all appreciated

    Same problem here - with my Nokia N73. It finds the computers - a Macbook and a Mini - but cannot connect to send photos to them.
    The error message on the phone is : Unable to Connect.
    They both seem to work on it for a couple seconds and various BT icons blink and act as if they are about to do something, but then they give up.
    I checked Sharing and it is enabled.
    I have gone through the pairing process - everything looks fine... but it just won't connect.
    I forget when it stopped working, but it used to.
    Any suggestions would be welcome.
    Wiv

  • Please help: Getting publicKey from certificate

    Hi,
    I have created a certificate using keytool, and now I'm trying to extract a publicKey object from it via Java code.
    I generated the certificate using the following commands:
    .keytool -genkey -keystore test -alias abc123 -keyalg RSA -storepass xxxxxx
    keytool -export -file tester.der -keystore test -alias abc123 -storepass xxxxxxI'm trying the following code:
    KeyStore ks1 = KeyStore.getInstance ( "JKS");
    ks1.load( (InputStream)(new FileInputStream( "C:\\Program Files\\Java\\jdk1.5.0_01\\bin\\tester.der" )), "xxxxxx".toCharArray() );
              Certificate c = ks1.getCertificate( "abc123" );
              PublicKey p = c.getPublicKey();where, xxxxxx is the passwod, abc123 is the alias I used to create the key store, and tester.der is the certificate file.
    I'm getting the following error:
    Exception in thread "main" java.io.IOException: Invalid keystore format
         at sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:632)
         at java.security.KeyStore.load(KeyStore.java:1150)
    I guess that the problem is related to the fact that in the getInstance() call, I used "JKS"? But if his is indeed the problem, with which string should I replace it?
    Please help!!
    thanks,
    Amir

    Thanks,
    but... the key store file itself should NOT be at the
    client side, only the certificate file!
    So, if the client wants to load the public key via
    the certificate, how can he do that? Isn't
    there a way to load a public key from the certificate
    itself into a Java publicKey object and not
    from the key store file??
    thanks a lot in advance,
    AmirSo use a certificate factory to load the certificate and extract the public key. For excample
        CertificateFactory cf = CertificateFactory.getInstance("X.509");
                Certificate cert = cf.generateCertificate(new FileInputStream(certificateFile));
                java.security.interfaces.RSAPublicKey pk = (java.security.interfaces.RSAPublicKey)cert.getPublicKey();           
                System.out.println(pk.getAlgorithm());
                System.out.println(pk.getPublicExponent());
                System.out.println(pk.getModulus());

  • Please help with Synch from Blackberry to Outlook

    Hello Everybody, I am new here and need help.  Due to a restructure, my position was eliminated.  The company used Lotus Notes and I had everything synched with my Blackberry and it worked fine.  Of course, I had to return the Blackberry but did get a copy of the data (address book, calendar entries, and memo notes as well as e-mail). 
    I bought Outlook and am using my wife's older BB (I think it is an 8700 series based on pictures.)  I was able to get the address book loaded somehow into Outlook, but when I try to do a full synch, I get the following error after Intellisync does read the calendar records:
    "No Outlook or MS Exhchange folders appear to be configured.  Please run Intellisync Configure, and make sure all selected applications have associated Outlook/MS Exchange folder."
    I have tried to configure but I am not able to "browse" for a file.  That area is grayed out.
    Please help!  Thank you very much.

    JSS1138 wrote:
    you can't dynamically-link a Pr sequence into an AE comp, and then turn around and link that AE comp back into a Pr sequence.
    Close enough.  Seen it done in the tutorials.  There's a way to select the desired clips, directly open a new AE project and comp from Premiere with those clips exactly as they are in the Premiere sequence, do your manipulations in AE, then when you switch back to Premiere, those AE changes show up on the clips in question.  You effectively get Premiere>AE>Premiere.  Any and all changes made in AE show up in Premiere.  The only thing you can't yet do is make changes to the original clips in Premiere, as they get replaced by the AE comp.
    Still, I'd call that two way DL, and it may be the most efficient way to ge this job done.
    Potato, Potahto.  Smoke and mirrors.  The only difference between that and the copy/paste that I described above is that Premiere automatically does the copy/paste for you, and automatically adds the AE comp to the sequence as a replacement for the selected clips.  You can call that 2-way DL if you want, but I won't.  I'm pushing for real 2-way dynamic linking.
    -Jeff

  • Please help me go from PS Ver 6 to what works in Windows 7

    Hi - I have been under a rock using my Photoshop 6 for eons. I'm about to get a new laptop with - da da duuuun - Windows 7. Low and behold, I figured I check and see if my dinosaur Photoshop 6 will work *big buzzer sound* not gonna happen. So I'm all 'duhhh' I'll just get the new version of Photoshop that works uhhh ... no. Can someone PLEASE help me? I edit photos, make designs to do home silkscreening and make print material like business cards. I am not that great compared to professionals but my friends all ask me to make stuff for them they think I'm a wiz - - never had a class and can never remember what lots of the tools do so I have limited use but make some pretty nice stuff in the end.
    What version would you recommend? Basically I do have a business and make my own graphics and edit scanned in drawing and edit clipart, ect - I don't even know how to make designs/art on the computer - use a lot of fonts - so the super professional stuff is obviously not for me. I also have Illustrator 11 and streamline 4.0 - if any of you remember those
    So what do you think??
    Thanks so much in advance!

    I don't use it a lot, but as far as I can see everything seems to work.  I didn't do anything special to install it; I don't even have the compatibility stuff checked.  I'm running Windows 7 Ultimate x64.
    I have UAC disabled (and I know all the things that implies), but conceivably even with UAC enabled if you set Photoshop 6's shortcut attributes to Run As Administrator I imagine you shouldn't have any problems.
    Best thing to do is try it.
    -Noel

  • No sound after importing mpeg from imovie

    Hello, i'm new to IMovie and i have the problem that all my video files made with my photocamera loose the sound when i import them into Imovie. the FAQ's tell me it is because they are in mpef-muxed structure. Can anybody help me with the solution on HOW to get my movies with sound into Imovie ???

    I have exactly the same problem and took your advice, downloading MPEG stream clip. But it is not clear to me how to do this.
    Previously I dragged the MPEG clips from iPhoto ( which played fine in QT with sound) into my iMovie and there was no sound ( as the OP describes).
    So if you could spell out the exact procedure, I would be most grateful

  • BRAND NEW APPLE USER IN DESPERATE NEED OF HELP IMPORTING VIDEOS FROM JVC!!!

    I have an older JVC Everio. I have probably had it for 3 or 4 years. I don't exactly remember. Anyway, I have always used Dell products and they were tough to download videos to as well. What my issue is is that I have a Free Agent External Hard Drive with all my video files saved in the JVC .MOD format. When I open iMovie (version 7.1.1) and try to import the files from the external hard drive it doesn't even recognize these files as video files. I am no computer wizard (maybe that is obvious) and I could really use some basic help. I want to love this machine. I bought it for the video/photo capabilities. I shoot a Canon XTi 10.2 Rebel and have about 10,000 photos saved on the same external hard drive. I am looking forward to learning how to do this, but could use some much needed advice!!
    Thanks!
    Hoov

    I believe this is what you want.
    And, here's another: MPEG Streamclip .
    The Cyberlink Prodirector software that came with the CamCorder or is available from JVC will also convert to other formats, but it isn't a Mac compatible program.
    And, this site outlines how to import the files into iMovie.
    Message was edited by: Kappy

  • Open HUB ( SAP BW ) to SAP HANA through DB Connection data loading , Delete data from table option is not working Please help any one from this forum

    Issue:
    I have SAP BW system and SAP HANA System
    SAP BW to SAP HANA connecting through a DB Connection (named HANA)
    Whenever I created any Open Hub as Destination like DB Table with the help of DB Connection, table will be created at HANA Schema level ( L_F50800_D )
    Executed the Open Hub service without checking DELETING Data from table option
    Data loaded with 16 Records from BW to HANA same
    Second time again executed from BW to HANA now 32 records came ( it is going to append )
    Executed the Open Hub service with checking DELETING Data from table option
    Now am getting short Dump DBIF_RSQL_TABLE_KNOWN getting
    If checking in SAP BW system tio SAP BW system it is working fine ..
    will this option supports through DB Connection or not ?
    Please follow the attachemnet along with this discussion and help me to resolve how ?
    From
    Santhosh Kumar

    Hi Ramanjaneyulu ,
    First of all thanks for the reply ,
    Here the issue is At OH level ( Definition Level - DESTINATION TAB and FIELD DEFINITION )
    in that there is check box i have selected already that is what my issue even though selected also
    not performing the deletion from target level .
    SAP BW - to SAP HANA via DBC connection
    1. first time from BW suppose 16 records - Dtp Executed -loaded up to HANA - 16 same
    2. second time again executed from BW - now hana side appaended means 16+16 = 32
    3. so that i used to select the check box at OH level like Deleting data from table
    4. Now excuted the DTP it throws an Short Dump - DBIF_RSQL_TABLE_KNOWN
    Now please tell me how to resolve this ? will this option is applicable for HANA mean to say like , deleting data from table option ...
    Thanks
    Santhosh Kumar

Maybe you are looking for