What is the best approach for transferring DAT to Hard Drive?

Hi,
I've got 10 60 min DATS of my 1970s rock band transferred from live reel to reel recording of gigs. I want to get rid of the DAT machine on Ebay and before I do get these DATS transferred for storage on CDs or DVDs.
I have an external hard drive to transfer to before burning to disc.
Does it make sense to use Logic Pro to transfer the DATS through the computer to the hard drive? Or is there a better / easier / faster way to do it?
I'll want to go back and find songs later and use Logic Pro to EQ and mix them onto a CD by track at some point.
Each DAT is 60 minutes worth of material and ideally I'd like to be able to run through the transfer and mark where songs start as the "in between" stuff is there also.
Thanks,
Bob

Hey, thanks for the reply.
Few more comments....
Could you suggest a Mac stereo editor/recorder.
What is s/pdif? I'm new to computer recording.
Slave recorder to the DAT....I'm hooking the DAT into the iMac through an interface...is this what you mean?
Got you on separate recordings....I want to do that later...Just get the whole tape onto the hard drive then onto a CD or DVD. When I have more time I'll run through and find songs, etc.
Again, thanks,
Bob

Similar Messages

  • What's the best approach for handeling about 1300 connections in Oracle.

    What's the best approach for handling about 1300 connections in Oracle 9i/10g through a Java application?
    1.Using separate schema s for various type users(We can store only relevant data with a particular schema.     Then No. of records per table can be reduced by replicating tables but we have to maintain all data with a another schema     Then we need update two schema s for a given session.Because we maintain separate scheama for a one user and another schema for all data and then there may be Updating problems)
    OR
    2. Using single schema for all users.
    Note: All users may access the same tables and there may be lot of records than previous case.
    What is the Best case.
    Please give Your valuable ideas

    It is a true but i want a solution from you all.I want you to tell me how to fix my friends car.

  • What are the best approaches for mapping re-start in OWB?

    What are the best approaches for mapping re-start in OWB?
    We are using OWB repository 10.2.0.1.0 and OWB client 10.2.0.1.31. The Oracle version is 10 G (10.2.0.3.0). OWB is installed on Linux.
    We have number of mappings. We built process flows for mappings as well.
    I like to know, what are the best approches to incorportate re-start options in our process. ie a failure of mapping in process flow.
    How do we re-cycle failed rows?
    Are there any builtin features/best approaches in OWB to implement the above?
    Does runtime audit tables help us to build re-start process?
    If not, do we need to maintain our own tables (custom) to maintain such data?
    How did our forum members handled above situations?
    Any idea ?
    Thanks in advance.
    RI

    Hi RI,
    How many mappings (range) do you have in a process flows?Several hundreds (100-300 mappings).
    If we have three mappings (eg m1, m2, m3) in process flow. What will happen if m2 fails?Suppose mappings connected sequentially (m1 -> m2 -> m3). When m2 fails then processflow is suspended (transition to m3 will not be performed). You should obviate cause of error (modify mapping and redeploy, correct data, etc) and then repeat m2 mapping execution from Workflow monitor - open diagram with processflow, select mapping m2 and click button Expedite, choose option Repeat.
    In re-start, will it run m1 again and m2 son on, or will it re-start at row1 of m2?You can specify restart point. "at row1 of m2" - I don't understand what you mean (all mappings run in Set based mode, so in case of error all table updates will rollback,
    but there are several exception - for example multiple target tables in mapping without corelated commit, or error in post-mapping - you must carefully analyze results of error).
    What will happen if m3 fails?Process is suspended and you can restart execution from m3.
    By having without failover and with max.number of errors=0, you achieve re-cycle failed rows to zero (0).This settings guarantee existence only two return result of mapping - SUCCSES or ERROR.
    What is the impact, if we have large volume of data?In my opinion for large volume Set based mode is the prefered processing mode of data processing.
    With this mode you have full range enterprise features of Oracle database - parallel query, parallel DML, nologging, etc.
    Oleg

  • What is the best approach to process data on row by row basis ?

    Hi Gurus,
    I need to code stored proc to process sales_orders into Invoices. I
    think that I must do row by row operation, but if possible I don't want
    to use cursor. The algorithm is below :
    for all sales_orders with status = "open"
    check for credit limit
    if over credit limit -> insert row log_table; process next order
    check for overdue
    if there is overdue invoice -> insert row to log_table; process
    next order
    check all order_items for stock availability
    if there is item that has not enough stock -> insert row to
    log_table; process next order
    if all check above are passed:
    create Invoice (header + details)
    end_for
    What is the best approach to process data on row by row basis like
    above ?
    Thank you for your help,
    xtanto

    Processing data row by row is not the fastest method out there. You'll be sending much more SQL statements towards the database than needed. The advice is to use SQL, and if not possible or too complex, use PL/SQL with bulk processing.
    In this case a SQL only solution is possible.
    The example below is oversimplified, but it shows the idea:
    SQL> create table sales_orders
      2  as
      3  select 1 no, 'O' status, 'Y' ind_over_credit_limit, 'N' ind_overdue, 'N' ind_stock_not_available from dual union all
      4  select 2, 'O', 'N', 'N', 'N' from dual union all
      5  select 3, 'O', 'N', 'Y', 'Y' from dual union all
      6  select 4, 'O', 'N', 'Y', 'N' from dual union all
      7  select 5, 'O', 'N', 'N', 'Y' from dual
      8  /
    Tabel is aangemaakt.
    SQL> create table log_table
      2  ( sales_order_no number
      3  , message        varchar2(100)
      4  )
      5  /
    Tabel is aangemaakt.
    SQL> create table invoices
      2  ( sales_order_no number
      3  )
      4  /
    Tabel is aangemaakt.
    SQL> select * from sales_orders
      2  /
            NO STATUS IND_OVER_CREDIT_LIMIT IND_OVERDUE IND_STOCK_NOT_AVAILABLE
             1 O      Y                     N           N
             2 O      N                     N           N
             3 O      N                     Y           Y
             4 O      N                     Y           N
             5 O      N                     N           Y
    5 rijen zijn geselecteerd.
    SQL> insert
      2    when ind_over_credit_limit = 'Y' then
      3         into log_table (sales_order_no,message) values (no,'Over credit limit')
      4    when ind_overdue = 'Y' and ind_over_credit_limit = 'N' then
      5         into log_table (sales_order_no,message) values (no,'Overdue')
      6    when ind_stock_not_available = 'Y' and ind_overdue = 'N' and ind_over_credit_limit = 'N' then
      7         into log_table (sales_order_no,message) values (no,'Stock not available')
      8    else
      9         into invoices (sales_order_no) values (no)
    10  select * from sales_orders where status = 'O'
    11  /
    5 rijen zijn aangemaakt.
    SQL> select * from invoices
      2  /
    SALES_ORDER_NO
                 2
    1 rij is geselecteerd.
    SQL> select * from log_table
      2  /
    SALES_ORDER_NO MESSAGE
                 1 Over credit limit
                 3 Overdue
                 4 Overdue
                 5 Stock not available
    4 rijen zijn geselecteerd.Hope this helps.
    Regards,
    Rob.

  • What is the best approach for combining events?

    When I work on a wedding my current workflow involves creating a compound clip for each section of the video (e.g. reception, ceremony, dancing etc). Then I add the compound clip 'sequences' into a single project to add the chapter markers and export to a single master file.
    I like the idea of managing each section in a project rather than a compound clip now that projects are part of the library in 10.1, but is there a good way to combine multiple projects (for each section) into a single master project, or would I still need to copy the contents of each project and paste in the master project?
    Maybe I am best to continue with my current workflow.

    Just saw the discussion title - should have said "What is the best approach for combining projects"?

  • What is the best approach for Continuously reading all DI lines of all the ports of a DIO device?

    Hi! I am new to Labview ..... I want to monitor all the DI lines of all the ports of a device .... What should be my approach?

    same as this
    http://forums.ni.com/t5/LabVIEW/What-is-the-best-approach-for-Continuously-reading-all-DI-lines/td-p...
    Tim
    Johnson Controls
    Holland Michigan

  • What is the Best Approach for System Defined Fields and Default values

    Hi ,
    Please let me know that what can be the best approach for providing a Default value for the System defined fields when creating a User and How can we hide the System defined fields at the time of User creation

    You cannot provide default values for any attributes defined in the FormMetaData.xml file. You can only provide default values for fields defined in the User Defined Fields and supply a default value.
    You can using entity adapters to populate some of the values, but you must supply an Organization because there is an entity adapter that you cannot modify that verifies the organization name.
    -Kevin

  • What is the best artical for understanding Data Pump

    Hi,
    What is the best artical for understanding the relationship / dependency of NETWORK_LINK with FLASHBACK_SCN or FLASHBACK_TIME .
    Why it is manditory to have NETWORK_LINK , when we are using FLASHBACK_SCN or FLASHBACK_TIME.
    Can some one explain the internal for that dependency
    Thanks
    Naveen

    There's no direct dependency between NETWORK_LINK and FLASHBACK_SCN and FLASHBACK_TIME
    As noted in this Oracle doc,
    If the NETWORK_LINK parameter is specified, the SCN refers to the SCN of the source database
    FLASHBACK_SCN and FLASHBACK_TIME are mutually exclusive.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_export.htm#sthref120

  • What is the best method for transferring iTunes library from PC to iMac?

    I have a new iMac.  I have authorized it with my iTunes account.  My current iTunes library is on a Windows Vista PC, not on the same network.  What is the best method for me to use to transfer the iTunes library from the PC to the iMac?
    iMac, Mac OS X (10.7.4)

    Did I just answer this in another post for you?
    iTunes: How to move [or copy] your music to a new computer [or another drive] - http://support.apple.com/kb/HT4527
    Quick answer if you let iTunes manage your music:  Copy the entire iTunes folder (and in doing so all its subfolders and files) intact to the other drive.  Start iTunes with the option (shift on Windows) key held down and guide it to the new location of the library.
    Macworld - How to transfer iTunes libraries between PC and Mac - http://www.macworld.com/article/46248/2005/08/shiftitunes.html
    Move an iTunes library from a Windows PC to a Mac - http://www.macworld.com/article/1146958/move_itunes_windows_mac.html
    iTunes for Windows: Moving your iTunes Media folder - http://support.apple.com/kb/HT1364

  • What is the best approach for integrationg EP-XI_seibel

    can anybody suggest good approach for EP-XI-Seibel integration project.it is very urgent.please help

    If its a real Business process interfaces then you can use XI as a middleware to create the process and represent the data in the XI,mind you that SAP XI licensing is done using the amount of through-put passing through the xi.In order to do so you can use a seible adapter developed by Iway which translate the seible data to XML ready to be manipulated by XI.
    If its a presentation of seibel data .e.g seibel screens, you might like to search for a way to view the sieble through EP6 (iView).(might be cheaper then using XI...)
    Hope this covers your questions..
    Best regards
    Nimrod Gisis

  • Tabular Modeling. What is the best practice for importing data into VS to limit the records in the designer?

    Should I wrap the queries in a procedure with a @StartDate and @EndDate and create a test partition to pass a small date range? 
    Or can i use the Table properties screen to put the command there and will it run and not be affected or affect the partitions?This would be nice if this SQL statement on this screen was independent of the partitions and I could just leave it with the the
    command text = EXEC TransactionDetail '2014-01-01', '2014-05-31' Especially since if you have many tables that load based on a date range. i would not want to jump in and change that query on all of them.
    Is there a a way to have a parameter in the project so all tables would get the same @startDate and @EndDate so I could change it in one place?
    And I am not stuck to these questions\options, If there is a better way to mass change the queries to run a subset of data for the designer I'd like to hear it.
    Thank You,
    Phil

    Hi Phil,
    According to your description, you are looking for the best way to control the rows that are loaded into a table, right?
    When importing data to a table of tabular model, we can apply filters to control the rows that are loaded into a table. After you have imported the data, you cannot delete individual rows. However, you can apply custom filters to control the way that
    rows are displayed. Rows that do not meet the filtering criteria are hidden. For the detail information about it, please refer to the link below.Filter Data in a Table (SSAS Tabular)
    If I have anything misunderstand, please point it out.
    Regards,
    Charlie Liao
    If you have any feedback on our support, please click
    here
    Charlie Liao
    TechNet Community Support

  • [iPhone] what is the best practice for storing data? SQLite or Keychain ?

    Can't find clear guideline about when and what should I store in Keychain and when to use files, SQLite.
    I need to save large array of data that is configuration of application.
    This configuration should not disappear in event of application upgrade or reinstall. It should be stored in Keychain, right?

    Only use the keychain if you need the added security. Even then it is not meant for large data storage. SQLite allows fast and efficient retrieval of subsets of the data and allows selection with the SQL language. Plists are handy but the entire data must be read in to access any portion so if the amount of data is small this is ideal.

  • What is the best approach for doing view logic?

    Hi, I have a jsp page that receives an array of strings and a set of strings from a servlet. The set contain elements of the array. The page must print all the array values and which values are contained in the set. My first implementation just construct a checkbox for each array value using jstl c:forEach. To determine if they are checked or not I use some scriptlet. Without using scriptlet, the servlet would need to help by providing a new type of data. Also, if I needed to sort in ascending order the checkboxes, then I would need to use scriptlet, or the servlet would need to do the ordering before passing the array. Using the servlet to prepare the data, if the view now need to change ordering to descending, then I should change the servlet.
    My doubt is, when doing view logic, what is better, to spread it into view and servlet, or to leave it in view only? I know the recommendation is to not use scriptlet in views, but jstl alone sometimes doesnt provide the needed support for constructing views

    Write your own custom tags to handle to cases where JSTL alone is not sufficient. Also, you may use expression language (EL) and have custom EL functions. Avoid writing scriptlet in JSP and instead of writing view processing logic in servlets use custom tag handler or EL functions to handle UI display logic.
    Thanks,
    Mrityunjoy

  • What is the best approach for executing this code only once?

    Hi,
    What would be the best way to this using JSF/Java web architecture? I have a login page, login.jsf, that submits login credentials to another servlet and if successful, is redirected to a login success page, which I have called "main.jsf", my application's main page. What I want to do, however, is when the login success mechanism redirects to my application, I want to run a bit of Java code (which requires access to the session object) that executes only once, and then redirects to my application's main page.
    In other words, I could put this Java code on my application's main page, but then it would execute every time a user visited it.
    Any advice on the most efficient way to do this?
    Thanks, - Dave

    laredotornado wrote:
    Thanks for your reply but I have a question. If the filter is executed on every page, then, assuming the user is logged in, the code would be executed every time. How can I create this such that my code snippet is executed only once, preferably after the user is re-directed to the login success page?It is more secure. On login just put the User object as attribute of HttpSession and check in the filter if it is there.

  • What is the best approach for patch management

    Hi,
    I'm new about patch management. I would like to ask you how manage patch on few Solaris 10 servers using command line.
    I would like to know:
    1. Using only command line how to download latest patches
    2. There are some dependencies how to check this and install only those patches which meets dependecy requirements?
    3. Is there possiblity to atomate this?
    4. Is it possible to have one patch server and others servers will download and install this patches?
    5. What if some patches are not installed?
    6. How to find out which patches are necessary and which patches don't have to be installed? Or maybe or patches to be installed?
    7. Could you please describe your approach for managing patches? Or maybe you can recommend some books/web page/articles that can help me to understand patch management.
    Thanks in advance,
    Daniel

    smpatch is the command line tool to manage solaris patching. first you need to register yours system - this can be done using sconadm, detailed here:
    http://sunsolve.sun.com/search/document.do?assetkey=1-9-82688-1
    smpatch analyze will list all required patches and resolve dependencies. smpatch download will download all the required patches, and smpatch update will apply them. You can set up a Local Patch Server to download patches, then your clients will download the patches they require from it. This is detailed in chapter 6 of the update connection admin guide

