Need to select only words

Hi,
I have a simple question, i have a column with a lot of non-word entries. All i need to select from that column are entries which are valid english characters. I tried this but this does not work:
select a from abctest where not (regexp_instr(a, '[A-Z|a-z]+')= 0);
and a few other variations. But to no avail. Can anyone help out here...
Some of the entries i need removed are like have 'inverted question marks' in them - which might have gotten there due to some encoding issues. But i dont need them in my result. any help would be appreciated.
thanks

Hi,
For DB version below 10g it can be achieved as below
SQL> with data as(
  2      select '143abd' as col from dual union all
  3      select 'abd' as col from dual union all
  4      select 'abd32' as col from dual union all
  5      select 'ab4ed' as col from dual)
  6      select col from data
  7      where nvl(length(translate(upper(col),'*ABCDEFGHIJKLMNOPQRSTUVWXYZ','*')),0)=0;
COL
abd

Similar Messages

  • Select only words with capitals

    If I have data stored in my Database much like this Sentence, with Some words containing uppercase letters and some not, what is the simplest Way to select only those words which contain upperCase letters?
    From the above sentence, for example, I would want to see the result :
    If I Database Sentence Some Way upperCase
    Note that the uppercase letter(s) will not always be at the start of a word.
    Is there a simple way to achieve this? I started dabbling with REGEXP_LIKE, but my regular expressions are pretty hopeless at the best of times :-(

    I've seen more regular expression syntax explanation documents in my time than you've had hot dinners, probably. I'm afraid I still plead complete ignorance and find constructing anything other than the very simplest incredibly difficult, even with the help of various freebie utilities and tools you can download to help you do the job. It's a blind spot I have, and it's not going away any time soon. So yes, I have seen before at least the first of those pages you linked to, but I can't say it's helped me much.
    For the rest, I gave an example of the input and output I'd like to achieve. Your suggestion regarding the lastname column from the EMP table doesn't help in that regard, and even when I translate it into something approaching my actual situation, it doesn't do what I need it to do:
    create table test_t1 (col1 varchar2(4000));
    insert into test_t1 values ('If I have data stored in my Database much like this Sentence, with Some words containing uppercase letters and some not, what is the simplest Way to select only those words which contain upperCase letters?');
    commit;
    SQL> select * from test_t1 where col1 like '^[A-Z]%';
    no rows selectedAlso, you've apparently used the "^" character to indicate that it's the beginning of the string that should be checked for containing an uppercase character, but as I mentioned, my uppercase characters can appear anywhere within the string.
    Anyone else, please?

  • "Only" word in cheque printing

    Hi Friendz
    I need help to print "only" word exact after amount in word in cheque print Layout.
    How we can set it?
    In Indian scenario, we need to print only word on cheque after amount in word.
    this functinality is missing in SAP Business one.
    waiting for reply.
    regards
    kamlesh vagal

    hi,
      what we are doing is concating the amount with only Text field. but if you displayed directly it will show without space between amount and only. So you put another textfield in that put dot and concat the threee fields amount field,dot textfield and  only texfield.
    Concat(amount,text1,text2).
    it will work.
    reg
    r.vijai

  • I need to select to import only low-res jpeg images from my Canon 5D Mk11 camera to an iPad 2 and not RAW images

    I need to select somehow to import only jpeg images from my Canon 5D Mk11 camera to an iPad 2
    I take photographs in both RAW (high quality up to 30Mb file size) and JPEG low quality for use on iPad and Internet. The Raw files I save to a 1Tb Multimedia Storage Viewer and later down load-them to my computer where I process them for high quality prints.
    Using the Camera Kit I can’t find an option to only download jpeg images, and fill the iPad memory with unwanted RAW images. Can you please tell me how to get over this problem?

    Have you checked your "Import" settings for "Raw&Jpeg" pairs in the "Import" panel?
    You can set Aperture to import raw, jpeg, or raw&jpeg.
    If you imported Raw&Jpeg, but have set Aperture to use the Jpeg as original, you will see the imported image as Jpeg image, not as a raw image, even if the raw has also been imported. You can switch between Raw and Jpeg originals for selected images from the Photos menu:
    Photos > Use Raw as original.
    Regards
    Léonie

  • Selecting ONLY those fiels that need metadata written?

    How do I select ONLY those images that need the metadata written? I've got 40,000 images, change a number of keywords for different groups - add, delete, rename, whatever. I DON'T want to have to save metadata for all 40,00 files 'cause LR is already so slow... And doing a save metadata for every group I change is painful 'cause it takes foreve just to update even a few files. I've got the preference turned on to automatically write changes to xmp, but I'm not working with anything that has sidecar files...
    I want to be able to JUST select those images that need the metadata written out, then let it spend all night writing the changes.

    Thanks Lee... But, that doesn't appear to be what I'm seeing. I've got autowrite on (at least as far as I know I do), but I can watch a set of files where I've made changes to keywords and even after all activity has stopped there'll be files with the metadata indicator showing they haven't been synchronized with the disk.... AND, I can go to Bridge and open one of these files and see that the keywords haven't been updated on the disk......
    So, even though I have autowrite on, I can't be SURE the changes actually got written. And last night I selected everything and did a "Save metadata"... Just over 12 HOURS later it was at the 3% completed... This was on a catalog of approximately 35,000 images.
    This is why I'd like to be able to just select those images needing updating. Hopefully, it'd be faster.

  • Clip inspector in imovie not working properly - when I select a picture - and select clip adjustment it tells me that I need to select one or more clips to view Inspector tools and in a clip the audio adjustment only shows a speaker? help

    Clip inspector in imovie not working properly - when I select a picture (in project library) - and select clip adjustment it tells me that I need to select one or more clips to view Inspector tools and when I select a movie clip and then click on audio adjustments the audio adjustment appears as a speaker icon and I don't know how to get to the various audio options? It was working fine one minute and then I seemed to lose the functionality. Also editing a photo in a photo or getting rid of ken burns effect etc does not seem to work. help

    Can anyone shed any light on this as I am having the same problem? One minute it works fine, the next you get the error message above.
    Many thanks.

  • Help with this sql. Select only employees from a distinct Org??

    Hi guys, simple query.
    create table balancetest(emp_id number, balance_id number, balance number, org number);
    insert into balancetest values (111, 1, 1, 0);
    insert into balancetest values (111, 1, 1, 0);
    insert into balancetest values (111, 2, 1, 1);
    insert into balancetest values (222, 1, 2, 1);
    insert into balancetest values (333, 3, 4, 3);
    insert into balancetest values (333, 3, 4, 2);
    commit;
    SQL> select * from balancetest;
        EMP_ID BALANCE_ID    BALANCE        ORG
           111          1          1          0
           111          1          1          0
           111          2          1          1
           222          1          2          1
           333          3          4          3
           333          3          4          2
    6 rows selected.As you can see, emp_id 111 appears on different Org (0 and 1). I need to calculate the balance but the requirement says that I need to retrieve employees appearing only in 1 org.. It won't matter which org is selected (the business rules ensure balance will be the same), as long as if an employee is in multiple org, this employee is selected only once for an org. So, my result will be something like:
        EMP_ID BALANCE_ID    BALANCE        ORG
           111          1          1          0
           111          1          1          0
           222          1          2          1
           333          3          4          3
           333          3          4          2or,
        EMP_ID BALANCE_ID    BALANCE        ORG
           111          2          1          1
           222          1          2          1
           333          3          4          3
           333          3          4          2In other words, an employee must appear only in 1 org in my result.
    any ideas? I tried:
    select * from balancetest bal1
    where not exists ( select bal2.emp_id from
                               balancetest bal2
                               where bal2.emp_id = bal1.emp_id
                               and bal2.org <> bal1.org
                               );But I guess it won't be that simple!!

    Hi,
    You can find the lowest-numbered org for each employee like this:
    SELECT    emp_id
    ,         MIN (org)  AS min_org
    FROM      balancetest
    GROUP BY  emp_id;You can get the results you want by selecting only rows from balancetest that match a row in this the result set above. There are many ways to do that, such as a join:
    WITH  g  AS
        SELECT    emp_id
        ,         MIN (org)  AS min_org
        FROM      balancetest
        GROUP BY  emp_id
    SELECT  b.*
    FROM    balancetest  b
    JOIN                 g  ON  b.emp_id = g.emp_id
                            AND b.org    = g.min_org;

  • Exam deadline: I need to Cross out words in MS.Word

    Exam deadline: I need to Cross out words in MS.Word (not just a line through the word (like this) but an actual X across the word). I am asking because I am writing a paper on Agamben's theory of law of which he writes 'law' where the word is crossed out. PLEASE anyone!?

    zteve87 wrote:
    Hi
    only way I can think of doing this would be to go into the formats menu
    select shapes
    select lines
    draw the lines over the word and adjust the colour and weight until it looks right
    just tried it out and it works ( takes a bit of trial and error to line it up properly through )
    don't think there is an option to adjust the strikethrough format within word
    Seems like a lot of hassle. Having not been told what version of Word is involved I can tell you that using the latest version at least there are two options;
    1. The first is in the Format>Font menu.
    ...and the second is in the menu bar, (it's in mine anyway);

  • I do not want all of the playlists in iTunes to be synced to my iPhone. With iCloud I do not seem to have a choice. How do I select only certain playlists for my iPone?

    I have many songs and playlists in my iTunes account.  I do not want all of them synced to my iPhone 5S, but that has happened via iCloud, and it has caused a storage problem on my phone.  How do I select only certain playlists to be synced to my iPhone? 

    You need to start over with Music. On the iPhone Music screen uncheck sync music. Also, on the Summary screen uncheck "Manually manage music and videos", then sync and it should clear off your phone.
    Next, choose the music you want to sync. If you want to fit more on check "Convert higher bit rate songs to 128 kbps AAC". This will reduce quality slightly, but it won't be noticable unless you are using $300 headphones.

  • Selecting only one row at a time

    Hi experts,
    i have following doubt regarding selecting rows from a db:
    Is there any way of selecting only one row AT A TIME from a dabase just to collect the data in rows instead of in a unique document containing all the rows?
    I would like you to ellaborate on this as i need to send only one row to the IE, and then other row, and so on... without throwing any error!
    I have seen that there are SELECT SINGLE and SELECT UP TO 1 ROW, but these two methods are only useful when retrieving only one row, and that does not match my requirements. I need to process all the rows but one by one..
    I know that we can use the receiver jdbc adapter as if it was a sender by means of its specific datatype, but how to do it row by row??
    Hope i had explained well..
    Thanks in advance and best regards,
    David

    Hi kiran,
    Yes, my table has 5 not null fields but i am selecting and updating fixes values so i think that I will definetely go for the next solution:
    SELECT * FROM t1 WHERE status='0' and ROWNUM<2;
    UPDATE t1 SET status='1' WHERE status='0' and ROWNUM<2;
    My only concern is if the update will take the same row that the select.... BTW, I think it will
    ..What do you guys think?
    I ve been trying to operate with your proposed queries but i received some errors. Your queries are very interesting but i think that with the above ones i meet my requirements as the status field will be 0 for not processed rows and 1 for precessed ones (and the update will look for the row that meets the same 'where' clause than the select, and then, and only then, it will set status='1').
    The only thing i have to care about is what i questioned before.
    Thanks a lot and best regards,
    David

  • Help needed in select query

    Hi,
    I need to select the max time for the transaction using the below query. I’m able to get the o/p. Here the problem is I need to fetch the corrletorid (primary key) as well. if try to get that I’m getting the o/p like case2.
    I want the o/p to be like case 1 with the corrleator id . plz help me to get the o/p.
    Case 1: select b.TransactionName, max(to_char(b.duration, 'mm/dd/yyyy hh24:mi:ss.ff')) as average from trandetails a,subtrandetails b where a.CORRELATORID=b.PCORRELATORID and b.PCORRELATORID='11' group by b.transactionname
    TRANSACTIONNAME MAXTIME
    FINT3 12/10/2007 19:53:09.042000
    FINT 12/10/2007 19:31:07.042000
    FINT2 12/10/2007 19:31:07.042000
    SQL> /
    Case 2: select b.TransactionName,b.correlatorid, max(to_char(b.duration, 'mm/dd/yyyy hh24:mi:ss.ff')) as average from trandetails a,subtrandetails b where a.CORRELATORID=b.PCORRELATORID and b.PCORRELATORID='11' group by b.transactionname,b.correlatorid
    SQL> /
    TRANSACTIONNAME CORRELATORID AVERAGE
    FINT2 102 12/10/2007 19:31:07.042000
    FINT3 108 12/10/2007 19:53:09.042000
    FINT3 103 12/10/2007 19:31:07.042000
    FINT 101 12/10/2007 19:31:07.042000
    in the above output i should have only record(max time) for FINT3.
    Thank

    Sharma,
    Please find the below sample data(insert stmt and create table):
    ======================================
    create table trandetails(
    correlatorid varchar2(20) CONSTRAINT correlatorid_FKey REFERENCES Subtrandetails(correlatorid),
    username varchar2(25) NOT NULL,
    applicationname varchar2(25) NOT NULL,CONSTRAINT composite1_pkey1 PRIMARY KEY(correlatorid ,applicationname));
    create table Subtrandetails(
    correlatorid varchar2(20) PRIMARY KEY,
    PCORRELATORID      varchar2(20),
    TransactionName varchar2(25) NOT NULL,
    Machinename varchar2(15) NOT NULL,
    STARTDATE timestamp NOT NULL,
    ENDDATE timestamp NOT NULL,
    SourceName varchar2(25),
    FunctionName varchar2(25),
    LOC number(5),
    CONTEXTPROPERTY1 varchar2(25),
    CONTEXTPROPERTY2 varchar2(25),
    CONTEXTPROPERTY3 varchar2(25),
    TransactionStatus varchar2(25) NOT NULL CONSTRAINT Transaction1_Status_chk Check (TransactionStatus in ('Success', 'Failure', 'Abort')));
    INSERT INTO trandetails VALUES ('11','FINAPP','ANUAPP1');
    INSERT INTO trandetails VALUES ('13','FINTEST','ANUAPP2');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('10','1','ARM','blrkec95931d','10-DEC-07 03.24.07.042000 PM','10-DEC-07 03.31.07.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('11','1','ARM1','blrkec95931d','10-DEC-07 04.24.07.042000 PM','10-DEC-07 04.31.07.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('12','1','ARM2','blrkec95931d','10-DEC-07 05.24.07.042000 PM','10-DEC-07 05.31.07.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('13','1','ARM3','blrkec95931d','10-DEC-07 06.24.07.042000 PM','10-DEC-07 06.31.07.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('14','1','ARM4','blrkec95931d','10-DEC-07 07.24.07.042000 PM','10-DEC-07 07.31.07.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('101','11','FINT','blrkec95931d','10-DEC-07 07.24.07.042000 PM','10-DEC-07 07.31.07.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('102','11','FINT2','blrkec95931d','10-DEC-07 07.24.07.042000 PM','10-DEC-07 07.31.07.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('103','11','FINT3','blrkec95931d','10-DEC-07 07.24.07.042000 PM','10-DEC-07 07.31.07.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('104','13','SAP1','blrkec95931d','10-DEC-07 07.24.07.042000 PM','10-DEC-07 07.31.07.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('105','13','SAP2','blrkec95931d','10-DEC-07 07.24.07.042000 PM','10-DEC-07 07.31.07.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('106','13','SAP3','blrkec95931d','10-DEC-07 07.24.07.042000 PM','10-DEC-07 07.31.07.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('107','13','SAP2','blrkec95931d','10-DEC-07 07.2.10.042350 PM','10-DEC-07 07.50.10.042050 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('108','11',' FINT3 ','blrkec95931d','10-DEC-07 07.16.07.042000 PM','10-DEC-07 07.53.09.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('109','108','FINT3','blrkec95931d','10-DEC-07 07.20.07.042000 PM','10-DEC-07 07.59.09.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('110','108','FINT3','blrkec95931d','10-DEC-07 07.18.07.042000 PM','10-DEC-07 07.57.09.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('111','108','FINT4','blrkec95931d','10-DEC-07 07.18.07.042000 PM','10-DEC-07 07.57.09.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('112','108','FINT5','blrkec95931d','10-DEC-07 07.18.07.042000 PM','10-DEC-07 07.57.09.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('113','108','FINT6','blrkec95931d','10-DEC-07 07.18.07.042000 PM','10-DEC-07 07.57.09.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('114','108','FINT7','blrkec95931d','10-DEC-07 07.18.07.042000 PM','10-DEC-07 07.57.09.042000 PM','Success');
    ======================================
    Thanks.

  • When i click on my launch pad icon on the dock, and it opens, there are no photo icons only words!! Any body know how to get picture icons back ???

    When i click into my launchpad on my dock, and it opens, there are currently no picture icons only words. How do i get my picture icons back?? plase help

    This procedure will reset the state of LaunchPad to its default. Any customization that you did will be removed.
    Back up all data.
    Triple-click the line below to select it:
    ~/Library/Application Support/Dock
    Right-click or control-click the highlighted line and select
    Services ▹ Open
    from the contextual menu.* A folder should open. Inside it are one or more files with long names ending in ".db". Move those files to the Desktop, leaving the folder open. Log out, log back in, and test. If there's no change, put the files you moved back where they were, overwriting the ones that may have been created in their place. Then log in and log out again. Otherwise, delete the files you moved.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard (command-C). In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • In IE, triple clicking will select an antire paragraph. In Firefox, double-clicking will select a word, but it stops there. Is there a way to get the IE behavior?

    In IE and most Windows apps, double-click will select a word and triple click will select a paragraph. In Firefox on Windows WP, double-click selects a word, but triple click does nothing more.
    Is there some way I can get Firefox to select the paragraph?

    Triple-click still works for me in Firefox 6.0.2.
    Try the Firefox SafeMode. <br />
    ''A troubleshooting mode, which disables most Add-ons.'' <br />
    ''(If you're not using it, switch to the Default Theme.)''
    # You can open the Firefox 4/5/6/7 SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    # Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    If it is good in the Firefox SafeMode, your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • How do you select multiple words using a Magic Trackpad?

    I know how to select multiple words with my mouse, but cannot figure out how to do it using my new Magic Trackpad. Here's the deal:
    Let's say you want to select "cannot figure out how to" in the sentence above. With my mouse, I'd place the cursor somewhere over the word "cannot," double-left-click and keep holding the button down. Then, dragging to the right, it would select each word in its entirety as I moved along the sentence. I do this all the time since it is a very quick way to select text.
    Okay, so how do you do this with the Magic Trackpad?
    I try a similar behavior, but it doesn't work. If I double-tap on "cannot," for example, one of two things happens. Either only the word "cannot" is highlighted and dragging does nothing to highlight more text. Or, if I'm quicker with the drag (aka swipe) right, it will select one character at a time starting from the cursor position when I double-tapped and not entire words, as I want.
    I'm stumped. Anyone?

    Jeffrey,
    The only good way seems to be by using the physical click on the Trackpad. Double physical click then drag. Much the way it's done on the mouse.
    Regards
    Captfred

  • Out of the blue, unable to open Word attachment in Mail with double click. Have to Right click, open with, select Microsoft Word. Am running Snow Leopard and Microsoft Office for Mac 08. Cheers

    Out of the blue, am unable to open Word attachments in Mail with the usual double click. (Get a longwinded error message)
    Need to right click, select open with, and select Microsoft Word. Have been using Microsoft Office for Mac 08 for years.
    I have reinstalled the Office software. A couple of tech people have been unable to fix it. Any suggestion?? debsuemy

    Please re-post in the Office for Mac Product Forums .

Maybe you are looking for

  • Itunes video quality

    Have just recently downloaded a video clip from itunes music store, except the video is jumpy thru out (as in it stops and starts again with a second). Does not happen to any of my other itunes videos. Does anyone have any thoughts/experience with th

  • Call SE38 from ALV list

    hi Experts.. I need your Help.. I am creating one list in which I am displaying list of FORM Userexit Defination according to the program.. Example : program name : MV50AFZ1                 Form Defination : FORM USEREXIT_MOVE_FIELD_TO_LIKP. If I cli

  • Smd agent problem

    I ve got problem with registering agent in solution manager diagnostic. The following message is in the log: registering agent on server...... Exception - Registering agent on server <hostname>:50104 failed Time out occured when calling method 'confi

  • HT1933 couldn't Play songs after purchased.

    When I bought Set Fire to the Rain, I knew you were trouble, Paparazzi, and a few other songs it said on the receipt that the songs were purchased but I couldn't play them!

  • Can't paste from Illustrator to pshop as smart object / pixels

    Whenever I try to copy paste a vector from Illustrator (CS6 64) to Photoshop (CS6 64) I get the following error: I'm on Windows 7 and have my Scratch disks set to non-system drives. Have checked permissions and nothing is Read Only. I can paste as Sh