SQL for finding chunk or no keyboard values

Hi all ,
I have table where users are allowed to enter data from excel sheet but while viewing it in application due to non key board values are like ¶,     ã, £
the validation getting failed and values are not loaded kindly help me in finding those non key board values , as data has been already loaded i need to find the data with non key board values .
i have written the query for one values but i need to find it for all the other values which are not part of key board
select * from note where text like '%'|| chr(1) ||'%';

879380 wrote:
Hi all ,
I have table where users are allowed to enter data from excel sheet but while viewing it in application due to non key board values are like ¶,     ã, £
the validation getting failed and values are not loaded kindly help me in finding those non key board values , as data has been already loaded i need to find the data with non key board values .
SELECT  REGEXP_REPLACE
          (column_name,
           '[qwertyuiopasdfghjklzxcvbnm QWERTYUIOPASDFGHJKLZXCVBNM ,./?;:''"{}1234567890=!@#$%^&*()_+\|`~-]+'
          ) non_keyborad_symbol_exists
  FROM table_name ;
Cheers!

Similar Messages

  • SQL for finding system tables????

    Hi all,
    I would like to know what is the sql queery to find all the system tables( when i am logged in as a user and not as a DBA)
    How to find the previleges enjoyed by a user ( when i am logged in as a user and not as a DBA)
    thanks
    Ganesh

    For your second question following are the views you might want to query:
    session_privs;
    SESSION_ROLES
    user_role_privs;
    USER_SYS_PRIVS;
    USER_COL_PRIVS
    USER_COL_PRIVS_MADE
    USER_COL_PRIVS_RECD
    USER_TAB_PRIVS
    USER_TAB_PRIVS_MADE
    USER_TAB_PRIVS_RECD
    COLUMN_PRIVILEGES
    ROLE_ROLE_PRIVS, ROLE_SYS_PRIVS, ROLE_TAB_PRIVS.

  • Function module for finding sales order GT total value(vbak-netwr)

    Can anyone tell which function module is used to find the Sales order  greater than the input parameter which is  total value(vbak-netwr).Output should be the details of sales order satisfying the condition.ie greater than the total value.

    Hi chandra
    I hope you are giving the logic to the ABAP'ers . By giving the input and the outputs. So here , VBAK-NETWR are related to functional consultants .
    Based on the requirement , SD,FI etc the give the logic but mostly it is related to SD consultants only
    Reagrds
    Srinath

  • T-SQL for finding the unused tables which are consuming maximum disk space.

    Hi,
    Need help in writing a T-SQL that can return me the unused or least used tables in a database and are consuming a lot of disk space.
    Thanks  

    Refer
    http://gallery.technet.microsoft.com/SQL-List-All-Tables-Space-baf0bbf9
    create table #TableSize (
    Name varchar(255),
    [rows] int,
    reserved varchar(255),
    data varchar(255),
    index_size varchar(255),
    unused varchar(255))
    create table #ConvertedSizes (
    Name varchar(255),
    [rows] int,
    reservedKb int,
    dataKb int,
    reservedIndexSize int,
    reservedUnused int)
    EXEC sp_MSforeachtable @command1="insert into #TableSize
    EXEC sp_spaceused '?'"
    insert into #ConvertedSizes (Name, [rows], reservedKb, dataKb, reservedIndexSize, reservedUnused)
    select name, [rows],
    SUBSTRING(reserved, 0, LEN(reserved)-2),
    SUBSTRING(data, 0, LEN(data)-2),
    SUBSTRING(index_size, 0, LEN(index_size)-2),
    SUBSTRING(unused, 0, LEN(unused)-2)
    from #TableSize
    select * from #ConvertedSizes
    order by reservedKb desc
    drop table #TableSize
    drop table #ConvertedSizes
    --Prashanth

  • SQL for finding identical domains in e-mail addresses

    Hi, guys can anyone help me designing a query which will guve me the names and email addresses of all people who have the identical registered domain names
    Edited by: user12258774 on Nov 22, 2009 1:35 PM
    Edited by: user12258774 on Nov 28, 2009 1:09 PM
    Edited by: user12258774 on Nov 28, 2009 1:11 PM

    Actually based on:
    Hi, guys can anyone help me designing a query which will guve me the names and email addresses of all people who have the identical registered domain namesThe following will produce lists of consultants with same email domains within expertiseid (assuming list will not exceed 4000 bytes):
    SELECT  expertiseid,
            substr(email,instr(email,'@',-1) + 1) domain,
            ltrim(firstname || ' ' || lastname,';'),';') name_list,
            ltrim(email,';'),';') email_list,
            ltrim(c.consultantid,';'),';') consultantid_list
      FROM  (
             SELECT  firstname, lastname, c.consultantid,row_number() over(partition by expertiseid,substr(email,instr(email,'@',-1) + 1) order by c.consultantid) rn
               FROM  consultants c, skills s
               WHERE s.consultantid = c.consultantid
      WHERE connect_by_isleaf = 1
      START WITH rn = 1
      CONNECT BY expertiseid = PRIOR expertiseid
             AND substr(email,instr(email,'@',-1) + 1) = PRIOR substr(email,instr(email,'@',-1) + 1)
             AND rn = PRIOR rn + 1
    /SY.

  • Sql for selected Workbook Folder Items

    Hi,
    Have come across a lot of excellent sql for finding workbook to folder items and many thanks to the various authors for those. However, what i am trying to get is the selected items within a workbook that is saved to the database. Using the code that I mentioned earlier, I see a workbook in the DB, the Business Areas and the folders. However, i see ALL the items in the folder. I am interested in seeing only those items that have been chosen.....
    I would also settle for some good doco on the eul5_xxxxxxxxx tables that are created detailing their functions, some are obvious - other less so...
    many thanks
    patrick.

    Hi Patrick
    As you may well be aware I am the author of the Oracle Discoverer 10g Handbook. In Appendix A of that book you will find many scripts for querying the EUL along with explanations for how some of the EUL is put together. If you don't have a copy you should consider getting one. Many companies get one for each of their administrators and report writers.
    The particular issue you refer to here is not covered in the book, simply because there is no easy mechanism to see the SQL used inside a workbook. Workbooks are stored in a table called EUL5_WORKBOOKS as binary objects which means you cannot query their content.
    If you have the gathering of query statistics enabled then each time a worksheet is executed a log of that is stored inside the table called EUL5_QPP_STATS. The following code will allow you to examine the folders and items that have been used in previously executed worksheets.
    SELECT
    QS.QS_DOC_OWNER USER_NAME,
    QS.QS_DOC_NAME WORKBOOK,
    QS.QS_DOC_DETAILS WORKSHEET,
    TRUNC(QS.QS_CREATED_DATE) DOC_DATE,
    (LENGTH(TO_CHAR(EUL5_GET_ITEM_NAME(QS.QS_ID)))+1)/9 ITEMS,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),1, 6)) ITEM1,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),10, 6)) ITEM2,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),19, 6)) ITEM3,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),28, 6)) ITEM4,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),37, 6)) ITEM5,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),46, 6)) ITEM6,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),55, 6)) ITEM7,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),64, 6)) ITEM8,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),73, 6)) ITEM9,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),82, 6)) ITEM10,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),91, 6)) ITEM11,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),100,6)) ITEM12,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),109,6)) ITEM13,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),118,6)) ITEM14,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),127,6)) ITEM15,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),136,6)) ITEM16,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),145,6)) ITEM17,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),154,6)) ITEM18,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),163,6)) ITEM19,
    EUL5_GET_ITEM(SUBSTR(EUL5_GET_ITEM_NAME(QS.QS_ID),172,6)) ITEM20
    FROM
    EUL5_QPP_STATS QS
    WHERE
    (LENGTH(TO_CHAR(EUL5_GET_ITEM_NAME(QS.QS_ID)))+1)/9 < 21
    As you can see, this code returns worksheets that use 20 or fewer items. You can easily alter this. Further, you may want to restrict this by searching for worksheets that have been run from a certain date using TRUNC(QS.QS_CREATED_DATE), or for a certain workbook using QS.QS_DOC_NAME, or for a certain user using QS.QS_DOC_OWNER. Sometimes you will see QS.QS_DOC_OWNER blank. This means the worksheet has been shared with someone else and was just executed without the user saving it.
    By the way, if you want to query this inside of Discoverer you will have to import the two functions that this uses: EUL5_GET_ITEM and EUL5_GET_ITEM_NAME. They are both owned by the EUL owner.
    Everyone: I will be having discussions with a publisher and a colleage of mine in early April to scope out a new Discoverer book. This book is intended to be a companion to the handbook but be more technical in its approach covering some of the more complex stuff in greater detail. We are looking at about 300 pages. If anyone has any suggestions for material that you would like to see included please send an email to me using [email protected]
    Best wishes
    Michael

  • Trying to find out the sql for the below 3 values

    HI Experts,
    I am trying to find the sql that can give me the values for the below three values. can some one Help me out getting these ?
    Free buffer waits (%)
    Local write wait (%)
    Latch: cache buffer chains (%)
    Actually these are the metrics which are available in OEM for the DB releases up to 9i. Post 9i releases , these metrics are obsoleted.
    So, trying to find the sql for these and use them as an UDM for the 10g and 11g DB's
    Thanks in Advance.
    Thanks,
    Naveen kumar.

    And is there any why to find using what sql the metrci is formed ?

  • Where could we find the CT and PT values  for Particular Device ???

    I 'm facing a scenario in  a report  i need to place a  field device number and assosiated  CT's and PT's .
    where could we find the CT and PT values  for Particular Device ??? basically im MM consultant   we don't ahave  DM consultant  please help with this issue???
    means actually i got the table and field  details  for transformation ratio (or) CT/PT ratio
                          ETYP_UEBERVER. from the screen EG03 , t-code
                            but im not sure   this  is the exact field that i require  ....
    can any one help ....   i will be very  thankfull to your  solution  inadvance....

    The transformation ratio are the attributes of a "Winding Group".  Find winding group of a device and then you'll get the desired information.

  • Change keyboard shortcut for "Find"

    The default keyboard shortcut for the "find" function is Cmd-Opt-F. As you know, for virtually every other Mac app (if not all Mac apps), the shortcut for "find" is simply Cmd-F. In iTunes, though, Cmd-F turns the visualiser full-screen mode on and off. I never use the visualiser, and decades of Mac use have hard-wired my fingers for Cmd-F to be "find." I know that there is a method in System Preferences by which to change or assign associations between drop-down menu items and keyboard shortcuts, but there is no menu item for "find" so that method seems like a dead end.
    Is there a way to replace Cmd-Opt-F with Cmd-F in iTunes?
    Help, please!!!

    to be quite honest i dont no how exactly to do this,
    i just know it can be done. i have had no problem
    opening .plist files in vi-make sure you are in root
    account for system files.
    They (the .plist files) don't seem particularly readable in vi -- they seem to contain a lot of binary content. In earlier versions of OS X they were plain text and easily edited.....
    Solaris huh? how powerful
    is that? i dont know much about solaris . . . . like
    to try it though. recommendations?
    It's a more "traditional" Unix, meaning that it's very powerful, fairly bulletproof, very configurable, and pretty obtuse if you're not familiar with it. I like my Mac better!

  • Is it possible to create a keyboard shortcut for "Export book to PDF"? (Cannot find it in the Keyboard Shortcuts window.)

    I'd like to create a keyboard shortcut for the "Export Book to PDF" command on the Books panel menu, but I simply can't find that command in Keyboard Shortcuts. After not finding it in what seemed the logical place (Keyboard Shortcuts > Product Area: Panel Menus > Book), I've looked through all the Product Areas listed on the dropdown menu -- but it seems I must be missing something.
    What do I need to do / where do I need to look to assign a keyboard shortcut for this command?

    Sorry, I agree that that is missing in action. I don't know of a workaround unless someone has written a script. Scripts can be called with keystrokes.

  • For Finding sql statements which consumes High CPU

    Hai,
    Can any help me for finding, which sql statements are comsumes high CPU

    generaly:
    1. from unix site :
    us top command or ps (but this depend on platform) -> use pid in select * from v$process where spid <>
    2. from db site
    select * from v$sql_area order by buffer_gets desc ;
    this can You join with v$session where v$session.sql_address=v$sqlarea.address
    and when You wont to see % of os select *spid from v$process where addr=<v$session.paddr>
    and then in unix ps -ef | grep <spid>
    But point 2 is maybe discutable because also parse is one style how to consume CPU ... etc
    In 10g
    from AWR dba_hist_osstat -> DBA_HIST_SQLSTAT You can see high usage CPU interval , but this show You not momentaly action , but historical data
    momentali from ASH
    now I study viraq_sh script ... I thing this answer your question tottally
    Message was edited by:
    branislav.dobrotka

  • SQL Extended Events for finding errors

    SQL Extended Events for finding errors, how to find out more than SQL text, like the stored procedure?
    SQL 2012, 2008 and 2005 (not much 2005)
    We had an agent job that was not completing and was not giving any errors. Turned out that too large a number was being SET into an integer field. We set up a SQL Extended Events based on the following URL. It gave us the SQL text and that did help. BUt
    how could we have done even more to find the error? Is there a way to find the stored procedure? Because the SQL text was pretty generic. What else can be used to find errors that are not being reported back to the agent job?
    http://www.brentozar.com/archive/2013/08/what-queries-are-failing-in-my-sql-server/

    Hi,
    Are you able to manually execute the stored procedure? How many steps are there in this job?
    You may create a test job with only one step running this stored procedure and test the result.
    As Kalman suggested, please check the relative message in job history and event viewer.
    Thanks.
    Tracy Cai
    TechNet Community Support

  • SQL for rounding to the nearest value

    Hi All,
    My Oracle DB version is 10g Release2 and also 11gR1
    I have data like below, I need to write a SQL for the below requirement.
    ID   RANGE_LOW                RANGE_HIGH
    1      50                    55             
    2      55                    60
    3      60                    63 
    4      63                    77 
    5      77                    84   The requirement is like I need to check a value between the above range low and high then round it to the nearest value.
    Say, for example if I have 68 then the value is rounded to 63 else if 74 then 77 else if its in the middle of two values (70) then rounded to the highest value, here its 77.
    Please advice.

    Ashu_Neo wrote:
    hi Purvesh,
    I think , you didn't check it properly with requirement of posting. Your query needs to be changed a bit. Please verify againYes, I probably missed or overlooked the last line.
    Here is the updated solution then:
    with data as
      select 1 id, 50 low, 55 high from dual union all
      select 2, 55, 60 from dual union all
      select 3, 60, 63 from dual union all
      select 4, 63, 77 from dual union all
      select 5, 77, 84 from dual 
    chk_val as
      select &val val from dual
    select id, low, high,
           val input_value,
           case
            when val < (low + high)/2
              then low
            else
              high
           end round_value
      from data, chk_val
    where val between low and high;
    ID                     LOW                    HIGH                   INPUT_VALUE            ROUND_VALUE           
    4                      63                     77                     70                     77

  • Where can I find good organ and keyboard sounds for Logic Express?

    Where can I find good organ and keyboard sounds for Logic Express? The included sounds seem to be lacking or hard to access.

    Update: Not terribly impressed with the interface for NI's Vintage Organs from the demo download, although the sound demos sure sound good. The letters are tiny and hard to read and the whole thing feels very PC-centric. I guess a guy gets spoiled by the intuitive stuff. I think what I'll try for now is just hooking up my keyboard (Korg N1, circa 1998, about 1700 built in sounds) as a sound module and record the waveforms when I find a sound I like. I did find the EXS24 and several other software synths with some cool organ sounds after digging a little deeper. It would be good if Apple came out with another jam pack just for organs and keys, as the existing jam packs are so easy to use.

  • Is there an ap for finding/deleting corrupt files on OS X 10.7?

    I seem to have a corrupt file(s) which cause my MacBook Pro to freeze inexplicably (and randomly) upon start-up. I've been told that this is a symptom of having a corrupt file.
    Is there an an for finding/deleting corrupt files on OS X 10.7?
    I'm pretty much bound to my computer and simply don't have the time to go through it manually.
    Thank you.

    This is an old post and I am not the person who posted the original query, but I ran your terminal diagnostic and am hoping you are still attending to this forum. I have a mid 2011 macbook Air 11", 256 GB SSD, 1.8 GHz Intel Core i7, 4 GB  1333 MHz DDR3, Mac OS X v. 10.7.5 Lion. I have had various problems in my user homefolder for a while. I have gone through quite a few other troubleshooting and fixing steps, the most extensive following a posting here "Step by Step to fix your mac" by ds store in the Apple forums. These steps helped a lot. I did remove some 3rd party software as part of this process.
    My computer is running well in general now, but one thing that has been a recurring problem is problems with move/cut-paste. I researched this online and ACL's being present where they're not supposed to be seems to be an issue. I have used terminal commands to remove ACL's, used Onyx to repair user permissions, rebooted with command-r to reset password screen and reset user permissions. They all help, but then a some point later on the problem recurs. When I run repair disk permissions with either disk utility or onyx I always get this message:
    Repairing permissions for “maggieairHD”
    Warning: SUID file “System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/MacOS/ARDAg ent” has been modified and will not be repaired.
    ACL found but not expected on “Users”
    Repaired “Users”
    Permissions repair complete
    This ALWAYS comes up, even if I run it immediately after running it and haven't done anything else on the computer in between.
    I created another user and did not have the same problems I was having at the time with some programs, although I haven't used it that much to be able to really compare. The home folder permissions repair in Onyx comes out the same in that user, though.
    Here are my results from your diagnostic terminal commands:
    Last login: Wed Dec 26 09:36:47 on console
    Maggies-MacBook-Air:~ maggieair$ kextstat -kl | awk '!/com\.apple/ {print $6 $7}'
    com.rim.driver.BlackBerryUSBDriverInt(0.0.68)
    com.logmein.driver.LogMeInSoundDriver(1.0.0)
    com.protech.NoSleep(1.3.1)
    com.parallels.kext.prl_usb_connect(7.0
    com.parallels.kext.prl_hypervisor(7.0
    com.parallels.kext.prl_hid_hook(7.0
    com.parallels.kext.prl_netbridge(7.0
    com.parallels.kext.prl_vnic(7.0
    Maggies-MacBook-Air:~ maggieair$ sudo launchctl list | sed 1d | awk '!/0x|com\.apple/ {print $3}'
    Password:
    com.parallels.vm.prl_naptd
    org.x.privileged_startx
    org.postfix.master
    org.ntp.ntpd
    org.cups.cupsd
    com.vix.cron
    com.sharpcast.xfsmond
    com.parallels.desktop.launchdaemon
    com.microsoft.office.licensing.helper
    com.adobe.fpsaud
    Maggies-MacBook-Air:~ maggieair$ launchctl list | sed 1d | awk '!/0x|com\.apple/ {print $3}'
    org.x.startx
    org.openbsd.ssh-agent
    com.parallels.vm.prl_pcproxy
    com.parallels.DesktopControlAgent
    com.parallels.desktop.client.launch
    com.maintain.CocktailSystemEvents
    Maggies-MacBook-Air:~ maggieair$ ls -1A /e*/mach* {,/}L*/{Ad,Compon,Ex,Fram,In,Keyb,La,Mail/Bu,P*P,Priv,Qu,Scripti,Servi,Sta}* L*/Fonts 2> /dev/null
    /Library/Address Book Plug-Ins:
    RCFaxAB.bundle
    /Library/Components:
    /Library/Extensions:
    /Library/Frameworks:
    AEProfiling.framework
    AERegistration.framework
    Adobe AIR.framework
    AquaticPrime.framework
    AudioMixEngine.framework
    HPSmartPrint.framework
    NyxAudioAnalysis.framework
    PluginManager.framework
    RIM_VSP.framework
    RimBlackBerryUSB.framework
    iTunesLibrary.framework
    /Library/Input Methods:
    /Library/Internet Plug-Ins:
    AdobePDFViewer.plugin
    AdobePDFViewerNPAPI.plugin
    Flash Player.plugin
    Quartz Composer.webplugin
    QuickTime Plugin.plugin
    Silverlight.plugin
    flashplayer.xpt
    googletalkbrowserplugin.plugin
    npgtpo3dautoplugin.plugin
    nsIQTScriptablePlugin.xpt
    /Library/Keyboard Layouts:
    /Library/LaunchAgents:
    com.maintain.CocktailPurgeInactiveMemory.plist
    com.maintain.CocktailSystemEvents.plist
    com.parallels.DesktopControlAgent.plist
    com.parallels.desktop.launch.plist
    com.parallels.vm.prl_pcproxy.plist
    /Library/LaunchDaemons:
    com.adobe.fpsaud.plist
    com.apple.remotepairtool.plist
    com.microsoft.office.licensing.helper.plist
    com.parallels.desktop.launchdaemon.plist
    com.sharpcast.xfsmond.plist
    /Library/PreferencePanes:
    Flash Player.prefPane
    JavaControlPanel.prefpane
    NoSleep.prefPane
    /Library/PrivilegedHelperTools:
    Google Drive Icon Helper
    com.bresink.system.securityagent3
    com.microsoft.office.licensing.helper
    /Library/QuickLook:
    ParallelsQL.qlgenerator
    iWork.qlgenerator
    /Library/QuickTime:
    AppleIntermediateCodec.component
    AppleMPEG2Codec.component
    /Library/ScriptingAdditions:
    MTL.osax
    /Library/Services:
    AScrEd • New Script for Frontmost Application.workflow
    AScrEd • Open Application Scripting Dictionary.workflow
    AScrEd • Open Dictionary of Frontmost Application.workflow
    AScrEd • Open with AppleScript Editor.workflow
    Audio • Encode to iTunes Format.workflow
    Browse Movie Library.workflow
    Browse Photo Library.workflow
    Browse iTunes Library.workflow
    Disk Item • Rename Selected Items.workflow
    Disk Item • Set Spotlight Comments.workflow
    Image • Add Metadata to JPEGs.workflow
    Image • Change File Type.workflow
    Image • Import into iPhoto.workflow
    Image • Print Image Files.workflow
    Image • Rotate Clockwise.workflow
    Image • Rotate Counter-Clockwise.workflow
    Launch Terminal.workflow
    PDF • Encrypt File.workflow
    PDF • Set Metadata.workflow
    Terminal • Get Manual for Command.workflow
    Terminal • Insert Current Finder Directory.workflow
    Terminal • Insert Selected Finder Items.workflow
    UNIX • Apply Command to Selected Items.workflow
    UNIX • New Terminal Window to Insertion Location.workflow
    iPhoto • Spotlight Search for Detected People.workflow
    /Library/StartupItems:
    Cocktail
    /etc/mach_init.d:
    /etc/mach_init_per_login_session.d:
    /etc/mach_init_per_user.d:
    Library/Address Book Plug-Ins:
    .DS_Store
    SkypeABDialer.bundle
    SkypeABSMS.bundle
    Library/Fonts:
    Library/Input Methods:
    .localized
    Library/Internet Plug-Ins:
    CitrixOnlineWebDeploymentPlugin.plugin
    Google Earth Web Plug-in.plugin
    WebEx64.plugin
    Library/Keyboard Layouts:
    Library/LaunchAgents:
    com.apple.AddressBook.ScheduledSync.PHXCardDAVSource.7D3946E8-ADA6-4982-87CA-565 69B042BAC.plist
    com.apple.FolderActions.enabled.plist
    com.apple.FolderActions.folders.plist
    com.google.keystone.agent.plist
    com.macpaw.CleanMyMac.volumeWatcher.plist
    Library/Mail/Bundles:
    Library/PreferencePanes:
    .DS_Store
    Archives.prefPane
    Library/Services:
    .DS_Store
    GraphicConverter.service
    Sync with MacDropAny.workflow
    Maggies-MacBook-Air:~ maggieair$ osascript -e 'tell application "System Events" to get the name of every login item'
    NoSleep, iTunesHelper, Caffeine, Dropbox
    Maggies-MacBook-Air:~ maggieair$
    I have removed NoSleep, Caffeine, itunesHelper and Dropbox from login items before and didn't notice any difference, so I put them back. Some of these I know I don't want, like rim/blackberry, adobe AIR. Skype has never worked consistently on this computer. I don't use most of these Services, and I know I had trouble with some that were not compatible with Lion before. I am not using Parallels much now, have been thinking about taking it off as it uses a chunk of my SSD. But I don't feel confident about getting rid of .frameworks etc safely.
    I am glad to remove anything I don't use if I know how to do it safely. I am willing to remove anything I do use if it's necessary, but obviously would prefer to find a way to keep things that I find helpful.
    I appreciate any suggestions!

Maybe you are looking for

  • ITunes 10.3 with iPods and Windows XP

    Since the iTunes 10.3 update, my iPods no longer want to work properly when connected to my Windows XP SP3 machine. iTunes works fine on its own. I have even done a clean reinstall of 10.3. Windows XP is up to date also. iPod Shuffle, 2nd Gen is reco

  • Help please....phone icon missing from screen suddenly

    Hi,suddenly I looked at my home screen and it seemed different. I noticed that the phone option is missing from the bottom of the home screen. It is usually down with the icons "mail" "safari" and "ipod". Where did it go and how can I get it back????

  • Where to fine software for Youtube viewing

    Hello to all... Does anyone know where I could download the software to view streaming videos of youtube for my 8120 Pearl? I was told when I bought my phone in August that by October I could log on the interent and go to the blackberry site and I co

  • GW802HP1 Openoffice Integration ODT issue

    Hi, we just experienced that since version 3.2 (3.2 upwards, also with 3.2.1-8)of Novell Openoffice it is not possible to save Opendocument Text (odt) in a groupwise library under Groupwise 8.02 HP1 Windows XP Client. It doesnt matter wether you save

  • Camera calibration tab in ACR ...

    When we slide the saturation slider for a primary to the left end (completely desaturated position), does it mean that we move this primary to the white point on the chromaticity diagram? Thanks ...