Need suggestions about learning "Business Intelligence"

Hi,
Currently I am wroking as a Oracle PL/SQL developer. I am planning to learn "Business Intelligence".
I found many documents in Google but I didn't get which is helpful for beginners.
so can any one please give me your suggestions to learn BI and send me User Guide for BI.
Thank you,

Vijai,
You could go through this link for further details interms of scenario and settings needed...<a href="http://help.sap.com/saphelp_47x200/helpdata/en/e0/71bb169c9f11d191920000e8a5f6e6/frameset.htm">Strategy 60</a>
Hope this helps...Reward your points if so,
Regards,
Prasobh

Similar Messages

  • [ASK] about Oracle Business Intelligence

    Hi All,
    any body can help me?
    i want learn about Business Intelligence, but i not undestand what should i do.
    can any body explain / suggest to me, what must i install any software on my computer to develop BI.
    please give me the url to download or ebook to guide me.
    FYI
    i have installed Oracle Business Enterprise 11g. i downloaded it from oracle site.
    Thanks your help guys...

    Hi,
    11g software can be downloaded form here,
    http://www.oracle.com/technetwork/middleware/bi-enterprise-edition/downloads/bus-intelligence-11g-165436.html
    You have plenty of kick start materials here,
    http://gerardnico.com/wiki/dat/obiee/getting_started
    Rgds,
    Dpka

  • Need Suggestion about Solman support & testing E CATT feature

    Hi Solman Experts .
    I need your Strong suggestion. Actually i am working in  ABAP module , I recently joined as a fresher in small company,  I got opportunity to  go Saudi for  "Solman support & testing ,E CATT"  in big MNC . Now i need suggestion , If i go and work there in these areas , If i return to India  will i get Good Job  and Salary here .
    Please suggest me. please it my career issue.

    hi Gafoor,
    I too had this kind of oppurtunity and now i am in abhudabi in crm and solman testing. No problem in this , So you can go to saudi as your wish and the future and scope for the solman is very good. So it s reasonable to go saudi .
    Regards,
    Prabhushankar

  • I need suggestion about the way , method, or path of learning GUI

    Since there are many IDEs that are capable of developing the Java GUI quickly, one of my friend suggest me to learn GUI using code instead of drag and drop GUI component. He said when your boss ask you to fix the error/bug for the front-end part of the program, which is written in code only.
    Another situation is that when you are working with a team and your team members using code instead of these drag&drop, he said i have to adapt to using these code to write the GUI.
    Actually he has point. what do you guys think? please post your opinion.

    roadorange wrote:
    Since there are many IDEs that are capable of developing the Java GUI quickly, one of my friend suggest me to learn GUI using code instead of drag and drop GUI component. You should go through the Swing tutorial and perhaps the 2D demo that comes with the JDK. Look at the code, run the examples, step through it or whatever you want. But I personally don't think you get much (except a massive, lasting headache) from writing the code by hand.
    He said when your boss ask you to fix the error/bug for the front-end part of the program, which is written in code only.Huh?
    Another situation is that when you are working with a team and your team members using code instead of these drag&drop, he said i have to adapt to using these code to write the GUI.I'm starting to lose you here...
    Actually he has point. what do you guys think? please post your opinion.I say use the GUI tools (don't fight evolution)

  • Need Suggestion  to learn BPEL

    Hi Friends
    Iam totally new to BPEL please help me to learn it and to become Familiar in BPEL
    My Qusetion
    =========
    1) In short what is BPEL .why we are using it and what the actual purpose?
    2)From were i start learning bpel
    3)what technology is needed for BPEL
    4)I have knowledge in OAF ,sql ,java,basic xml is that enough to get start BPEL
    5) is there any training audio & video explanation
    Your suggestion will be appreciable
    Thanks in Advance
    Suresh

    I believe that before this question you should do some research? you can google it from the web. There is various answer that can given. What i suggest is to start with the tutorial. BPEL is not a rocket science. So put some effort and start the tutorial, it will benefit you.

  • Need Suggestion about JSP/Servlet OR JSF2.0

    I am new to Java and working on it as fast as possible. Got 5+ years experience in ASP.NET C#. I have covered basics of Java and now want to jump into web development by making a project by converting one of my ASP.NET project.
    I have explored Servlet/JSP and JSF2.0. Want to learn only one from them and put all my energies in it. I find JSF more robust, clean and easy to use with templating etc . I am doing all this so that I cover most of the things to complete one full project and try to find a job as starter in Java.
    Now my questions
    As a starter job in Java what things should I know?
    Should I learn Servlet/JSP even if I am good at JSF (suppose)?
    Do companies still need skills in Servlet/JSP or they are adopting JSF?
    Thanks

    Prateek wrote:
    first i would like to asked you one question why you want to change your technology ? you have over 5+ year experience in Microsoft technology .java and microsoft both are programming language .i recommend you if you have 5+ year experience then you do not need to switch your technology . this is one things .but i am sure it is not a big deal for you to switch the technology .
    see jsf and jsp both are based on the servlet .main things is that you have to learn servlet first .Why wouldn't you want to switch your technology? Java barely existed when I started my career. If I had stuck with only the language I needed for my first job, I'd have very few jobs available to me now. If one technology was good for everything, then other technologies wouldn't be invented--we would have stuck with the first technology. Different languages have different advantages (and different disadvantages). You should learn what you need for the tasks you are given, as well as learn what you need for the jobs that are available. If there are fewer jobs in technologies you already know, you should learn a new one. Or, you can learn a new one just because you want to expand your horizons, or any other reason you feel like.

  • Need suggestion about a fast XML parser

    I have a program which needs to parse lots of XML files of sizes varing from few MBs to hundreds of MBs. It needs to parse the file in one-pass, and for which the SAX approach is best suited. I initially tried coding this program using the SAX parser provided by Java library, but it takes way-way too much time to parse the files. I then googled out Piccolo XML Parser, but it throws ArrayIndexOutOfBound exception. Furthermore, sometimes XML files could terminated prematurely.
    Can you suggest any SAX XML parser for this job?

    I am pasting here a trimmed version of my code..... sorry this is not the simplified and complete in itself version as the norm is.
    public Vector<String> search(String dumpfile, String srfor, int type, long size, boolean showTTH, boolean phpSerialize, String hubname) {
         Vector<String> results = new Vector<String>();
         try {
             SAXParserFactory factory = SAXParserFactory.newInstance();
             SAXParser parser = factory.newSAXParser();
             BufferedInputStream ubin = new BufferedInputStream(new FileInputStream(dumpfile));
             ubin.read(new byte[2]); //To discard the starting BZ flag.
             CBZip2InputStream bin = new CBZip2InputStream(ubin);
             String line = null;
             int c=0;
             line = "";
             while((c=bin.read())!='\n' && c!=-1) line = line + (char) c;
             String dnt = line;
             if (c==-1){// (line == null){
              dnt="";
              return null;
             line = "";
             while((c=bin.read())!='\n' && c!=-1) line = line + (char) c;
             if(c==-1)// (line == null)
              return null;
             if (!phpSerialize)
              results.add("Dump's Date and Time stamp: " + dnt + "\n==========================\n"+"hubname: " + line);
             else
              results.add("$" + dnt +"\n"+"|" + line);
             if(hubname!=null && !line.trim().toLowerCase().contains(hubname.toLowerCase().subSequence(0, hubname.length()))){
              results.add("No hits.");
              return results;
             while((c=bin.read())!='\n' && c!=-1);
             FilelistHandler handler = new FilelistHandler(srfor,type,size,showTTH,phpSerialize,hubname,results);
             try{
              parser.parse(bin, handler);
             }catch(org.xml.sax.SAXParseException saxe){
              saxe.printStackTrace();
             if(results.size()==1){
              results.add("No hits.");
         } catch (FileNotFoundException e) {
             // TODO Auto-generated catch block
             e.printStackTrace();
         } catch (IOException e) {
             // TODO Auto-generated catch block
             e.printStackTrace();
         } catch (ParserConfigurationException e) {
             e.printStackTrace();
         } catch (SAXParseException e) {
             // TODO Auto-generated catch block
             e.printStackTrace();
             System.err.println("Line: "+e.getLineNumber()+"; Col:"+e.getColumnNumber());
         } catch (SAXException e) {
             // TODO Auto-generated catch block
             e.printStackTrace();
         return results;
    private class FilelistHandler extends DefaultHandler {
         static final int USER = 0;
         static final int FILE = 1;
         static final int DIR = 2;
         static final int ANY = 3;
         static final int UNKNOWN = 4;
         private Vector<String> results;
         Vector<String> dirs = new Vector<String>();
         private String srfor;
         private int type;
         private int level = -1;
         private long size;
         private boolean showTTH;
         private boolean phpSerialize;
         private String hubname;
         private String currentUser;
         private String currentIP;
         public FilelistHandler(String Srfor, int Type, long Size, boolean ShowTTH, boolean PhpSerialize, String Hubname, Vector<String> res) {
             srfor = Srfor.trim().toLowerCase();
             type = Type;
             size = Size;
             showTTH = ShowTTH;
             phpSerialize = PhpSerialize;
             hubname = Hubname;
             results = res;
         public void startElement(String uri, String lname, String qname, Attributes attrs) throws SAXException {
             String result = null;
             long currsize = 0L;
             String TTH = "";
             String value = "";
             int currType = UNKNOWN;
             if (qname.equalsIgnoreCase("Directory")) {
              value = attrs.getValue("Name");
              dirs.add(attrs.getValue("Name"));
              currType = DIR;
             } else if (qname.equalsIgnoreCase("user")) {
              currentUser = attrs.getValue("username");
              currentIP = attrs.getValue("ip");
              currType = USER;
             } else if (qname.equalsIgnoreCase("File")) {
              value = attrs.getValue("Name");
              currsize = Long.parseLong(attrs.getValue("Size"));
              TTH = attrs.getValue("TTH");
              currType = FILE;
             if (currType == FILE || currType == DIR) {
              // Searching.
              boolean found = false;
              result = currentUser + ":" + currentIP + ":" + (currType == FILE && showTTH ? TTH + ":" : "") + getPwd(dirs);
              if (result.trim().toLowerCase().contains(srfor.subSequence(0, srfor.length())) || currType == FILE && TTH.equalsIgnoreCase(srfor)) {
                  found = true;
              if (type != ANY && currType != type)
                  found = false;
              if (size >= 0 && currType == FILE)
                  if ((size == 0 && currsize != size) || (size != 0 && (((double) (Math.abs(currsize - size))) / size) > 0.1))
                   found = false;
              if (found) {
                  if (!phpSerialize) {
                   if (currType == FILE)
                       result = result + "/" + value;
                  } else {
                   int index = 0;
                   result = serializeEntity(index++, currType == FILE ? "f" : "d");
                   result = result + serializeEntity(index++, currentUser);
                   result = result + serializeEntity(index++, currentIP);
                   if (currType == FILE && showTTH)
                       result = result + serializeEntity(index++, TTH);
                   result = result + serializeEntity(index++, getPwd(dirs));
                   if (currType == FILE)
                       result = result + serializeEntity(index++, value);
                   result = "a:" + index + ":{" + result + "}";
                  results.add(result); // ADDING THE RESULT.
         public void endElement(String uri, String lname, String qname) throws SAXException {
             if (qname.equalsIgnoreCase("Directory")) {
              dirs.remove(dirs.size() - 1);
         private String getPwd(Vector<String> dirs) {
             String pwd = "";
             for (String dir : dirs) {
              pwd = pwd + "/" + dir;
             return pwd;
         private String serializeEntity(int index, String s) {
             return "i:" + index + ";s:" + s.length() + ":\"" + s + "\";";
         public Vector<String> getParsedData() {
             return results;
        }

  • Need info about production business content to use.

    Hi,
    I am currently using 2LIS_04_P_MATNR to get details of production order. This data source gives me the details of total quantity produced on the final posting date (ie. the date on which total quantity produced is confirmed).
    eg. If quantity requested is 10 and 1 PC is produced on 27.07.2007 and 2 pc produced on 28.07.2007 and 7 pc produced on 29.07.2007. This data source gives me the information as 10 quantity (127) produced on 29.07.2007
    I need all 3 lines (ie.1 PC against 27.07.2007 and 2 pc against 28.07.2007 and 7 pc against 29.07.2007 ) into BW. This information is available in AFRU table.
    I tried all possible solutions that i could manage with the current datasource that i use, but could not find any.
    Could someone suggest some other production data source which i can use to achieve this information ?
    Thanks in advance,
    Somenath

    Hi,
    I am currently using 2LIS_04_P_MATNR to get details of production order. This data source gives me the details of total quantity produced on the final posting date (ie. the date on which total quantity produced is confirmed).
    eg. If quantity requested is 10 and 1 PC is produced on 27.07.2007 and 2 pc produced on 28.07.2007 and 7 pc produced on 29.07.2007. This data source gives me the information as 10 quantity (127) produced on 29.07.2007
    I need all 3 lines (ie.1 PC against 27.07.2007 and 2 pc against 28.07.2007 and 7 pc against 29.07.2007 ) into BW. This information is available in AFRU table.
    I tried all possible solutions that i could manage with the current datasource that i use, but could not find any.
    Could someone suggest some other production data source which i can use to achieve this information ?
    Thanks in advance,
    Somenath

  • Looking for Master Thesis suggestion in SAP Business Intelligence Area

    Hi,
    I am in final semester of my masters program in Electronic Business. I have studied SAP ERP (SAP ECC 6- MM, SD, PP) and Datawarehouse (DW structures, Reporting, ETL, etc) with SAP BW 3.5. I have also learned and worked with ABAP programing.
    I am interested to do my masters thesis in SAP-BI area. Kindly guide me regarding some topics or current issues which i can further explore and work on.
    Thanks and Regards,
    Azam

    Hi Moshin,
    You have to learn SAP BW 3.5 along with ABAP and BI 7.0. Because BW 3.5 is the earlier version of BI 7.0.
    BO is widely used for Reporting which can work on any database.
    It's better to join in SAP Authorized Institutes like the following. It may be expensive.
    1. Siemens
    2. Yash
    Etc..........
    Regards,
    Suman

  • I need suggestion about copy and paste the path....?

    Hi Everyone!
              This is Vijay and I need one  suggestion, Actualy I moved Photoshop path between two files. If I Copy and paste the path(Using Java Script) then the path size will be reduced. otherwise I Copy and Paste the path(Manualy) to other file that size only maintain. Any one tell Why The Path Size would be Reduce,using Script? Thanks in Advance.!
    Regards
    - yajiv

    It would appear that the path is scaled in relation to the width … I don’t know why.
    And are You sure You want to transfer only from the second path on?
    What does »Do need ful.!« mean?
    You could try this, it collects the PathPoints-data and may actually be unnecessarily complicated.
    var docRef = app.activeDocument;
    var PathCount = activeDocument.pathItems.length;
    var PathList = new Array( );
    for (var i = 0; i < PathCount; i++) {
    PathList[i] = activeDocument.pathItems[i].name;
    DuPath(PathList[i]);
    function DuPath(pname){
    var thePathArray = getPathInfo(app.activeDocument.pathItems[pname]);
    var id200 = charIDToTypeID( "copy" );
    executeAction( id200, undefined, DialogModes.NO );
    var id201 = charIDToTypeID( "slct" );
    var desc57 = new ActionDescriptor();
    var id202 = charIDToTypeID( "null" );
    var ref56 = new ActionReference();
    var id203 = charIDToTypeID( "Dcmn" );
    ref56.putOffset( id203, 1 );
    desc57.putReference( id202, ref56 );
    executeAction( id201, desc57, DialogModes.NO );
    var newPath = app.activeDocument.pathItems.add(pname, thePathArray)
    var id205 = charIDToTypeID( "Dslc" );
    var desc58 = new ActionDescriptor();
    var id206 = charIDToTypeID( "null" );
    var ref57 = new ActionReference();
    var id207 = charIDToTypeID( "Path" );
    ref57.putClass( id207 );
    desc58.putReference( id206, ref57 );
    executeAction( id205, desc58, DialogModes.NO );
    var id208 = charIDToTypeID( "slct" );
    var desc59 = new ActionDescriptor();
    var id209 = charIDToTypeID( "null" );
    var ref58 = new ActionReference();
    var id210 = charIDToTypeID( "Dcmn" );
    ref58.putOffset( id210, -1 );
    desc59.putReference( id209, ref58 );
    executeAction( id208, desc59, DialogModes.NO );
    ////// get path-array //////
    function getPathInfo (thePath) {
    var lineSubPathArray = new Array ();
    for (var a = 0; a < thePath.subPathItems.length; a++) {
    var lineArray = new Array ();
    for (var b = 0; b < thePath.subPathItems[a].pathPoints.length; b++) {
    var aPoint = thePath.subPathItems[a].pathPoints[b];
    lineArray[b] = new PathPointInfo;
    lineArray[b].kind = aPoint.kind;
    lineArray[b].anchor = aPoint.anchor;
    lineArray[b].leftDirection = aPoint.leftDirection;
    lineArray[b].rightDirection = aPoint.rightDirection;
    lineSubPathArray[a] = new SubPathInfo();
    lineSubPathArray[a].operation = ShapeOperation.SHAPEXOR;
    lineSubPathArray[a].closed = thePath.subPathItems[a].closed;
    lineSubPathArray[a].entireSubPath = lineArray;
    return lineSubPathArray

  • Need suggestions to learn Oracle Apps Technical Modules

    Hi All,
    I have done my Bachelors in Computers and Am OCP Certified in Oracle9i ( development). I am having 4.5 Years of experience as a Oracle PL/SQL Developer ( Not completely into Development but am into maximum Application support and some part of Development. Now I want to learn Oracle Apps Technical. But am not aware of the Modules which are helpful to my career. I worked for many domains like Retail, Pharma, Manufacturing and Telecom.
    So please have a look into this and suggest me the Module details. So very soon am planning to learn those Modules which are like hot cake in Market.
    Many thanks in advance.

    I have done my Bachelors in Computers and Am OCP Certified in Oracle9i ( development). I am having 4.5 Years of experience as a Oracle PL/SQL Developer ( Not completely into Development but am into maximum Application support and some part of Development. Now I want to learn Oracle Apps Technical. But am not aware of the Modules which are helpful to my career. I worked for many domains like Retail, Pharma, Manufacturing and Telecom.
    So please have a look into this and suggest me the Module details. So very soon am planning to learn those Modules which are like hot cake in Market.This topic was discussed many times in the forum before, please see old threads for details.
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Apps+AND+Developer&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Technical+AND+Consultant&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    https://forums.oracle.com/forums/search.jspa?threadID=&q=Functional+AND+Consultant&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

  • Need suggestion about 11g OCP

    Hi All,
    I'm 9i OCA and now want to 11g OCP. What is my certification path, is 9i OCA certification help me or I will need to do fresh certification in 11g.
    Waiting for your valuable suggestion.
    Regards,
    Mritunjay

    You have a couple of options:
    1. you can go ahead and finish your path to 9i DBA OCP and then upgrade to 11g DBA OCP
    - pass exam 032
    - pass exam 033
    - complete training
    - complete course submission form
    - receive 9i DBA OCP
    - pass upgrade exam 055
    - receive 11g DBA OCP
    2. you can do the full path for 11g DBA OCP (which will include first obtaining 11g DBA OCA)
    - pass exam 007, 047, or 051 (since you already have 9i DBA OCA, you probably have already passed one of these exams, or the 001 exam which will exempt you from repeating this step)
    - pass exam 052
    - receive 11g DBA OCA
    - pass exam 053
    - complete training
    - complete course submission form
    - receive 11g DBA OCP
    *11g DBA path*
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=198
    *9i DBA path*
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=152
    Upgrade paths
    http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=44
    Regards,
    Brandye Barrington
    Certification Forum Moderator

  • Need suggestions about product proposals in webshop

    Hi all,
    we want to show product proposals to all the customers who logged on to webshop irrespective of which target group he/she belongs to.
    To achieve this we have done the following settings.
    1) Created target group by taking segment type as product proposal
    2) Assigned target group to product catalog view
    3) Created TOP N LIST product proposal
    4) Assigned Webshop ID, Target group to the TOP N LIST.
    5)Assigned Product catalog, view and variants to Webshop admin
    6) Activated Display Global product recommendations field
    7) Assigned target group to the Global product recommendations
    But still i am not getting Product proposals in webshop while creating the sales transaction.
    is there anything else which needs to be configured?
    anything to do with XCM settings as well?
    any inputs will be greatly appreciated.
    awaiting for ur valuable inputs at the earliest.
    Thanks in advance.
    Regards,
    DV.

    Hi,
    That sounds like the correct setting.
    Once you've changed it to TRUE and saved your UI component, go to the application that uses it in XCM and save that as well.  You will probably see a message about having to restart the application for changes to take effect.
    If you now log back into the webshop hopefully you should see some differences.
    Gareth.

  • Need suggestions about synonyms

    We are using Oracle 10g (10.2.0.5).
    I have few doubts about synonyms. Please find the below..
    1.What is schema based synonym switching?
    2. How it will work and to understand explain with the example...
    3. what are advantages and disadvantages of schema based synonym switching?
    4. Can we implement it in Oracle 10g? or It is new in Oracle 11g?
    Thanks in advance..

    >
    You don't want to use synonyms, as they are a maintenance nightmare (you need too many, the objects may not exist and so on) and have negative performance implications.
    >
    I've never been involved in any issues where synonyms were responsible for any performance issues. Can you provide an example of that?
    Sure there is maintenance involved as this is with any database object. Need too many? That's like saying don't use tables or indexes because you will need too many. How many you need is entirely dependent on how you use them.
    Yes, the underlying object may not exist. This is perfectly valid even though I have no object named 'abc' in the scott schema
    create synonym foobar for abcJust saying the synonym may not exist has no weight as an argument for me. You need to explain why that is a negative, if you believe it is, and why you think that negative (and any others you care to mention) outweighs the positives.
    Actually I'm more surprised you didn't highlight what I think is one of the biggest 'gotchas' developers may need to be aware of. That is how the improper maintenance of synonyms in various environments can wasted time and resources of the technical team chasing down problems that wouldn't otherwise exist if the synonyms were maintained properly. Namely a missing synonym or one pointing to the wrong (or wrong version of an) object. Sometimes the first check you need to make is whether your query SELECT * FROM EMP is really querying what you think it is.

  • Need Suggestions about running OS 9.2.2 in CLASSIC

    The following is what I have done to my machine about two years ago.
    I have a B&W G3 rev 1 30 Mhz Still a reliable machine.
    1. Installed new ram (512 Mb total)
    2. Installed SIIG15Y Ultra ATA 133/100 Controller
    3. Installed an 8 Gb Hard drive. Computer still has original 6 Gb hard drive.
    Both have OS 9.2.2 installed and run fine.
    4. Installed an 80 Gb Seagate Barracuda as third hard drive. Connected to the
    Ultra ATA Card. Formatted HSF +
    5. Partitioned 80 Gb new drive for OS 10.2.2 (50 Gb) and 9.2.2 (30Gb)
    Care was taken to make sure all 9.2.2 drivers were installed.
    6. Installed 10.2.2 on Seagate drive -runs fine. Ran 10.2.4 update. No problems.
    Installed 9.2.2 on partition
    7. I can boot off of 9.2.2 on original 6Gb disk and the 8Gb disk
    8. I can use 10.2.4 on the partition.
    9. I have selected to have 9.2.2 on the partition for "Classic" when using 10.2.4
    This is where the problems start - that system doesn't boot up.
    9.2.2 on the partition doesn't even boot up when I select it from START UP disk. I get
    "Illegal Instruction" Haven't been able to figure out why. When I select either system
    folders on the other two drives for CLASSIC they work. Everything runs fine. I ran
    this post about a year ago but all suggestions never panned out. I just dealt with the
    problem. Maybe try again.
    I am thinking now just reformat the 80 Gb drive for OS X and use either of the other
    two system folders for CLASSIC. All of this was done to install and work with OS X and
    to have a back up drive when ever the original drive would give out. Any thoughts ?
    B&W G3 rev1 300Mhz   Mac OS 9.2.x   Also have 10.2.4 installed on 3rd hard drive

    The install Mac OS 9 drivers was selected. I am thinking that if I don't get this bug to work this time that I would just reformat the drive with no partitions, load 10.2.4 and then install 9.2.2.
    For some reason I am thining that there is something wrong with the ratition. Photos that open fine when they are on one of the other hard drives will not open when they are put into my storage folder on the partition. I get a corrupt file message. This doesn't happen to all pictures just a few.
    B&W G3 rev1 300Mhz Mac OS 9.2.x

Maybe you are looking for

  • Special cursor are not captured in Captivate 6

    We try to create software simulation of Russian analog of AutoCAD, named KOMPAS-3D. In this program we are working with CAD drawings. And then in this software we are moving mouse over some objects of drawing like line or circle (or section in 3d dra

  • How do I add /usr/local/bin to path

    Hi. I have installed arch linux on a server. It seems really very good - manged to install latest snort-inline easily... However (and this is really a completely NOOB question) - how do I add /usr/local/bin to the default (root) path ? I have tried t

  • Issues with exporting movie - insufficient storage space

    Hello, Last night I tried to export a 50 minute movie that I created - I checked my hard disk space and I had 4.3Gb available at the time. I didnt think I would have enough space to export in 720p resolution but tried anyway. Imovie started to create

  • Z movement types for subcontracting

    Hi Experts I am creating zmovement types for my subcontracting process,941,942,943.i am successfulyy send the material with subcontracting vendor with 941 movement.when i am doing GR for with 101movement type for subcontracting material.the 543 movem

  • Older MacBook Pro as a Wireless Backup Drive?

    I just got a new MacBook Pro and want to use my old one as a wireless backup drive. Is this possible? I'd backup only user files and skip the music and photos. If so, how do I set it up and what are my options for wireless backup software?