Monolingual question

If anyone is familiar with the Monolingual program, I have a question. This great application was reccomended to me by someone on the board. I have used it to delete all the languages besides English from my machine. But there are also two other tabs, one for Input Menu and one for Architecture. I am not really sure what I should do with these. I am trying to clean up disk space and speed up my machine as much as possible, so I want to utilize these if I can, but I don't know exactly what they do and if I should be messing with them. Thanks

This isn't the place for it, but Macs were once faster at processing the data related to graphic files and programs. But Intel and AMD caught up, and then by 2k2 started eclipsing Mac. Apple's switch to Intel is proof enough. Publisher of Maximum PC and Mac Addict(the same pub) has many articles that pretty much show it's either pc's victory or a moot point and limited to which os you like the look/feel of more.
I have a system using WinXP pro and it has a dual core Intel as well(slower at 1.86ghz) with 2 gigs of ddr2 memory. In all respects, it should be marginaly slower then my mac. And it makes my mac wear a dress at gunpoint.
You ask what I run? My school made the mac a requirement for my major(graphic design) so all I put on it was CS2...dude that's ALL. I dont have any games or any programs then what came with the osX install.
For me, CS2 photoshop takes aprox 4 times longer to do the same action that my pc does. I get type lag in my text editor sometimes.
Your mac is " a ton faster" then your old pc...how old is you old PC? I'm curious.
I've taken your post into the realm of mac/win debate and appoligize.
So let's see if there's hope for us. I've stated what I do with, and what's installed on mine; I'll look into monolingual in more depth, and I suggest contacting that developer as you mentioned.
Good Luck!
macbook pro 15"   Mac OS X (10.4.8)   i hate it
macbook pro 15"   Mac OS X (10.4.8)   i hate it

