General Question regarding File Conversion

Does flash pro provide the ability to convert video
files,such as avi, mpeg, etc to flash video? Thanks for the
help.

yes
Dan Mode
*THE online Radio*
http://www.tornadostream.com
*Must Read*
http://www.smithmediafusion.com/blog
*Flash Helps*
http://www.smithmediafusion.com/blog/?cat=11
"Joe Pau" <[email protected]> wrote in
message
news:e94jeq$o0$[email protected]..
> Does flash pro provide the ability to convert video
files,such as avi,
> mpeg, etc to flash video? Thanks for the help.

Similar Messages

  • Several questions regarding File Vault

    Hi!
    I have several questions regarding File Vault - right now I'm using Mac OS 10.4.8
    1.: The battery lock of my iBook is defect thus it happens from time to time that while transporting it the battery drops out while the laptop is sleeping. What happens with the File Vault-disk image?
    2.: I want to (have to ) set up my Intel iMac again. The installer-CD I have will bring it back to 10.4.6
    AFAIK the data format used for File Vault since 10.4.7 is version 2. What happens if I encrypt my stuff now (10.4.8 - thus version 2), back it up to my backup disc, install a new system (10.4.6 - therefore version 1) and want to access my data via Migration Manager (don't want to use archive and install)?
    3.: How do I actually do a backup of my data while the system is running? The backup should be encrypted as well.
    I use the demo-version of SuperDuper for backing up my system because with it I can ensure that I have a complete bootable backup of my running system.
    Thanks for your answers in advance
    ibook g4 12" 1.2 GHz 768 MB RAM / Intel iMac Core 2 Duo 17" 2.0 GHz 2GB RAM   Mac OS X (10.4.8)  

    Parker,
    You said:1. If it did, Apple would not use FileVault, as everyones computer will have a battery problem once in their life, and Apple would lose buisness from angry people who lost all of their data.I have seen enough reports of data loss with FileVault that I feel compelled to dispute your statement.
    In Data corruption and loss: causes and avoidance, Dr. Smoke writes...If your data-security needs demand FileVault, you should backup your encrypted Home folder regularly, preferably daily. Like any hard drive or disk image, a Home folder protected by FileVault — an encrypted, sparse disk image — does not respond well to the causes of data corruption...Loss of power definitely is a cause of data corruption.
    For Niels....,
    An Unencrypted Look at FileVault, by François Joseph de Kermadec is an excellent discussion of the features, pitfalls, and cautions regarding Filevault.
    Although the article discusses Panther and is dated 12/19/2003, the concepts as they apply Tiger have not changed.
    The cautions and warnings are prominent in any of the Apple Knowledge Base articles referring to the use of FileVault. If a user is unfamiliar with any aspect of FileVault, it should not in my opinion be activated.
    As good as FileVault is in protecting your sensitive data, it also presents the danger of locking up your files in an irretrievable ball of one's and zero's. Backups are critical. You must ensure that you have a comprehensive backup plan. Backup and Recovery, by Dr. Smoke is a fine example of what you need to consider.
    ;~)

  • Questions regarding currency conversion using SPRUNCONVERSION.

    Hi all,
    I have implemented currency conversion using SPRUNCONVERSION stored procedure. I have following questions regarding how does it work.
    1. Is it mandatory to create FxTrans Business Rules with SPRUNCONVERSION?
    2. How does it work internally? How does it look up rate from the rate application?
    Any help will be greatly appreciated. Any reference to any documents will help.
    Thanks&Regards,
    Diksha.
    (PS: How to document does not explain about how it works).

    Hi Diksha,
    1. Yes since it will base it's translation rules based on what is defined on the currency conversion business rules.
    2. The stored procedure SPRUNCONVERSION scans all records found in the selected region of data and translates them according to the RATETYPE property assigned to the ACCOUNT specified in each record, based on the following mechanism:
    Note:
    All ACCOUNTS with no RATETYPE (ratetype = blank) will be translated with a factor of 1
    All ACCOUNTS with the reserved RATETYPE = NOTRANS will not be translated
    All other ACCOUNTS will be translated according to the definitions contained in the table of parameters called clcFXTRANS.
    How the RATE table is selected
    While most customers require a single table of rates, there are situations when more than one set of rates is required. In this situation, the translation procedure uses the RateEntity dimension to select the correct table of rates to use.
    Whenever a destination currency is selected, the procedure searches for a RateEntity member flagged with this currency in the Currency property. For example, if translating into USD, the system uses the RateEntity member that has the Currency property set to USD.
    If there is no RateEntity flagged as the destination currency, the system will use the RateEntity with Currency = 'u2019 (blank).
    In addition to this, some exceptions by ENTITY can be applied. For example, some entities just entering in the consolidation perimeter may need to be converted at their own specific set of rates. These entities may have a corresponding RateEntity member in the RATE cube. All ENTITIES having a corresponding RateEntity member in the RATE cube will use that member as rate table. For example, if there is a RateEntity member named like the ENTITY USOps, the RateEntity member USOps will be used to translate the values of entity ENTITY USOps.
    The RateEntity member, when representing an ENTITY, may be any of the following:
    A valid base level or parent member ID from the ENTITY dimension of the main cube
    A list of members of the ENTITY dimension, as defined filtering the members using a value of the DIMLIST property (or any property whose name begins with "DIMLISTu201D) of such dimension.
    For more info, you could refer to the Administration Help found on the Admin console.
    Hope this helps,
    Marvin

  • General question regarding "parallelism" of iPhone execution

    I've got a general question and hope somebody can shed some light on this.
    While I'm relatively new to iPhone development I've been in software programing for more than 15 years now and have a solid background in Java, C, C++, C# and other languages. I've created a couple of applications for the iPhone, easy and complex ones, some using UIKit, others using Open GL and Open AL. With that said I think it would be fair to say that I know pretty much what I'm talking about.
    For those who tend to refer everybody back to the Apple Samples or PDF guides, please believe me, I've read them all.
    Here's my "question":
    I occasionally ran into a situation where I got the impression that code on the iPhone got executed in a "non sequential" or "parallel" manner even when I did not explicitly created threads. I'm not referring to code buried in a framework or so, I'm talking about code I've written. (English is not my mother tongue, so please excuse me if my explanation might be somewhat difficult to understand.)
    I try to give an example. Assume a code snippet like this:
    _gameEngine = [GameEngine alloc];
    [_gameEngine initSomeStuff];
    In my understanding the second statement (the initSomeStuff) gets executed once alloc returns and _gameEngine for sure is a valid pointer. Is that fair to say? I sometimes got the impression that the iPhone starts executing code without waiting that a method returned.
    I had similar issues when I tried to show an ActivityIndicator while another method was doing a lengthy operation. Pseudocode like this:
    [_activityIndicator show];
    [self longLastingOperation];
    [_activityIndicator hide];
    In code like the one above: Can I be 100% sure, that the hide message is not sent until longLastingOperation returns? I ran into a situation where I had the impression that show and hide got called immediately without waiting until longLastingOperation returned.
    Final example:
    [self performSelectorOnMainThread:@selector(doSomething) withObject:nil waitUntilDone:YES];
    [self nextStatement];
    -(void)doSomething {
    [self longLastingOperation];
    1.) In the above code, I understand the idea is that doSomething will be executed on the MainThread and that nextStatement will in no way be executed before doSomething has returned. Is that true?
    2.) doSomething is supposed to run on the MainThread but does this hold true for longLastingOperation, too? Or could it be that longLastingOperation WITHIN doSomething gets dispatched to another thread and doSomething returns PRIOR to longLastingOperation been finished?
    This might all sound pretty wired but as I said from time to time I ran into a situation where I got totally confused as to how stuff executes in – or out of – sequence. I helped myself with using NSNotificationCenters etc. but I'd like to understand what's going on in detail and crystal clear here.
    Your help is more than appreciated.
    Thanks,
    R.
    Message was edited by: BeSharp

    It is never safe to assume that any allocation was successful, and while it's incredibly unlikely that you're running into any such situation, it's entirely possible for a formal protocol to declare that a given message send should return immediately without waiting around:
    http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC/Articles/ch apter13_section_8.html#//appleref/doc/uid/TP30001163-CH9-BAJIGHAF
    An "impression" doesn't prove much unfortunately, so I'd recommend getting friendly with the debugger to see what's really going on.

  • General question regarding environment files in APPL_TOP

    Hi. I will be passing my OCP (hopefully) next month and I am now turning my head to teh Applications side since my job involves a lot of Oracle Financials.
    I just did a clean installation of 11.5.10.2 but at the level of seeting environment files, my boss swooped in and did them all. I would love to know which ones need changing, or even which ones do what ...
    I am using the Oracle doc Re: Generate the Database Context File
    to follow with, but what I see before me in our own (9i, AIX 5.2) set up doesnt always mirror what the doc says.
    I need some general information about these env. files. In our <ORA>APPL directory we have the following env. files:
    APPSORA.env
    DEV.env
    DEV_davidcl.env
    APPSDEV_davidcl.env
    DAVIDCUST.env (I have changed our firm's name to David)
    In the doc, it explains that there is a "main applications env file", and a consolidated applications file". <CONTEXT_NAME>.env and APPS<CONTEXT_NAME>.env respectively. Which ones are those in my directory listing?
    I have also checked in the .profile of the appcldev and the appdbdev users, and they both point to the same two environment files -
    $APPL_TOP/DAVIDCUST.env
    and
    $APPL_TOP/APPSORA.env
    Sorry this is a bit scrambled message - is there any other source out there to explain environment files?
    Thanks
    DA

    Thanks - they are the same! That's why the DEV_davidcl.env has all the parameters that according to the doc APPDDEV_davidcl.env should have.
    Thanks - very helpful. The DBA here never has any time to explain this stuff, since I think he's been doing it for so long that he doenst understand why anyone would not know it too. Its very hard working for him sometimes since nothing is explained.
    All of my questions are stemming from this clean installation of 11.5.2 that I have done.
    I am still wondering about the .profiles of each user we have on the system though. I understand that we had to copy the profiles from TEST to this, our DEV side, then we edited the profiles to match the DEV parameters. Fine.....but the actual .env files themselves - I am looking at them and dont understand at all.
    Each .profile and each user are as follows:
    appdbdev:
    appdbdev@TEST:more .profile
    APPL_TOP=/oradbi3/oracle/testappl;export APPL_TOP
    . $APPL_TOP/DAVIDCUST.env
    . $APPL_TOP/APPSORA.env
    appcldev:
    appcldev@TEST:more .profile
    APPL_TOP=/oracli3/oracle/devappl;export APPL_TOP
    . $APPL_TOP/DAVIDCUST.env
    . $APPL_TOP/APPSORA.env
    So these two, both on the cl node, appear to be pointing to same env files.
    Then comes the db node:
    oradbdev:
    oradbdev@TEST:more .profile
    . /oradbi3/oracle/devdb/9.2.0/DEV_daviddb.env
    . /oradbi3/oracle/devappl/DAVIDCUST.env
    I think I can understand the .env that are pointed to on the cl node, but I dont understand the oradbdev .profile, since its pointing to oradbi3/oracledevdb for one env file, then oradbi3/oracle/devappl for another.
    I asked our DBA about this, and he said "dont worry about it". I have to try and run the script to start the application server this morning, but every time I try to su to the db node user I get this:
    doralcl:/> su - appdbdev
    .profile[2]: /oradbi3/oracle/devappl/DAVIDCUST.env: not found.
    Like I mentioned, I pinted this out to our DBA and he told me not to worry.
    DA

  • Question regarding File Content Conversion

    Dear SAP experts,
    I need you expert advise regarding this.
    I have here my sample structure,
    CSV ---> this is the message type of the message
       '-- ROOT --> this is the root node
               '-- FieldA --> has a value of "Filename"
               '-- Field B
                      '-- subfield1 --> has a value of "A"
                      '-- subfield2 --> has a value of "B"
                      '-- subfied3 --> has a value of "C"
    I want to output this flatfile,
    subfield1;subfield2;subfield3
    A;B;C
    the output flatfile must have Header lines (subfield1;subfield2;subfield3)
    What will be the correct parameters in my File Content Conversion, so as, the value "Filename" will not be included in the output flatfile?
    Recordset Structure: ?
    Kindly advise.
    Thank you very much!
    Fred

    Refer
    FCC
    Ref:
    Sender -
    /people/venkat.donela/blog/2005/03/02/introduction-to-simplefile-xi-filescenario-and-complete-walk-through-for-starterspart1
    Key value:
    /people/venkat.donela/blog/2005/06/08/how-to-send-a-flat-file-with-various-field-lengths-and-variable-substructures-to-xi-30
    /people/anish.abraham2/blog/2005/06/08/content-conversion-patternrandom-content-in-input-file
    /people/shabarish.vijayakumar/blog/2005/08/17/nab-the-tab-file-adapter -
    /people/jeyakumar.muthu2/blog/2005/11/29/file-content-conversion-for-unequal-number-of-columns
    /people/shabarish.vijayakumar/blog/2006/02/27/content-conversion-the-key-field-problem
    /people/michal.krawczyk2/blog/2004/12/15/how-to-send-a-flat-file-with-fixed-lengths-to-xi-30-using-a-central-file-adapter
    /people/shabarish.vijayakumar/blog/2005/08/17/nab-the-tab-file-adapter
    Receiver FCC no need of Endseparator
    /people/shabarish.vijayakumar/blog/2007/08/03/file-adapter-receiver--are-we-really-sure-about-the-concepts
    Receiver-
    /people/arpit.seth/blog/2005/06/02/file-receiver-with-content-conversion

  • Question on file conversion?

    This is my last question .
    I am inquirng if it would be classed as legal if i removed the protecting from a itunes file for purposes of playiing it through a DJ program.
    Hear me out.
    The program is a DJ software program that plays music files straight from the PC and out through a DJ mixer to speakers. The program will play the old itunes files without the protection but not the new itunes files!!!
    Iam wondering if iam aloud to remove the protection from the file so that the DJ software program will load and play the new non protected file, the file will still be a itunes M4A (not M4P) just without the protection.
    Am i aloud to do this and the music file still be classed as legal???
    This is where the controversy lays.... as i cant see the difference between a CD that is burnt with itunes music files in itunes media player, thus the protection being removed so the CD player can play the file, and removing the protection directly?!
    The reason i want to is because i dont want to degrade the quality through burning and re-ripping, plus I dont use CD players, i work straight from the laptop in a software program>>??

    Hi Sonia,
    For FCC sender or receiver if you want text with delimieter / csv file process.
    use the below parameters
    You would have to use the Document name ,namespace,record set name ,record strucutre name ( and occurrences also) and processing parameters in Sender side
    In receiver side Record structre, processing parameters.
    see below links to have more details..
    /people/michal.krawczyk2/blog/2004/12/15/how-to-send-a-flat-file-with-fixed-lengths-to-xi-30-using-a-central-file-adapter
    /people/jeyakumar.muthu2/blog/2005/11/29/file-content-conversion-for-unequal-number-of-columns
    /people/anish.abraham2/blog/2005/06/08/content-conversion-patternrandom-content-in-input-file
    /people/harrison.holland5/blog/2006/12/20/xi-configuration-for-mdm-integration--sample-scenario /people/shabarish.vijayakumar/blog/2006/04/03/xi-in-the-role-of-a-ftp
    /people/prateek.shah/blog/2005/06/14/file-to-r3-via-abap-proxy
    /people/mickael.huchet/blog/2006/09/18/xipi-how-to-exclude-files-in-a-sender-file-adapter -
    Regards
    Chilla

  • A few questions regarding iPhoto conversion to light room

    Some background. I use Yosemite, LR 5.7, and iPhoto '11. The iPhoto app has been used for organization only. All edits have been done in PS. No smart albums. The file system is simple using only albums, folders, and sub folders. The library contains JPEG, raw, tiff, and psd files. There are about 12k images. My questions:
    1. Does it make any sense, or is it even possible, to migrate the library to LR one album at a time or is it still smarter to move it all at once?
    2. Have the major issues with the importer now part of 5.7 been resolved since it was released last year as a stand-alone plug-in?
    3. Is it now possible to move the psd and tiff files now? I read that originally they would not move. If not, is there a good work around such as moving them through bridge then through to LR?
    4. I read somewhere that apple's upcoming photo app will make the import method to LR easier. Can this be true. I would guess it would be harder.
    Thanks.. I appreciate all this community provides us.

    Lightroom 6 is due very soon. It may be worth waiting to see if it includes an improved interface or plugin for iPhoto and Aperture.

  • Odd question regarding files on a mac-formatted external drive...

    I have recently purchased a Western Digital external HDD (1TB) and have synced it with my mac as a time machine.
    I have also, however, moved a bunch of files from my macbook, including family movies, DVD's I've ripped, a lot of my music collection, work files and some games.
    This has worked brilliantly thus far.
    BUT! I have my MBP bootcamped for some boring programs for work etc. but want to be able to listen to music/play games/access files through the WD HDD... This may be obvious to many people; but it wasn't immediately obvious to me: Because the External drive is formatted for Mac, as well as 'time machine-d', it refuses to be recognised by the PC...
    Thus, my question is:
    Is there a way to move files from Mac to PC (bootcamped) through an external drive that is formatted to the Mac.
    If not, is there a way to move files from Mac to PC through the bootcamp disc on the Macintosh Desktop. I understand that files smaller than 4 gigs can be moved across NTFS (?) but some of the files for my work stretch as far as 11 gigs...
    Any help with this would be greatly appreciated! I've been looking around the net for the past week... It's time to be proactive...
    If any more info is required, please let me know.
    Ollie.

    Hi Ollie,
    with the BootCamp 3.0 Drivers Apple introduced a read access from BootCamp Windows to Mac OSX partitions, but this seems to only work with internal harddisks not with external ones.
    MacDrive is the choice get full read and write access on Mac OSX partitions/harddisks while in Windows http://www.mediafour.com/products/macdrive/
    For a simple read-only access HFSExplorer can be used http://hem.bredband.net/catacombae/index2.html
    The 4GB size limitation is only active on FAT32 file system not on NTFS, but Mac OSX itself can only read from NTFS partitions not write to them without additional helper like NTFS-3G http://macntfs-3g.blogspot.com/
    So, with you scenario (external HD = MacOS file system) it seems that MacDrive would be the way to go.
    Hope it helps
    Stefan

  • Question regarding file locking...

    Hi all--
    Here's the essential question...
    If I have a shared file across the network that will be subjected to multiple accesses from multiple clients. Most just need to read it, but some will occassionally need to write to it. If my client application obtains a lock on the file using FileLock myLock = myFileInputStream.getChannel().tryLock(), will other clients still be able to read the file?
    in other words, is the file lock obtained a "read-only" lock, preventing writing but allowing reading? or will other client's be unable to read the file when someone has a FileLock on it?
    Right now we use an excel spreadsheet. It's an utterly terrible solution, but what's good about the spreadsheet is that everyone can read it, but if someone has accessed it to begin with, you only have read-only access to it. Which is good...
    can I do the same thing using Java file-lock? Allowing the first client who accesses it to obtain a full-permisions lock but subsequent clients only are able to obtain read-only access?
    Thanks for the help!

    The docs are rather specific that all of the functionality for FileLock is platform dependent.
    So you should test it.

  • General Question Regarding Image Processing

    Hi All,
    I need a suggestion regarding image processing and this is the best place to get best advise.
    we need an image processing utility for our web processing.
    requirements are as described below:
    we have a e commerce based application where we need to display product images which we are currently displaying successfully.
    now we have to provide user with image processing functionality like user can zoom image can flip image can rotate image.
    what we want like when user click on zoom we can generate a dynamic image of that region based on a single source of image and can provide zooming functionality.
    more over company requirements is to go for only open source solution [:-)]
    we tried some open source solutions but due to the in house E-Commerce framework constraints we not able to integrate them,.
    can any one point me to any open source java based library so that we can use that to provide solution or do we need some other approach.
    Here is a link for a image zooming example hough this is highly professional solution using Adobe Scene7 but we want to implement something like in image zooming
    [Zoom Demo|http://s7d2.scene7.com/s7ondemand/zoom/flasht_zoom.jsp?company=S7Web&sku=AnthroISwebDemo&config=S7Web/AnthroISwebDemo&zoomwidth=500&zoomheight=500&viewer=/skins/S7Web/SWFs/loaders/genericzoomLfour.swf&vc=codeRoot%3D%2Fis-viewers351%2Fflash%2F]
    any help in this regard will be much appreciated.
    Thanks in advance
    -Umesh

    It is never safe to assume that any allocation was successful, and while it's incredibly unlikely that you're running into any such situation, it's entirely possible for a formal protocol to declare that a given message send should return immediately without waiting around:
    http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC/Articles/ch apter13_section_8.html#//appleref/doc/uid/TP30001163-CH9-BAJIGHAF
    An "impression" doesn't prove much unfortunately, so I'd recommend getting friendly with the debugger to see what's really going on.

  • General questions regarding capturing electronic signatures

    Hi Guys,
    Have some questions....
    Are electronic signatures supported in BPM and if yes any idea what types of signature? what standards are used, whether they are legally accepted and whether this is part of the package or a separate application. 
    can the processes support multiple signatures at multiple stages, signifying different levels of approval?
    Could you provide some idea on how electronic signatures are recorded and retained and how the process or document remains fixed once signed?
    Thanks in advace.

    this is more application related. nothing to do with BPM.

  • Question: CR2 file conversion

    I originally had ordered the CS4 Extended version, however I was in a hurry to get it installed, and did not realize for over a month that I did not have the extended version that had arrived shipped to me. Upon noticing the difference eventually, I called, they sent a new version, I installed it, send the old unextended version back, and thought my problems were over. Until I shot a photo session in Raw format, and the files saved as a CR2 file, it will open the thumbnails in Bridge, but not in photoshop, any suggestions?
    I'm working on an iMac, shooting with a 50D...Help? I'm at a loss for what to do, I looked for a CR2 plugin, but don't see one, but doesn't mean it's not there, I'm not 100% Mac savvy yet, I'm still within the first year of working on one.

    Firstly, Extended has nothing to do withit.
    The cause is probably because the shipping version of Photoshop CS4 comes with Camera Raw 5.0 and your camera needs 5.1.
    Check in Help > About > Plug-in in PS to see what version you have.
    If it's not version 5.1,  get the update (which is currently 5.6) from her:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4621
    and follow the instructions carefully.

  • Question about file conversion in the sender file adapter

    Hi, all.
    I am trying to get the file adapter to parse a file. The message type is the following:
    JOB
       Msg  0..1
          Transaction  0 ... unbounded
             Data   0 ... 1
                f1 string
                f2 string
    How would you define the recordset name and recordset structure to produce the same structure in the converted xml. I tried:
    recordset name : Msg
    recordset structure : Data, *
    But the transaction is missing. I tried:
    recordset name: Msg
    recordset structure : Transaction, *
    Then the data is missing. Note that the actual data in f1, f2 ... are loaded successfully though.
    Thanks,
    Jonathan.

    Hi, Hareesh
    I agree. But that is how it is defined now by someone else. It is hard to change it as he defines the same structure on the receiving side. I didn't want to change the receiving structure as it touches the proxy code too. So I want to make something short and sweet.
    Basically the data looks like this:
    11,222
    55,666
    The result xml should be something like:
    <JOB>
      <Msg>
         <Transaction>
            <DATA>
               11
               222
            </DATA>
         </Transaction>
         <Transaction>
            <DATA>
              55
              666
            </DATA>
          </Transaction>
      </MSG>
    </JOB>
    I know either the DATA has no meaning and it's giving me a headache ... but that's how it's done and I don't want to rock the boat too much. There are lots of mapping that I have changed otherwise.
    Thanks,
    Jonathan.

  • Question regarding file upload and download utility

    Hi
    I am able to upload file with file browse contorl of APEX. Now i want to download the uploaded file. Is it possible that if word document is uploaded then when user clicks on it to download, that document is directly opened in microsoft word. Of if PDF file is uploaded then on download it is opened with acorobat pdf.
    Requirement is like when user is downloading any uploaded file denpending on file type (text,excel,pdf,doc) relative application should opened with that document.
    Thanks in advance

    That is controlled by settings in the browser that you cannot change. For instance, I have my browsers configured to use FoxIt PDF reader instead of Acrobat reader for PDFs, but no website could change that. The same is true when it comes to downloading vs opening. Sorry.
    Tyler Muth
    http://tylermuth.wordpress.com
    "Applied Oracle Security: Developing Secure Database and Middleware Environments": http://sn.im/aos.book

Maybe you are looking for

  • I need to use agilent34970A with serial cable;but i'm not able to build a routine.

    Hi, i'm learning labview and i'm not able to build a routine to communicate with my Agilent34970A with serial cable only and to use the data. Anyone can help me? thanks. lucky

  • I'm not able to install the new Java update

    I have a MacPro 2.8 Intel Core Duo 8GB 500GB HD with Mac OS 10.6.8 installed and every time that I try to install the sugested update from my mchine I receive an error message as: " The update could not be expanded, and may have been corrupted during

  • Communicate between SAP & mainframe

    Hi, Could someone please help... i need to pass data back & forth between SAP & mainframe.  what do i need to have?  we will be on ERP 2004.  your help is greatly appreciated.  thanks.

  • Clearing the buffer when reading a 'few' samples

    Hello, I am looking to develop a system that samples a number of data channels at ~50KS/s, reading the data into a buffer.  Every 10ms I want to read just a few samples to check if a condition threshold has been passed - eg the pressure has gone abov

  • Recover database

    10.2.0.4 linux hp-aux Hi all; I need to recover a database to 12 days back the restore was fine restore database until tim 'SYSDATE -12'; But now I want to recover it, with no luck: RMAN> recover database until time 'SYSDATE -12'; Starting recover at