Keeping images, mp3 files etc as separate data base

I have prepared material for learning German using flash animation (Adobe CS4),  How do I keep my images etc separate, out of reach of the user? .

There really isn't anything you can do to prevent users from acquiring the materials if you make them available to them as part of their learning material.  Even if they didn't go the route of decompiling your file(s) and finding the path to files that are loaded, screen shots and audio recorders remain as easy to use tools for acquiring things of this nature.

Similar Messages

  • Infected files found in mail data base.

    Greetings to everyone,
    A few days ago, ClamXav detected infected files when scanning my mail data base. One of wich was a phishing kind of mesage, and the other was defined as a trojan. It turns out that they were mesages from 2009, by the time when i had a G5 Power PC. I've never open theme, nor clicked the links attached. Now i have a new Mac, but those mails are still in the data base; i think they migrated from my imap account. Any way, i red the ClamXav developper's page and he says that its not advisable to trash out or put this kind of files into quarantine. it bothers me that they still remain in my user's library.
    Can someone give me a tip on how to cope with this issue?
    Thank you!

    Grandel wrote:
    Greetings to everyone,
    A few days ago, ClamXav detected infected files when scanning my mail data base. One of wich was a phishing kind of mesage, and the other was defined as a trojan. It turns out that they were mesages from 2009, by the time when i had a G5 Power PC. I've never open theme, nor clicked the links attached. Now i have a new Mac, but those mails are still in the data base; i think they migrated from my imap account. Any way, i red the ClamXav developper's page and he says that its not advisable to trash out or put this kind of files into quarantine. it bothers me that they still remain in my user's library.
    I wish you had asked this question in the ClamXav Forum where I would have found it earlier.
    Unless the infection name contains "OSX" it's almost certainly not anything that can impact your OS. But there still could be a couple of issues.
    If the infection name contained the word "Heuristics" then it means that phishing message was not positively identified as a phishing attempt, but something about the way it was formatted looked suspicious enough to warn you about it. All such messages should be read before you delete them, as they could well be a false alarm.
    The other question I would have asked you is what e-mail client you were using on your G5. Some e-mail clients (including Apple Mail in the early days) stored all their e-mail in one large database. If you were to delete the infected file, you would lose all your e-mail, so an alternate procedure is necessary to find and delete the message.

  • How to read multiple lines from an external file to the Oracle data base

    Hi Guys,
    I have an external file which contains multiple lines and I want to read it to the data base .I have done it for the file if it contains one line.
    Please guide me how to retrieve all the lines into the data base.And also tell me how Oracle will come to know the end of the line in the file
    Thanks,
    Prafulla

    Hi,
    try this
    CREATE TABLE ab
    a VARCHAR2(1 BYTE),
    b VARCHAR2(2 BYTE),
    c VARCHAR2(10 BYTE),
    d VARCHAR2(11 BYTE)
    ORGANIZATION EXTERNAL
    ( TYPE ORACLE_LOADER
    DEFAULT DIRECTORY dir_name
    ACCESS PARAMETERS
    ( records delimited by newline
    fields (
    a POSITION(*) CHAR(1),
    b POSITION(*) CHAR(2 ),
    c POSITION(*) CHAR(10 ),
    d POSITION(*) CHAR(11 )
    LOCATION (dir_name:'filename.txt')
    REJECT LIMIT UNLIMITED
    NOPARALLEL
    NOMONITORING;
    Regards,
    Simma....

  • How to load .dmp file into oracle 11gR2 data base schema ?

    hello experts,
    i have a .dmp file and i wnat to use the data in this file for my further practices.
    so, i need to dump the data in the .dmp file to the any schema exiists in data base.
    Please give me step by step procedure to execute my requirement....ASAP.
    Thanks in Advance
    LAkshmi kanth

    Pl post details of exact OS and database versions. The answer will depend on exactly how this dmp file was created. What is the issue you are trying to resolve ? This is a forum of peer volunteers - for all ASAP issues, pl open an SR with Support
    HTH
    Srini

  • Generating structured XML file based on relational data base

    Hi,
    I need to use XML DB to generate a structured XML file based on the relational oracle database. I start by using Oracle default table, emp,
    Here is EMP data,
    EMPNO ENAME DEPNO SAL
    123.00 E1 20.00 1,000.00
    124.00 E2 20.00 2,000.00
    125.00 E3 20.00 2,000.00
    126.00 E4 30.00 3,000.00
    127.00 E5 30.00 3,000.00
    128.00 E6 30.00 4,000.00
    129.00 E7 40.00 7,000.00
    I used this SQL statement to generate an XML output,
    select XMLElement ("Department",
    XMLAttributes(deptno as "DEPARTMENTNO"),
    XMLElement("EmployeeName", ename),
    XMLElement("Salary", sal)
    ) "Result"
    from
    emp
    where
    deptno=20
    The result was
    <Department DEPARTMENTNO="20">
    <EmployeeName>E1</EmployeeName>
    <Salary>1000</Salary>
    </Department>
    <Department DEPARTMENTNO="20">
    <EmployeeName>E2</EmployeeName>
    <Salary>2000</Salary>
    </Department>
    <Department DEPARTMENTNO="20">
    <EmployeeName>E3</EmployeeName>
    <Salary>2000</Salary>
    </Department>
    but I need this structure instead,
    <Department DEPARTMENTNO="20">
    <EmployeeName>E1</EmployeeName>
    <Salary>1000</Salary>
    <EmployeeName>E2</EmployeeName>
    <Salary>2000</Salary>
    <EmployeeName>E3</EmployeeName>
    <Salary>2000</Salary>
    </Department>
    Could you guide me how I can generate this kind of structure like master-detail structure and which document you recommend to obtain this point.
    Thanks,
    Shiva

    Hi,
    If you want to write an xml into file, I think you should use PL/SQL.
    Is it even possible to spool output into file without the query itself?
    doen't show me a proper xml fileTo get well-formed xml, you also have to make a root element.
    If you want <?xml version="1.0"?> also then use xmlroot(), but I haven't figure out
    how to specify the encoding.
    SQL> WITH xtab AS(SELECT 'E1' ename,20 depno,1000 sal FROM dual
      2               UNION ALL
      3               SELECT 'E2',20,2000 FROM dual
      4               UNION ALL
      5               SELECT 'E3',40,3000 FROM dual
      6               UNION ALL
      7               SELECT 'E4',30,4000 FROM dual)
      8  SELECT XMLRoot(XMLElement("Company",XMLAgg(XMLElement("Department",
      9           XMLattributes(depno as "DEPARTMENTNO"),
    10             XMLAgg(XMLForest(
    11                      ename AS "EmployeeName",
    12                      sal   AS "Salary"))))),version '1.0') company_xml
    13  FROM xtab
    14  GROUP BY depno;
    COMPANY_XML                                                                    
    <?xml version="1.0"?>                                                          
    <Company>                                                                      
      <Department DEPARTMENTNO="20">                                               
        <EmployeeName>E1</EmployeeName>                                            
        <Salary>1000</Salary>                                                      
        <EmployeeName>E2</EmployeeName>                                            
        <Salary>2000</Salary>                                                      
      </Department>                                                                
      <Department DEPARTMENTNO="30">                                               
        <EmployeeName>E4</EmployeeName>                                            
        <Salary>4000</Salary>                                                      
      </Department>                                                                
      <Department DEPARTMENTNO="40">                                               
        <EmployeeName>E3</EmployeeName>                                            
        <Salary>3000</Salary>                                                      
      </Department>                                                                
    </Company>
    [pre]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to delete file manually from application data base

    Hi All,
    Could anyone tell me how to delete file manually from application database.
    Thanks In advance
    Regards
    SAN
    Edited by: Sanjay  Nair on Sep 2, 2008 10:51 AM

    Closed

  • When I burn mp3 files they appear as folders

    when I attempt to burn the songs from mp3 files from 4 separate albums from an iTunes playlist they show up on the disc as 4 separate folders.  when the album plays on my player only the first folder (the first album) plays and the CD stops.  the songs from the other 3 albums won't play.  The iTunes playlist doesn't show that they are separated by album.  Very confused.

    Rik Marsh,
    When burning an MP3 CD with iTunes, you can have your choice of Artist folders, Album folders, or no folders (which is the one you want).
    It all depends how the playlist is sorted before burning.  See this guide:
    iTunes: How to set the play order of songs on an MP3 CD

  • Data-base driven site

    1. Hi. I'm new to data-base driven sites. firstly, i want to
    basically link my database (with two tables. no relationships) to a
    new website. Can somebody talk to me through the steps for doing
    this? i know mySQL and PHP are used...
    2. Secondly if I get it all set up...how does it actually
    work? Does the database generate pages for each record and add the
    fields in that i select? I'm supposing this is what happens.
    3. also, if i get it all setup, can you edit the database
    (and therefore editing the site) from the database its self (so its
    linked directly) or do you have to log in to your webhost and edit
    the data there?

    cripaustin wrote:
    > Thanks for the replies.
    > What I am trying to do (I dont know if any of this is
    even possible):
    > 1. I am trying to develop a website using Dreamweaver
    with normal html and
    > CSS. I will make the template(s) for the main pages
    including a template for a
    > page on a particular product which will be used over a
    hundred times for all
    > the different products. I dont want to have to set up
    each individual page,
    > assign the template, copy over the content, and add in
    an image. To solve this
    > problem, I thought I would create a table within a
    database and easily copy
    > over the data from a spreadsheet into this table. From
    there I would somehow
    > generate a page for each record and add in certain data
    from certain fields in
    > certain 'edit areas' of the template to which all
    generated pages will be
    > assigned.
    The end result will be hundreds of generated pages, one for each
    > record of my table, all assigned to a certain template,
    and all formatted the
    > same way. I want to be able to update the data from the
    table (so no web design
    > skill is needed) and then have the website
    automatically updated.
    >
    > 2. If this is at all possible, there will be a few
    concerns. Don't bother
    > replying to these unless point one is even possible
    though. If I can generate
    > pages with data on each one, is it possible to have
    images in each record in
    > the data base and have these placed on each page aswell?
    > (there are more concerns but I will ask later)
    > Thanks, Chris
    >
    >
    of course it's possible, and that's how all commercial
    websites are b uilt these days.
    You can either use a database, or writable files which will
    store the data.
    You would use server-side templates (not dreamweaver
    templates), and populate them dynamically with
    the appropriate content depending on the product requested.
    What server-side language are you planning to use?
    seb (@webtrans1.com)
    high-end web design:
    http://webtrans1.com
    an ingenious website builder:
    http://sitelander.com
    music:
    http://myspace.com/popmodelberlin

  • Netweaver Data base instances for Java and ABAP

    Hello Experts,
    Please help me to understand how the two technology stacks of SAP WAS (Java and ABAP) are configured to use underline data base in Netweaver.
    Is it manadatory to have two separate data base schemas, one for ABAP applications and other for Java applications in the Netweaver?
    If yes..the any idea about what are those schema differences??
    - Rajan

    Hello Krishna,
    Thanks for the reply.
    Is there any way I can access these shemas? Are they the same by structure or there are major differences?
    My requirement is to build a common schema out of these two and have the data from these two schemas to be consolidated in the new schema.
    Any help will be greatly appreciated.
    - Rajan

  • New data base with adobe flex

    Hi  All,
    My Requiremenyty as below.
    I need to get the data from sap and from some third party softwares.  and need to build a web applicaation in adobe flex.
    i want put the data from sap and other systems into separate data base ( Like Oracle ).
    the data  from sap and other softwares can be schduled daily.  so we need build flex web appllication newly built oracle data base.
    Pleaae let me know how we can do?  is it possible?  we can i get the exact help?
    Regards,
    Kishan

    Hi mate!
    You can communicate your Flex app with SAP or another third-parties throw WebServices, RPC's or Remote Objects (java).
    For the communication with Oracle, there is a versión of Oracle which has WebServices to expose the operations; if not avaliable, you might need an application server (php, jsp, ...)
    This links may help you:
    http://www.nabble.com/-flex_india:15197--flex-sql-or-oracle-td20034201.html
    http://www.richappsconsulting.com/blog/blog-detail/integrating-flex-with-oracle-epg-using-xml/
    http://asql.mooska.pl/
    Hope it helps you
    Regards!
    Fran

  • Is it possible to copy the iTunes meta data to the mp3 files themselves?

    I have recently began using MS Windows 8. As a long time user of iTunes, I have a very large and well organised library.
    The music app built into MS Windows 8 is something which I would like to start using. Yet, it builds the music database from the mp3 files themselves; which after using iTunes for so long contain little (zero) information to describe each file.
    Is it possible, to transfer the meta data stored in my iTunes library and save it to the mp3 files themselves - so that when I open the files in another media player, it contains the same descriptive information?
    In advance, thanks.

    Normally any meta data you edit in iTunes is copied to the tags, although iTunes doesn't always update things properly if the files in question have two or more embedded tags. You can however move the entire library without losing any information as follows.
    These are two possible approaches that will normally work to move an existing library to a new computer.
    Method 1
    Backup the library with this User Tip.
    Deauthorize the old computer if you no longer want to access protected content on it.
    Restore the backup to your new computer using the same tool used to back it up.
    Keep your backup up-to-date in future.
    Method 2
    Connect the two computers to the same network. Share your <User's Music> folder from the old computer and copy the entire iTunes library folder into the <User's Music> folder on the new one. Again, deauthorize the old computer if no longer required.
    Both methods should give the new computer a working clone of the library that was on the old one. As far as iTunes is concerned this is still the "home" library for your devices so you shouldn't have any issues with iTunes wanting to erase and reload.
    I'd recommend method 1 since it establishes an ongoing backup for your library.
    If you have an iOS device that syncs with contact & calendar data on your computer you should migrate this information too. If that isn't possible create a dummy entry of each type in your new profile and iTunes should offer to merge the existing data from the device into the computer, otherwise the danger is that it will wipe the information from the device.
    If your media folder has been split out from the main iTunes folder you may need to do some preparatory work to make it easier to move. See make a split library portable.
    Should you be in the unfortunate position where you are no longer able to access your original library, or a backup of it, then see Recover your iTunes library from your iPod or iOS device for advice on how to set up your devices with a new library with the maximum preservation of data. If you don't have any Apple devices then see HT2519 - Downloading past purchases from the App Store, iBookstore, and iTunes Store.
    tt2

  • What is the best way to keep my personal files stored in iCloud separate from my work-related files?

    What is the best way to keep my personal files stored in iCloud separate from my work-related files? It seems that I'm not allowed to link my iPad mini and my work iMac using two different accounts, so I'm wondering how to make my single personal account work for both, while keeping personal vs work files reasonably separated.
    Thanks for any suggestions.

    Is it possible for you to upgrade your account to iCloud Drive? That would mean, all Macs upgraded to Yosemite, and all mobile devices to iOS8?
    See:  iCloud Drive FAQ and iCloud: About using iWork for iOS and iCloud
    In iCloud Drive you could create two separate custom folders, one for work documents and one for private documents and organize your documents there.  Don't use the app specific folders (Keynote, Pages, Numbers, ...) , because you can only create one level of folders inside these folders.

  • I have a large library that I ripped in AIFF using iTunes.  I converted to Mp3 to save drive space, keeping the originals. I have a new computer and want to revert to my original files. iTunes sees the library but is looking for Mp3 files.  Suggestions?

    I have a large library that I ripped in AIFF using iTunes.  I converted to Mp3 to save drive space, keeping the originals. I have a new computer and want to revert to my original files. iTunes sees the library but is looking for Mp3 files.  Suggestions?

    You're welcome.
    For tips on logical organization within iTunes see my article on Grouping Tracks Into Albums.
    tt2

  • How do I put a song as an audio file (mp3, mp4 etc) onto iTunes for sale

    How do I put a song as an audio file (mp3, mp4 etc) onto iTunes for sale

    Check with CD Baby - they have an agreement with Apple to get indie music on iTunes for sale.

  • Where does time machine store content that would be found in the Finder window under "All Images, All Movies, All Documents"? Also, I have many Garageband projects and mp3 files I can't find.

    Where does time machine store content that would be found in the Finder window under "All Images, All Movies, All Documents"? Also, I have many Garageband projects and mp3 files I can't find.

    Easiest way to find time machine files is to open up the folder or application(works for email and iphoto)  they were in - then click on time machine ICON or enter time machine from the time machine menu to go back through the files.

Maybe you are looking for

  • Tasks in iCal XML: Anyone know why?

    Hi, I love the fact we have VCF as a standard for exchanging contacts and ICS as a standard for exchanging schedules, but I'm perplexed why there is no standard for tasks. To that end, does anyone in this forum have a notion why Apple chose to embed

  • Do you need MapInfo EasyLoader to store TAB files in 8i or 9i?

    We are a MapInfo reseller and are trying to determine if our client would need to purchase MapInfo EasyLoader to store TAB files in Oracle 8i or 9i. Also if anyone can help me, would a client using SDE be able to store SHP files in Oracle 8 or would

  • How to set picture instead of any color to Frame

    hello friends.i justwanna to know that how can we set a picture as a background of any Frame.is there any way through glasspane.

  • Missing Button

    I have just bought Photoshop elements 7 and am learning how to use it. I wanted to make a photobook to order online, I made the book no problems, but I cannot order it, as the ORDER button is not showing. Where the button should be next to the print

  • I can't install Mountain Lion?

    So these past few days, a bunch of things have been going wrong with my mac. First, I was using iMovie and while on it, my computer would just turn black and I'd have to restart. I thought I could software update it, but when I did that, all of the p