Similar Messages

  • Character Set questions on setup

    I am trying to determine what the best setup recommendations are for creating non_English Oracle 10g databases. I have not had much experience building databases for non_English locales, so this is getting a little overwhelming as I have been researching Oracle's Database Globalization Support Guide. Obviously it has a wealth of information and I am trying to determine what applies to us at this point and time.
    Generally when someone buys our product they create a new Oracle instance for our app. I need to be able to recommend proper database settings/parameters for potential global customers who purchase our software to run on Oracle.
    Currently my biggest question is what to recommend for the Database Characterset on db creation. Currently the DB Character Set we recommend (for standard U.S. installs on Windows) is the default WE8MSWIN1252 character set. Our application is non-unicode. It has been recommended to me from an outside consultant that we "must" use UTF-8 for DB and National Character Set settings, as opposed to WE8MSWIN1252 or WE8ISO8859P1. I should mention that our focus at this point and time is getting a solution for French, German, and Spanish. We are also more concerned about a single language setup than multilanguage - although that is a definite future consideration.
    What impact can using UTF-8 as opposed to WE8MSWIN1252 or WE8ISO8859P1 have on a non-unicode application? I hope I am explaining the situation well enough as I am fairly new and still getting to know our application. I am kind of getting thrown into the i18n fire...
    Any input is greatly appreciated. Thanks.

    Your questions are certainly valid but you have not given any details about your application: what it does, what technologies and access drivers are employed, and what client operating systems are supported. This determines how much effort is required to make the application Unicode-enabled and what are the risks coming from each of the possible approaches.
    As long as your application can work with single-byte character sets only and as long as it is not expected to contain multibyte data, and as long as it supports Windows only, the Oracle character set corresponding to relevant Windows ANSI code page is the correct choice. For English, French, German, Spanish, and other Western European languages, WE8MSWIN1252 is right one.
    Processing of WE8MSWIN1252 is easier and somehow faster than processing AL32UTF8 (i.e. UTF-8) data. One character corresponds to one byte and this simplifies some aspects of text processing.
    On the other hand, world becomes smaller and smaller in the Internet area. Companies that never did any business abroad start to talk to customers around the world because somebody found their website. Western European companies take advantage of the European Union enlargement and start making business in new countries. Therefore, it is dangerous to assume that a company currently interested in a monolingual, single-byte solution will not want to migrate to a multilingual and multibyte solution in few years.
    If you follow a few rules in database design and programming, you can run your single-byte application against an AL32UTF8 database, even if you do not get a multilingual system in this way. Such configuration has the huge advantage of avoiding the need of a complex and resource consuming task of migrating the database character set to Unicode in future, when your customer asks for multilingual support. Upgrading binaries of your application to an Unicode-enabled version is usually fast, migrating the database character set is not.
    The main rules you should follow are:
    1) Use character length semantics to define column and PL/SQL variable lengths, i.e. say VARCHAR2(10 CHAR) instead of VARCHAR2(10 [BYTE]). If you do not want to modify all creation scripts to include the CHAR keyword, issue ALTER SESSION SET NLS_LENGTH_SEMANTICS=CHAR at the beginning of each script. I recommend modifying the scripts.
    2) Do not use VARCHAR2 columns longer than 1000 characters, CHAR columns longer than 500 characters, and PL/SQL VARCHAR2/CHAR variables longer than 8190 characters. This guarantees that in the future no AL32UTF8 string will exceed the hard limit of 4000/2000/32760 bytes. Use CLOB for longer text.
    3) Use SUBSTR/LENGTH/INSTR in place of SUBSTRB/LENGTHB/INSTRB. Use SUBSTRB/LENGTHB/INSTRB only when dealing with legacy stuff or Data Dictionary that still use byte length semantics.
    4) Define the client setting - mainly NLS_LANG - to correctly correspond to the character set processed by your application.
    5) Modify interfaces to other databases, if any, to cope with the character length semantics. You do not have to do much if the other databases follow the same rules.
    The cost of running the database in Unicode is not high for most languages, though languages that do not use Latin script, such as Russian, Greek, or Japanese, need significantly more storage for the textual data (but only textual data in those languages - this is only some fraction of all data in the database). Processing is slower by a few percent as compared to single-byte character sets (unless a lot of textual processing is performed in the database, in which case the percentage may be higher - benchmark recommended). This costs can be usually compensated by adding some more computing power (GHz and disks). Unless your application needs a VLDB (very large database) and almost saturates the system, you should not notice a big difference.
    -- Sergiusz

  • Questions on File_DataStore

    Hi, I have some questions about file_datastore.
    Suppose My data is stored under this directory:
    /export/home/users/research/lai/data
    And I run sqlplus on this directory:
    /export/home/users/research/lai
    I have created a file datastore preference by
    begin
    ctx_ddl.create_preference('COMMON_DIR', 'FILE_DATASTORE');
    ctx_ddl.set_attribute('COMMON_DIR', 'PATH', '/export/home/users/research/lai/data');
    end;
    The table is created by:
    create table filetable(docid number primary key, docs varchar2(2000));
    insert into filetable values(200010010020042,'200010010020042.txt');
    insert into filetable values(200010200040027,'200010200040027.txt');
    insert into filetable values(200010240060092,'200010240060092.txt');
    insert into filetable values(200010200020012,'200010200020012.txt');
    insert into filetable values(200010200040184,'200010200040184.txt');
    insert into filetable values(200010300020234,'200010300020234.txt');
    commit;
    The index is created by:
    create index fileindex on filetable(docs)
    indextype is ctxsys.context
    parameters ('datastore COMMON_DIR LEXER mylex Wordlist myfuzzy section group nullgroup');
    However, when I use this query:
    select docid from filetable where contains(docs,')z3x')>0;
    where The term ')z3x' is a keyword which must appear in some of the documents.
    However 'no rows selected' resulted. Anything wrong??
    Thanks

    Hi muralis;
    Let me start with your last question first on partitioning your drive. Today that is generally consider a bad solution. If you are interested in all of the details I can give them to you later. For now since you admit that you think you are going to come up short for disk space and I agree, I would strongly suggest you do compound this with partitioning.
    Now on to making OS X smaller, there is an application called Monolingual that will remove other languages from your system this can save about a GB of space. If you have installed GarageBand it has a bunch of sample tracks that burn up bookoo disk space if you aren't going to use that delete them. Also in /library/printers there are folders for a bunch of printers. If there are any printer you will never own, delete the files for them. That can save several 100 MB of space.
    Finally do you really need so much space for Windows? With such a small drive I would consider give Windows less space like 10 or 15 GB instead of 15 to 20 GB. To me it sounds like you are being overly generous with Windows.
    Allan

  • Questions on file organization on my new mac

    Hi,
    I recently switched to mac(book). I have few questions on how to arrange my files on my mac. Please note that I need to use windows quite significantly for my work. I intend to install it through parallels.
    1. Most of the normal Mac problems seem to do with permissions, preferences, cache and some 3rd party apps. I was wondering if working mostly on a standard account will result in all these problems afflicting only my standard account and not the administrator account. On my old PC, I used my administrator login only when installing new softwares. Most my work was through a standard user account. Should I follow the same strategy with my new mac. Please provide your comments.
    2. My hard drive capacity is 60 GB. The OS alone is occupying 25 GB. In the remaining free space I need to install windows for which I will need 15 - 20 GB. I am left with around 15 GB for my mac files. This is not sufficient. Is there a way I can reduce the space that mac os occupies?
    3. A friend of mine who is a long time mac user told me that he partitions his hard drive. One for the OS and the other for documents. I will use windows (thro parallels) on my mac. I am afraid this partitioning idea may make things complicated for me. Is there any merit in following this partition strategy?
    Thank you.
    Regards,
    Murali

    Hi muralis;
    Let me start with your last question first on partitioning your drive. Today that is generally consider a bad solution. If you are interested in all of the details I can give them to you later. For now since you admit that you think you are going to come up short for disk space and I agree, I would strongly suggest you do compound this with partitioning.
    Now on to making OS X smaller, there is an application called Monolingual that will remove other languages from your system this can save about a GB of space. If you have installed GarageBand it has a bunch of sample tracks that burn up bookoo disk space if you aren't going to use that delete them. Also in /library/printers there are folders for a bunch of printers. If there are any printer you will never own, delete the files for them. That can save several 100 MB of space.
    Finally do you really need so much space for Windows? With such a small drive I would consider give Windows less space like 10 or 15 GB instead of 15 to 20 GB. To me it sounds like you are being overly generous with Windows.
    Allan

  • PPC architecture - Monolingual woes

    White trying to save space on my MacBook Pro, I deleted the PPC architecture using Monolingual in addition to several languages I would never use. Then the following happened -
    1. Office 2004 stopped working - uninstalled it and cannot re-install it - installation icon just bounces on dock and quits.
    2. Photoshop CS3 - Installs but icon just bounces and does not open
    Is there any way to restore the PPC architecture without having to re-install OS X all over again ?
    If I do start re-installing (last case scenario), can I directly upgrade from 10.4.5 to the existing 10.4.8 or do I have to download each and every update ?
    MacBook Pro 15"   Mac OS X (10.4.8)   2 GHz Intel Core Duo, 1 GB SDRAM

    Big mistake. By doing what you've done there's no alternative but to erase and install. There is no recovery (as the warning said when you used Monolingual.)
    You can directly upgrade to 10.4.8 by simply downloading the 10.4.8 Combo (Intel) updater from Apple's download site. Or just run Software Update. It will provide all the required updates including 10.4.8 Combo updater.
    Why reward points?(Quoted from Discussions Terms of Use.)
    The reward system helps to increase community participation. When a community member gives you (or another member) a reward for providing helpful advice or a solution to their question, your accumulated points will increase your status level within the community.
    Members may reward you with 5 points if they deem that your reply is helpful and 10 points if you post a solution to their issue. Likewise, when you mark a reply as Helpful or Solved in your own created topic, you will be awarding the respondent with the same point values.

  • Can time machine restore system language files deleted by "monolingual'?

    I've removed some important language files while using monolingual (namely -English (American) -English (British) not realizing these are subset and required).
    I should've read the FAQ first... now some programs are appearing in weird character formats.
    Can I replace those files with my Time Machine back ups?
    Which folder would I need to replace back with previous file?
    Since I did this only late last night, I should be able to just replace a certain system file folder, without causing much headache, I'm hoping!

    kacmaz wrote:
    Can I replace those files with my Time Machine back ups?
    Yes.
    Which folder would I need to replace back with previous file?
    That's the problem; language files aren't in a central location; each application has it's own set of language files, containing the translations of the messages for that application.
    Since I did this only late last night, I should be able to just replace a certain system file folder, without causing much headache, I'm hoping!
    I don't know much about Monolingual; I don't know if it removes language files from your System folders, or only Applications. And if you've installed any apps anywhere else, I don't know if it got them, too.
    If you're only having trouble with apps, you might be ok to restore only Applications, but to get everything back the way it was, you'd need to do a full system restore, per #14 in the Time Machine - Frequently Asked Questions (or use the link in *User Tips* at the top of this forum).

  • Well thats that. I am VERRRRRRRY happy. Another question though.

    Well I went to futureshop to trade my problematic week 22 in that had... well.. all the problems. I got a new week 29, this thing is a beauty. Runs at a normal temp, NO WHINE. At ALL. PERIOD . -->.
    None.
    Nothing
    I am going to say its safe for anybody to buy a MBP now because almost all the bugs are out.
    Its sad, I got more support at my futureshop than applecare or my local apple dealer gave me on the whine problem. THe guy at the apple store said. "Oh, well the noise means your computer is powerful" DIRECT QUOTE. LOL hahahah.
    ANYWAYS.
    Question:
    How do I uninstall the extra languages I dont need without doing a fresh OS install?

    MonoLingual Source

  • Question about reinstalling Leopard

    I just did an erase and install of Leopard... but I made the mistake of using Monolingual to remove every language but English... a mistake because now I cannot upgrade Office (and from what I've been reading also some Adobe apps).
    My question is this... can I just run the install of leopard again and not lose data, settings etc in all my apps? And what about the apps like Photoshop, iWork, and Office that had to be installed manually... will they still be in in working order after a re-install?
    thanks,
    tom

    No, reinstalling OS X won't help because it does not affect Office or Adobe products. You have to uninstall Office and all the Adobe applications. Then reinstall them from their respective installer discs. You will then be able to upgrade them.
    Uninstalling Software: The Basics
    Most OS X applications are completely self-contained "packages" that can be uninstalled by simply dragging the application to the Trash. Applications may create preference files that are stored in the /Home/Library/Preferences/ folder. Although they do nothing once you delete the associated application, they do take up some disk space. If you want you can look for them in the above location and delete them, too.
    Some applications may install an uninstaller program that can be used to remove the application. In some cases the uninstaller may be part of the application's installer, and is invoked by clicking on a Customize button that will appear during the install process.
    Some applications may install components in the /Home/Library/Applications Support/ folder. You can also check there to see if the application has created a folder. You can also delete the folder that's in the Applications Support folder. Again, they don't do anything but take up disk space once the application is trashed.
    Some applications may install a startupitem or a Log In item. Startupitems are usually installed in the /Library/StartupItems/ folder and less often in the /Home/Library/StartupItems/ folder. Log In Items are set in the Accounts preferences. Open System Preferences, click on the Accounts icon, then click on the LogIn Items tab. Locate the item in the list for the application you want to remove and click on the "-" button to delete it from the list.
    Some software use startup daemons or agents that are a new feature of the OS. Look for them in /Library/LaunchAgents/ and /Library/LaunchDaemons/ or in /Home/Library/LaunchAgents/.
    If an application installs any other files the best way to track them down is to do a Finder search using the application name or the developer name as the search term. Unfortunately Spotlight will not look in certain folders by default. You can modify Spotlight's behavior or use a third-party search utility, Easy Find, instead. Download Easy Find at VersionTracker or MacUpdate.
    Some applications install a receipt in the /Library/Receipts/ folder. Usually with the same name as the program or the developer. The item generally has a ".pkg" extension. Be sure you also delete this item as some programs use it to determine if it's already installed.
    There are also several shareware utilities that can uninstall applications:
    AppZapper
    CleanApp
    Yank
    SuperPop
    Uninstaller
    Spring Cleaning
    Look for them at VersionTracker or MacUpdate.
    For more information visit The XLab FAQs and read the FAQ on removing software.

  • Will someone help with question?

    My question is: Do I need to re-install Snow Leopard?
    Here is what happened: 
    I downloaded a program "Monolingual" to remove other languages (mine is English) which I began removing and discovered I should have un-checke "Enlgish - United States" but had only un-checked English so I cancelled the "Remove" after it had run for a period of time.  I received the message that some files had not been erased.
    A tab at the top showed I could removed unused "Architectures" so I began removing PC powe-point architectures etc - and begarn removing them when I suddenly remember some programs I use have that achitecture and stopped the program.
    To be able to use those programs, and I am not sure how far the removal program had progressed,
    Do I need to re-install Snow Leopard.
    I would appreciate your help.
    Vernon

    If you have a full backup (clone or Time Machine) restore from that. It's always a good idea to have some form of reliable backup. Otherwise, yes I would reinstall (not erase and install) Snow. Just choose the install option. This will give you new system files while preserving your user and network settings as well as all apps. When finished, update to 10.6.8 using the Combo Update.
    http://support.apple.com/kb/DL1399
    Monolingual is very bad news and it will hardly save you any disk space.
    PPC means PowerPC, not powerpoint. 

  • Questions on Print Quote report

    Hi,
    I'm fairly new to Oracle Quoting and trying to get familiar with it. I have a few questions and would appreciate if anyone answers them
    1) We have a requirement to customize the Print Quote report. I searched these forums and found that this report can be defined either as a XML Publisher report or an Oracle Reports report depending on a profile option. Can you please let me know what the name of the profile option is?
    2) When I select the 'Print Quote' option from the Actions drop down in the quoting page and click Submit I get the report printed and see the following URL in my browser.
    http://<host>:<port>/dev60cgi/rwcgi60?PROJ03_APPS+report=/proj3/app/appltop/aso/11.5.0/reports/US/ASOPQTEL.rdf+DESTYPE=CACHE+P_TCK_ID=23731428+P_EXECUTABLE=N+P_SHOW_CHARGES=N+P_SHOW_CATG_TOT=N+P_SHOW_PRICE_ADJ=Y+P_SESSION_ID=c-RAuP8LOvdnv30grRzKqUQs:S+P_SHOW_HDR_ATTACH=N+P_SHOW_LINE_ATTACH=N+P_SHOW_HDR_SALESUPP=N+P_SHOW_LN_SALESUPP=N+TOLERANCE=0+DESFORMAT=RTF+DESNAME=Quote.rtf
    Does it mean that the profile in our case is set to call the rdf since it has reference to ASOPQTEL.rdf in the above url?
    3) When you click on submit button do we have something like this in the jsp code: On click call ASOPQTEL.rdf. Is the report called using a concurrent program? I want to know how the report is getting invoked?
    4) If we want to customize the jsp pages can you please let me know the steps involved in making the customizations and testing them.
    Thanks and Appreciate your patience
    -PC

    1) We have a requirement to customize the Print Quote report. I searched these forums and found that this report can be defined either as a XML Publisher report or an Oracle Reports report depending on a profile option. Can you please let me know what the name of the profile option is?
    I think I posted it in one of the threads2) When I select the 'Print Quote' option from the Actions drop down in the quoting page and click Submit I get the report printed and see the following URL in my browser.
    http://<host>:<port>/dev60cgi/rwcgi60?PROJ03_APPS+report=/proj3/app/appltop/aso/11.5.0/reports/US/ASOPQTEL.rdf+DESTYPE=CACHE+P_TCK_ID=23731428+P_EXECUTABLE=N+P_SHOW_CHARGES=N+P_SHOW_CATG_TOT=N+P_SHOW_PRICE_ADJ=Y+P_SESSION_ID=c-RAuP8LOvdnv30grRzKqUQs:S+P_SHOW_HDR_ATTACH=N+P_SHOW_LINE_ATTACH=N+P_SHOW_HDR_SALESUPP=N+P_SHOW_LN_SALESUPP=N+TOLERANCE=0+DESFORMAT=RTF+DESNAME=Quote.rtf
    Does it mean that the profile in our case is set to call the rdf since it has reference to ASOPQTEL.rdf in the above url?
    Yes, your understanding is correct.3) When you click on submit button do we have something like this in the jsp code: On click call ASOPQTEL.rdf. Is the report called using a concurrent program? I want to know how the report is getting invoked?
    No, there is no conc program getting called, you can directly call a report in a browser window, Oracle reports server will execute the report and send the HTTP response to the browser.4) If we want to customize the jsp pages can you please let me know the steps involved in making the customizations and testing them.
    This is detailed in many threads.Thanks
    Tapash

  • Satellite P300D-10v - Question about warranty

    HI EVERYBODY
    I have these overheating problems with my laptop Satellite P300D-10v.
    I did everything I could do to fix it without any success..
    I get the latest update of the bios from Toshiba. I cleaned my lap with compressed air first and then disassembled it all and cleaned it better.(it was really clean insight though...)
    BUT unfortunately the problem still exists...
    So i made a research on the internet and I found out that most of Toshiba owners have the same exactly problem with their laptop.
    Well i guess this is a Toshiba bug for many years now.
    Its a really nice lap, cool sound (the best in laptop ever) BUT......
    So I wanted to make a question. As i am still under warranty, can i return this laptop and get my money back or change it with a different one????
    If any body knows PLS let me know.
    chears
    Thanks in advance

    Hi
    I have already found you other threads.
    Regarding the warranty question;
    If there is something wrong with the hardware then the ASP in your country should be able to help you.
    The warranty should cover every reparation or replacement.
    But I read that you have disasembled the laptop at your own hand... hmmm if you have disasembled the notebook then your warrany is not valid anymore :(
    I think this should be clear for you that you can lose the warrany if you disasemble the laptop!
    By the way: you have to speak with the notebook dealer where you have purchased this notebook if you want to return the notebook
    The Toshiba ASP can repair and fix the notebook but you will not get money from ASP.
    Greets

  • Question regarding NULL and forms

    Hi all, i have a survey that im working on that will be sent via email.
    I'm having an issue though. if i have a multiple choice question, and the user only selects one of the choices, all the unselected choices return as NULL. is there a way i can filter out anytihng that says "NULL" so it only shows the selected options?
    thanks.
    here is the page that retrieves all the data. thanks
    <body>
    <p>1) Is this your first visit to xxxxxxx? <b><%=request.getParameter("stepone") %></b>
    </p>
    <p> </p>
    <p>2) How did You Learn About xxxxxxx?</p>
    <p><b><%=request.getParameter("steptwoOne") %></b>
      <br>
        <b><%=request.getParameter("steptwoTwo") %></b>
      <br>
        <b><%=request.getParameter("steptwoThree") %></b>
      <br>
        <b><%=request.getParameter("steptwoFour") %></b>
      <br>
        <b><%=request.getParameter("steptwoOther") %></b>
    </p>
    <p> </p>
    <p>3) What was your main reason for visiting xxxxx?</p>
    <p><b><%=request.getParameter("stepthreeOne") %></b>
        <br>
          <b><%=request.getParameter("stepthreeTwo") %></b>
        <br>
          <b><%=request.getParameter("stepthreeThree") %></b>
        <br>
          <b><%=request.getParameter("stepthreeFour") %></b>
        <br>
          <b><%=request.getParameter("stepthreeOther") %></b>
    </p>
    <p>4) did you find the information you were looking for on this site?</p>
    <p><b><%=request.getParameter("stepfour") %>
    <br>
    <b><%=request.getParameter("stepfourOther") %></b>
    </b></p>
    <p>5) Do you plan on using this website in the future?</p>
    <p><b><%=request.getParameter("stepfive") %></b></p>
    <p>6) What is your gender</p>
    <p><b><%=request.getParameter("stepsix") %></b></p>
    <p>7) What is your age group</p>
    <p><b><%=request.getParameter("stepseven") %></b></p>
    8) Would you like to take a moment and tell us how we can improve your experience on xxxxxxxxxx?
    <p><b><%=request.getParameter("stepeightFeedback") %></b></p>

    i was messing around and came up with this. it doesnt remove the null, but if it is null it adds ABC beside it. so i think i might be getting close. i just need to figure out how to replace the null.
    code]
    <b><%=request.getParameter("steptwoFour") %></b>
         <% if (request.getParameter("steptwoFour") == null ) {
         %>
         <% out.print("abc"); %>
         <% }
         %>

  • Anyone know how to remove Overdrive books from my iphone that have been transferred from my computer? They do not show up on itunes. I see a lot of answers to this question but they all are based on being able to see the books in iTunes.

    How do I remove Overdrive books from the library that were downloaded onto my computer then transferred to my iphone? The problem is that they do not show up in iTunes.
    I see this question asked a lot when I google, but they always give answers that assumes you can find the books in iTunes either under the books tab, or the audio books tab or in the music. They do not show up anywhere for me. They do not remove from the app like the ones I downloaded directly onto my iphone.the related archived article does not answer it either.  I even asked a guy working at an apple store and he could not help either.   Anybody...?
    Thanks!

    there is an app called daisydisk on mac app store which will help you see exactly where the memory is focused and consumed try using that app and see which folders are using more memory

  • Basic question

    Hello, i have a basic question. if i have defined 2 fields in a cube or a dso:
    Name Quantity
    and from the external flat file i get some characters for my quantity field. would my load fail?  for standard dso and for write optimized?
    NOTE: quantity field is a keyfigure defined as numeric.
    and the load coming in has "VIKPATEL" for Quantity field and not numbers.
    thanks

    Hi Vik,
    Yes, the load will fail.
    May be you coud first load this data into BW (into PSA) and set both fields as characters fields. Then you can create DSO, do transformation from this PSA to the DSO, and put your logic as to what do you want to do with those Quantity that is not number (e.g. convert to 0, or 'Not assgined', etc).
    You can use transfer rule, or a clean up ABAP code in the start routine.
    Hope this helps.

  • Mid 2010 15" i5 Battery Calibration Questions

    Hi, I have a mid 2010 15" MacBook Pro 2.4GHz i5.
    Question 1: I didn't calibrate my battery when I first got my MacBook Pro (it didn't say in the manual that I had to). I've had it for about a month and am doing a calibration today, is that okay? I hope I haven't damaged my battery? The calibration is only to help the battery meter provide an accurate reading of how much life it has remaining, right?
    Question 2: After reading Apple's calibration guide, I decided to set the MacBook Pro to never go to sleep (in Energy Saver System Preference) and leave it on overnight so it would run out of power and go to sleep, then I'd leave it in that state for at least 5 hours before charging it. When I woke up, the light on the front wasn't illuminated. It usually pulsates when in Sleep. Expectedly, it wouldn't wake when pressing buttons on the keyboard. So, what's happened? Is this Safe Sleep? I didn't see any "Your Mac is on reserve battery and will shut down" dialogues or anything similar, as I was asleep! I've left it in this state while I'm at work and will charge it this afternoon. Was my described method okay for calibration or should I have done something different?
    Question 3: Does it matter how quickly you drain your battery when doing a calibration? i.e is it okay to drain it quickly (by running HD video, Photo Booth with effects etc) or slowly (by leaving it idle or running light apps)?
    Thanks.
    Message was edited by: Fresh J

    Fresh J:
    A1. You're fine calibrating the battery now. You might have gotten more accurate readings during the first month if you'd done it sooner, but no harm has been done.
    A2. Your machine has NOT shut down; it has done exactly what it was supposed to do. When the power became critically low, it first wrote the contents of RAM to the hard drive, then went to sleep. When the battery was completely drained some time later, the MBP went into hibernation and the slepp light stopped pulsing and turned off. In that state the machine was using no power at all, but the contents of your RAM were still saved. Once the AC adapter was connected, a press of the power button would cause those contents to be reloaded, and the machine would pick up again exactly where you left off. It is not necessary to wait for the battery to be fully charged before using the machine on AC power, but do leave the AC adapter connected for at least two hours after the battery is fully charged. Nothing that you say you've done was wrong, and nothing that you say has happened was wrong.
    A3. No, it does not matter.

