Any suggestions about a program to rip my dvd's???

I have a 30 gb ipod video and i would like to watch movies on it. Any suggestions to any good programs i could download ( FOR FREE!!! )
thanks

mabey this y cant u just purchase a program?
Nano 4GB black,Moto RAZR V3 black, PSP, all kinds of cases for nano,radio/remote   Windows XP   <img src="http://i36.photobucket.com/albums/e13/superman5656/s.gif"align="right"</span>

Similar Messages

  • Any suggestions about this program to improve performance and effective cod

    CREATE OR REPLACE PACKAGE SEODS02.ODS_ACCOUNT
    AS
    Package Name : ODS_ACCOUNT
    /* Description : This procedure will be called to move the data from */
    /* ACCT_ALT_ID_STG (staging) table to ACCT_ALT_ID table and EODS_ACCT */
    /* table for all new accounts */
    /**************** Change History ***********************************/
    /* Date Version Author Description */
    /* 15-04-2011 1.00 Lakshmi Draft version */
    -- Global Specifications.
    package_name_in VARCHAR2(50) :='ODS_ACCOUNT';
    v_cntl_schema VARCHAR2(30) :='SCNTL02';
    v_location INTEGER := 10;
    -- Procedure Specifications.
    PROCEDURE INSERT_SURR_ACCTS (job_name_in IN VARCHAR2,
    proc_cd_in IN VARCHAR2,
    proc_step_cd_in IN VARCHAR2,
    bch_dte_in IN DATE,
    fl_nbr_in IN NUMBER,
    verbose_log_flag_in IN INTEGER,
    pred_check_req_in IN INTEGER,
    ibd_id_in IN NUMBER,
    proc_step_status_out OUT INTEGER,
    sp_hier_inout IN OUT VARCHAR2);
    END ODS_ACCOUNT;
    CREATE OR REPLACE PACKAGE BODY SEODS02.ODS_ACCOUNT
    AS
    Procedure Name : INSERT_SURR_ACCTS
    Description : This procedure will be called to move the data from
    ACCT_ALT_ID_STG (staging) table to ACCT_ALT_ID table
    and EODS_ACCT table for all new accounts.
    Release Date : 27 MAY 2011
    Created By : C2119810
    PROCEDURE INSERT_SURR_ACCTS (job_name_in IN VARCHAR2,
    proc_cd_in IN VARCHAR2,
    proc_step_cd_in IN VARCHAR2,
    bch_dte_in IN DATE,
    fl_nbr_in IN NUMBER,
    verbose_log_flag_in IN INTEGER,
    pred_check_req_in IN INTEGER,
    ibd_id_in IN NUMBER,
    proc_step_status_out OUT INTEGER,
    sp_hier_inout IN OUT VARCHAR2)
    AS
    /* Local Variables Declaration*/
    v_curr_date DATE := CURRENT_DATE;
    procedure_name_in VARCHAR2(30) := 'INSERT_SURR_ACCTS';
    stat_code_in VARCHAR2(30);
    proc_step_start_out NUMBER(1);
    proc_step_upd_out NUMBER(1);
    error_msg_in VARCHAR2(1000);
    option_in VARCHAR2(30);
    v_cmit_nbr NUMBER(8);
    v_query VARCHAR2(10000);
    v_actl_inpt_cnt NUMBER(10):=0;
    v_rec_inserted_cnt_in NUMBER(10):=0;
    v_rec_errored_cnt_in NUMBER(10):=0;
    v_proc_step_upd_out NUMBER(1);
    handled_exception EXCEPTION;
    CURSOR c1 IS
    SELECT *
    FROM acct_alt_id_stg
    WHERE fl_nbr = fl_nbr_in AND
    alt_acct_rec_proc_flag = 'N' AND
    eods_acct_rec_proc_flag = 'N' AND
    to_date(bch_dte,'DD-MON-YY') <= bch_dte_in;
    TYPE sttg_cursor IS TABLE OF acct_alt_id_stg%ROWTYPE;
    sttg_array sttg_cursor;
    BEGIN
    /* Enable the logging if verbose log flag is 0*/
    IF verbose_log_flag_in = 0 THEN
    DBMS_OUTPUT.ENABLE();
    ELSE
    DBMS_OUTPUT.DISABLE();
    END IF;
    /* Start the Insert Surrogate Accounts process step after all the predecessor process steps are complete */
    ODS_CONTROL_UTILITY.PROC_STEP_START( proc_cd_in => proc_cd_in,
    proc_step_cd_in => proc_step_cd_in,
    ibd_id_in => ibd_id_in,
    bch_dte_in => bch_dte_in,
    job_name_in => job_name_in,
    verbose_log_flag_in => verbose_log_flag_in,
    pred_chk_reqd_in => pred_check_req_in,
    proc_step_stat_out => proc_step_start_out,
    sp_hier_inout => sp_hier_inout);
    IF proc_step_start_out = 0 THEN
    dbms_output.put_line('Process Step '|| proc_step_cd_in ||' started for Process '||proc_cd_in);
    error_msg_in := 'Error in reading Commit point';
    v_query := 'SELECT proc_cmit_nbr FROM '||v_cntl_schema||'.proc
    WHERE proc_id = '|| chr(39) || proc_cd_in || chr(39) ||
    ' AND ibd_id = '|| ibd_id_in;
    EXECUTE IMMEDIATE v_query INTO v_cmit_nbr;
    dbms_output.put_line('Comit point number is : '||v_cmit_nbr);
    OPEN c1;
    LOOP
    FETCH c1 BULK COLLECT INTO sttg_array LIMIT v_cmit_nbr;
    FOR i IN 1..sttg_array.COUNT LOOP
    error_msg_in := 'Error in inserting ACCT_ALT_ID table';
    INSERT INTO acct_alt_id (acct_alt_id, ibd_id, acct_alt_id_cntx_cde, eods_acct_id, data_grp_cde, crte_pgm, crte_tstp, updt_pgm, updt_tstp)
    VALUES (sttg_array(i).acct_alt_id, sttg_array(i).ibd_id, sttg_array(i).acct_alt_id_cntx_cde, seq_eods_acct_id.nextval, sttg_array(i).data_grp_cde, job_name_in, v_curr_date, job_name_in, v_curr_date);
    error_msg_in := 'Error in inserting EODS_ACCT table';
    INSERT INTO eods_acct (eods_acct_id, acct_typ_cde, data_grp_cde, updt_dte)
    VALUES (seq_eods_acct_id.currval, sttg_array(i).acct_typ_cde, sttg_array(i).data_grp_cde, v_curr_date);
    error_msg_in := 'Error in Updating process flag in ACCT_ALT_ID_STG table';
    UPDATE acct_alt_id_stg
    SET alt_acct_rec_proc_flag = 'Y',
    eods_acct_rec_proc_flag = 'Y',
    updt_pgm = job_name_in,
    updt_tstp = v_curr_date
    WHERE acct_alt_id = sttg_array(i).acct_alt_id
    AND acct_alt_id_cntx_cde = sttg_array(i).acct_alt_id_cntx_cde
    AND fl_nbr = sttg_array(i).fl_nbr;
    /*Incrementing the count of records inserted*/
    v_actl_inpt_cnt := v_actl_inpt_cnt + 1;
    v_rec_inserted_cnt_in := v_rec_inserted_cnt_in + 1;
    END LOOP;
    EXIT WHEN c1%NOTFOUND;
    END LOOP;
    CLOSE c1;
    /* Update the count of records inserted and total processed count to proc_step_exec table. */
    ODS_CONTROL_UTILITY.PROC_STEP_UPDATE (proc_cd_in => proc_cd_in,
    proc_step_cd_in => proc_step_cd_in,
    ibd_id_in => ibd_id_in,
    bch_dte_in => bch_dte_in,
    job_name_in => job_name_in,
    status_in => 'IN PROCESS',
    rec_inserted_cnt_in => v_rec_inserted_cnt_in,
    actl_inpt_cnt_in => v_actl_inpt_cnt,
    verbose_log_flag_in => verbose_log_flag_in,
    pred_chk_reqd_in => pred_check_req_in,
    proc_step_upd_out => proc_step_upd_out,
    sp_hier_inout => sp_hier_inout);
    IF proc_step_upd_out = 0 THEN
    COMMIT;
    ELSE
    error_msg_in := 'Issue in updating process step '||proc_step_cd_in||' for process '||proc_cd_in;
    option_in := 'proc_step';
    v_location := 30;
    RAISE handled_exception;
    END IF;
    ODS_CONTROL_UTILITY.PROC_STEP_UPDATE (proc_cd_in => proc_cd_in,
    proc_step_cd_in => proc_step_cd_in,
    ibd_id_in => ibd_id_in,
    bch_dte_in => bch_dte_in,
    job_name_in => job_name_in,
    status_in => 'COMPLETED',
    verbose_log_flag_in => verbose_log_flag_in,
    pred_chk_reqd_in => pred_check_req_in,
    proc_step_upd_out => v_proc_step_upd_out,
    sp_hier_inout => sp_hier_inout);
    IF v_proc_step_upd_out = 0 THEN
    COMMIT;
    dbms_output.put_line('Data has been successfully inserted into ACCT_ALT_ID and EODS_ACCT tables');
    proc_step_status_out := 0;
    ELSE
    error_msg_in := 'Issue in ending process step for process ' || proc_cd_in || ' and process step '|| proc_step_cd_in;
    option_in := 'others';
    v_location := 40;
    RAISE handled_exception;
    END IF;
    ELSE
    error_msg_in := 'Issue in starting the process step for process ' || proc_cd_in || ' and process step '|| proc_step_cd_in;
    option_in := 'others';
    RAISE handled_exception;
    END IF;
    EXCEPTION
    WHEN handled_exception THEN
    IF c1%ISOPEN THEN
    CLOSE c1;
    END IF;
    ROLLBACK;
    DBMS_OUTPUT.ENABLE();
    ODS_CONTROL_UTILITY.COMM_SP_EXCEP_HNDLR(package_name_in => package_name_in,
    procedure_name_in => procedure_name_in,
    location_in => v_location,
    error_mesg_in => error_msg_in,
    proc_cd_in => proc_cd_in,
    proc_step_cd_in => proc_step_cd_in,
    ibd_id_in => ibd_id_in,
    option_in => option_in,
    job_name_in => job_name_in,
    bch_dte_in => bch_dte_in,
    sp_hier_inout => sp_hier_inout);
    sp_hier_inout :=
    CASE
    WHEN sp_hier_inout IS NULL THEN package_name_in || '.' || procedure_name_in
    WHEN sp_hier_inout IS NOT NULL THEN package_name_in || '.' || procedure_name_in || '-->' || sp_hier_inout
    END;
    proc_step_status_out := 1;
    WHEN OTHERS THEN
    IF c1%ISOPEN THEN
    CLOSE c1;
    END IF;
    ROLLBACK;
    error_msg_in := error_msg_in||' : '||SQLCODE || ' : '||SQLERRM;
    DBMS_OUTPUT.ENABLE();
    option_in := 'proc_step';
    ODS_CONTROL_UTILITY.COMM_SP_EXCEP_HNDLR(package_name_in => package_name_in,
    procedure_name_in => procedure_name_in,
    location_in => v_location,
    error_mesg_in => error_msg_in,
    proc_cd_in => proc_cd_in,
    proc_step_cd_in => proc_step_cd_in,
    ibd_id_in => ibd_id_in,
    option_in => option_in,
    job_name_in => job_name_in,
    bch_dte_in => bch_dte_in,
    sp_hier_inout => sp_hier_inout);
    sp_hier_inout :=
    CASE
    WHEN sp_hier_inout IS NULL THEN package_name_in || '.' || procedure_name_in
    WHEN sp_hier_inout IS NOT NULL THEN package_name_in || '.' || procedure_name_in || '-->' || sp_hier_inout
    END;
    proc_step_status_out := 1;
    END INSERT_SURR_ACCTS;
    END ODS_ACCOUNT;
    /

    I assume that the parts taking time are in the
    FOR i IN 1..sttg_array.COUNT LOOP In here you do 2 INSERTs and an UPDATE for every loop...
    If you LOOP 1 Mill tiimes (how many??) then you do 2 Mill single inserts and 1Mill sinlge UPDATES.
    A trace with TKPROF will tell you details.
    You better do an INSERT ALL to do the two inserts and a MERGE to do the UDPATE. NO LOOP!!! That will reduce the code and maximize performance by a magniture.

  • I am novice to LabView programmin​g. Any suggestion about the the good programmin​g style will be of great help. Thanks.

    I just wrote a small program for reading a ASCII file and writting the numbers to Arrays. Files are enclosed for reference. Any suggestion about the programming style quality or what is the best way for LabView programming will be of great help. Thanks in advance.
    Attachments:
    Reading_Text_File_into_Array.vi ‏32 KB
    37a8176a.cr5 ‏1 KB

    I'm home from work today so ... here's my modification to your VI. Use it with you existing data. As you get more exposed to LV's existing tools, you'll discover the shortcuts. No loops are necessary for your task.
    Hope this helps.
    - Kevin
    Attachments:
    Reading_Text_File_into_Array_New.vi ‏47 KB

  • My ipad was stolen today in China today. Any suggestions about police report?

    They haven been connected to a wireless network. Ialready sent the wipe order. Any suggestions about police report with serial ?

    It's doubtful you'll get it back.
    Report to police along with serial number. Change all your passwords.
    These links may be helpful.
    How to Track and Report Stolen iPad
    http://www.ipadastic.com/tutorials/how-to-track-and-report-stolen-ipad
    Reporting a lost or stolen Apple product
    http://support.apple.com/kb/ht2526
    Report Stolen iPad Tips and iPad Theft Prevention
    http://www.stolen-property.com/report-stolen-ipad.php
    How to recover a lost or stolen iPad
    http://ipadhelp.com/ipad-help/how-to-recover-a-lost-or-stolen-ipad/
    How to Find a Stolen iPad
    http://www.ehow.com/how_7586429_stolen-ipad.html
    Apple Product Lost or Stolen
    http://sites.google.com/site/appleclubfhs/support/advice-and-articles/lost-or-st olen
    Oops! iForgot My New iPad On the Plane; Now What?
    http://online.wsj.com/article/SB10001424052702303459004577362194012634000.html
    If you don't know your lost/stolen iPad's serial number, use the instructions below. The S/N is also on the iPad's box.
    How to Find Your iPad Serial Number
    http://www.ipadastic.com/tutorials/how-to-find-your-ipad-serial-number
    iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number
    http://support.apple.com/kb/HT4061
     Cheers, Tom

  • Iphoto causes half my screen to be reversed (screen split with the right side half now on the left side) and computer freezes. Any suggestions about a fix?

    iphoto causes half my screen to be reversed (screen split with the right side half now on the left side and the left hand side on the right.) and screen gets multiple blurry copies. Also the computer freezes. Any suggestions about a fix? Can I delete iphoto and reinstall? If so, will I lose my photos?

    Please post a screenshot that shows what you mean. Be careful not to include any private information.
    Start a reply to this message. Click the camera icon in the toolbar of the editing window and select the image file to upload it. You can also include text in the reply.

  • IPhone music will not respond to Play button after being paused. The same music is on my iPad and MacBook Pro without problems. Any suggestions about cause and solution.

    iPhone music will not respond to Play button after being paused.
    The same music is on my iPad and MacBook Pro without problems. Any suggestions about cause and solution.

    Do a
    Reset: Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Note: You will not lose any data

  • I just upgraded my laptop from windows 7 to windows 8.1 and did not realise I had to deactivate and reload Acrobat 9. Any suggestions about what I can do to get Acrobat 9 back and working?

    I just upgraded my laptop from windows 7 to windows 8.1 and did not realise I had to deactivate and reload Acrobat 9. Any suggestions about what I can do to get Acrobat 9 back and working?

    Hi Jon,
    Were you using Acrobat IX standard or pro version? Is Acrobat currently installed on your system?
    You can download Acrobat using one of these Links:
    https://files.acrobat.com/a/preview/1677e343-25c3-409b-a89b-d324552e07ce - Acrobat IX Standard
    https://helpx.adobe.com/acrobat/kb/acrobat-8-9-product-downloads.html  - Acrobat IX Pro
    Please revert back if you face any challenges after Downloading and installing Acrobat IX.
    Regards,
    Rahul

  • Does anyone have any suggestions about what genealogy software is best?  I have a Mac Pro

    I am working on researching and documenting my family tree.  Does anyone have any suggestions as to the best software to use on my Mac Pro?

    Check the App Store, the online & your local AS as well as MacUpdate & Mac resellers.  Google search also. 

  • Any suggestion about unlocking I phone 4s if it is locked to O2 network would be appreciated.

    I am trying to unlock my Pay as you go Iphone 4s from the O2 network. Any suggestions would be highly appreciated.
    Thanks

    http://www.o2.co.uk/unlockmyiphone
    You must be in UK on the O2 network to technically allow unlocking .Roaming does not work

  • HT1365 I have a new iMAC and when I start it up, the wifi connects fine, but when I wake the computer up, I have to manually select my wifi. Any suggestions about how to avoid this?

    I have a new MAC and when I start it up, the wifi connects ok, but when I wake it up, I have to manually connect it to my wifi, any suggestions?

    Take it to Apple and purchase an out of warranty replacement for it.
    Replacement is the only way to fix broken electronics.
    Allan

  • Any suggestion about GWMonitor +NW+Linux

    My Primary DOmain on the NW6.5 Server
    Any suggestion or recomendations : if install GWMONITOR (all componets)
    on the SLES9 - this good idea and all will be work ?
    How configure Primary GW Domain path on the Linux ? (may be need install
    NW Client for Linux on the SLES9 for this and autologin in to NW server
    with GW domain ??)
    Serg

    Install a secondary domain to host the GWMonitor on the SLES server,
    then as long as the HTTP interface on the NW Agents have been enabled
    all will work.
    On Sat, 07 Jan 2006 08:53:49 GMT, Serg <[email protected]> wrote:
    >My Primary DOmain on the NW6.5 Server
    >
    >Any suggestion or recomendations : if install GWMONITOR (all componets)
    >on the SLES9 - this good idea and all will be work ?
    >
    >How configure Primary GW Domain path on the Linux ? (may be need install
    >NW Client for Linux on the SLES9 for this and autologin in to NW server
    >with GW domain ??)
    >
    >Serg
    Tim
    Tim Heywood (SYSOP)
    NDS8
    Scotland
    (God's Country)
    www.nds8.co.uk
    In theory, practice and theory are the same
    In Practice, they are different

  • Any suggestions for a program for my Macbook Pro that will allow me to download/scan a document, fill in form as needed and e-mail or print. Any suggestions?

    Does anyone have a suggestion for a rprogram for my Macbook Pro that will allow me to download/scan a form, fill it in, then e-mail or print it?

    there is one actually use application called air playit, this is application has two parts the first one is the server part to install on any machine its available on Mac and windows you can configure it to stream from anything on the machine, the second part is the client you can install it on any IOS or android, the good thing about this application is you can use local network connection or Internet connection even you are outside still you can stream it
    http://www.airplayit.com/

  • Any suggestions about why images are not displaying in a published web gallery?

    A web gallery generated in Lightroom 3 in 2008 was certainly working correctly when originally published to our (Guernsey Museum) website and still functions correctly from the staging server across our intranet. I have republished it from the staging server (via Dreamweaver) and checked that all the files are present on the live site but still the images refuse to show. The audio associated with the images and the gallery framework itself does work as expected. Another gallery made later and published to the same site works exactly as it should. The ISP cannot explain why one gallery is working properly and the other is not so I'm asking here in desperation if anyone has any insight into possible causes. The (Book of Sark) gallery which doesn't work is here:
    http://www.museums.gov.gg/BkSark/gallery/html/index.html
    The (Peoples Choice) gallery which does work is here:
    http://www.museums.gov.gg/p-choice/index.html
    Thanks for reading this far - any helpful suggestions would be much appreciated!

    It looks like the Book of Sark gallery has photos in a bin folder.  Some servers don't like that, but it could be a clue for the ISP.

  • I can't access any mote to a WD MY Book (WD5000H1Q). Does anyone have any suggestion about this issue?

    I cannot acces any moto to a WD MY Book (WD5000H1Q). After upgrading to Lions It worked for a couple of days. Does anyone have some suggestion on this issue?

    Do you see it on your desktop as an icon?

  • Any suggestions about a 3 button adapter with mic for a v moda m100 headphone

    V moda does not offer a 3 button headphone cable with mic.  I was wondering if there is an alternative adapter I can use ?
    Thanks!
    west3pups

    I personally might not buy Wireless-N, but the idea of being on the bleeding edge is nice.
    Anyway, whichever router you choose, you should be able to accomplish almost everything you need.
    You'll be able to share your internet amongst all of the computers, and share files between them all. Local firewalls and permission settings on individual computers could potentially pose a problem.
    Sending media to your TV may or may not be possible, depending on what other hardware you have. A router itself would not be able to do that, as a TV doesn't usually have any form of WiFi, but if you had a box connected to it for displaying content on the TV, you could do something like that...
    Wireless speakers are generally a separate wireless system. As far as I know, there is a wireless transmitter that sits next to the amp (or other sound source), and broadcasts the music wirelessly to the speakers. You'd have to make sure the speakers and wireless router are on different channels as to not cause interference.
    Don't know much about the media extender, but highly likely will be compatible with XP.

Maybe you are looking for