Maybe you are looking for

  • Unable to deploy Web App in Exploded format

    Using WLS 6.1 sp2, I am unable to deploy a web application successfully using the web app "ora" from http://www.thejspbook.com/examples.jspbook.zip. I've moved the /ora directory under the /WEB-INF/applications directory. The error I am getting is: j

  • When Using iOs 7.1.2 OSX 10.9.4 notes are not syncing via USB. When will this be fixed. Not interested in iCloud or IMAP solution.

    When Using iOs 7.1.2 with mac OSX 10.9.4 mavericks notes are not syncing via USB. When will this be fixed ? Not interested in iCloud or IMAP solution. it worked before,  I can't really understand why apple would change one of my favorite features. I

  • System did not find a valid bill of material

    Hi All, I have a requirement in which the client needs to supress the standard SAP message(information) which appears at the time of creation/change of sales order. Message :The system did not find valid bill of material. I am working on user exit :

  • 2 problems with my BB 9300

    Hello Ppl,    I have 2 problems with my BB 9300. If anyone know the solution please help me. 1- I want to change the font size of the incoming calls, as its so large size. I tried to search and find the opinion but I couldn't. 2- I want to move my Sh

  • Linking Contract Master to Work Orders & Materials

    Hello, I'm researching the possibility of linking (tying) stock to a Service Order (in a Work Order) and/or Sales Orders before it arrived on the PO. This is for provisioning stock to customers. Is there any possibility that this could be done via Pr