Maybe you are looking for

  • Webservice concepts . Pls help

    Hi All, In PI 7.0 in Integration Configuration: we create the WSDL for Sender/Outbound Interface using --- Select Tools --- Define Web Service -- fill all information and send that wsdl to consumer and use soap sender adapter similarly In PI 7.0 in I

  • Paying For 30Mbs, But Only Getting 2Mbs

    Hi Apple Discussions I Have A Problem (I Think) With My Airport Extreme 802.11n, Right Now I Have Optimum Online Running At 30Mbs Download & 5Mbs Upload. But The Settings On The Airport Router Is Only Let Me Push Out 2Mbs, Then I Tried To Set It On 8

  • CLOB to FILE (or BLOB to file)

    How to save into a server-side file a CLOB data ? Edo.

  • IMovie 10 can´t import old library

    Hi, my iMovie crashed, the app didn´t open anymore. So I uninstalled it and got the App back from the App Store. Then, for an unknown reason, I opened iMovie and it looked like it would work. I thought I could use Time Machine to get back all my movi

  • PowerShell Script to enable encryption

    Hi All, I am hoping I can get some assistance.   I am looking to create a script that will do following: 1. Enable Encryption  2. Backup Encryption Key and/or TPM Data to specific location and specific file name: ex: Computer Name or FQDN Is this pos