Replacing multiple spaces with a single space

Hi friends,
I have a string. It can have zero/one/multiple spaces. I want to make the multiple spaces to single space.
Here are the cases:
1. ' a b c d efg h' should be changed to 'a b c d e f g h'
2. ' a b c d e f g h ' should be changed to 'a b c d e f g h'
3. 'a b c d e f g h' should not be changed
4. 'abcdefgh' should not be changed
Both REPLACE and TRANSLATE do not help. I don't want to go for LOOP logic. Please help me to get it in SQL query.
Thanks in advance!

Hi,
964559 wrote:
Hi friends,
I have a string. It can have zero/one/multiple spaces. I want to make the multiple spaces to single space.
Here are the cases:
1. ' a b c d efg h' should be changed to 'a b c d e f g h'One solution is to post your string on this site, and then copy it back again. (See below for a more serious solution .)
This site is doing exactly what you want the function to do: it replaces multiple consecutive spaces with a single space. As a result, it's hard to see what you mean.
To preserve spacing on this site, type these 6 characters
\(small letters only, inside curly brackets) before and after each section where you want spacing preserved.
2. ' a b c d e f g h ' should be changed to 'a b c d e f g h'
3. 'a b c d e f g h' should not be changed
4. 'abcdefgh' should not be changed
Both REPLACE and TRANSLATE do not help. I don't want to go for LOOP logic. Please help me to get it in SQL query.
Thanks in advance!Regular expressions make this easy:SELECT TRIM ( REGEXP_REPLACE ( str
, ' +'
) AS compressed_str
FROM table_x;
You can use nested REPLACE calls to get the same results, but it's messy.
Edited by: Frank Kulash on Feb 5, 2013 10:18 AM
Added TRIM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Similar Messages

  • How do I replace multiple consecutive spaces with a single space?

    I need to convert any occurrence of multiple consecutive spaces in a string to a single space. How do I create the regex pattern to do that?

    r9973 wrote:
    Sorry, more like: String test = "Some        Text       Here"Want to convert to String test = "Some Text Here"
    Post the code that you used to test the regex. I just tried it and it worked fine for me. All you need to do is apply the regex replaceall to your string variable that holds the string
    String test = "Some        Text       Here";
    test = test.replaceAll(" +", " ");
    System.out.println(test);And thats it.

  • Replace multiple space characters with a single space

    Hi,
    Oracle 11g R2.
    Looking for a way to replace multiple space characters in a row with a single space. For example, the text "abc abc" should look like "abc abc". I tried toying with replace, but it only works for the case of 2 spaces. Need a solution for the cases where there could be 2 or more spaces.
    select replace(column1, chr(32)||chr(32), chr(32)) from tablea

    Hi,
    If you had to do this without regular expressions, you could use:
    SELECT  REPLACE ( REPLACE ( REPLACE (str, ' ', '~ ')
                     , ' ~'
              , '~ '
              )     AS new_str
    FROM    table_x;assuming there is some sub-string (I used '~' above) that never occurs right next to a space.
    However, unless you're uisng Oracle 9 (or earlier, which you're not doing) you don't have to do this without regular expressions. As you can see, the way Solomon showed is much simpler.

  • Select or deselect multiple rows with one single selection  event

    Does anyone know how to create a JTable which can select or deselect multiple rows with one single selection event in JTable. Fore example, if the table has
    row1
    row2
    row3
    row4
    row5
    row6
    What I need is when user select row1 or row2, both row1 and row2 should be set to be selected. Then if user press CTRL and click one of row3 or row4, both of them should be selected including the previouse selected row1 and row2.
    For deselection, if row1 and row2 are selected, when users deselect one of row1 or row2, both of them should be deselected.
    Hopefully someone can give me a hint.

    Here is a partial solution using a JList. Only one line gets highlighted when the user makes a selection in the list. But, two lines are returned. There is a blank line between every two lines.
         private void addLineToList() {
              String a = f_one.getText();
              String b = f_two.getText();
              if (a.length() == 0) {
                   Utils.showInformationMessage("Item field is empty.");
                   f_one.requestFocusInWindow();
                   return;
              if (b.length() == 0) {
                   Utils.showInformationMessage("Match field is empty.");
                   f_two.requestFocusInWindow();
                   return;
              model.addElement("item: " + a);
              model.addElement("match: " + b);
              model.addElement(" ");
              int size = model.getSize();
              pairList.setSelectedIndex(size - 3);
              f_one.setText("");
              f_two.setText("");
              f_one.requestFocusInWindow();
         private void editList() {
              if (pairList.getSelectedValue().toString().equalsIgnoreCase(" ")) {
                   Toolkit.getDefaultToolkit().beep();
                   f_one.requestFocusInWindow();
                   return;
              if (!f_one.getText().equals("")) {
                   int result = JOptionPane.showConfirmDialog(this,
                   "The Item field contains text. Replace the text?",
                   "Flash Card Activity", JOptionPane.YES_NO_OPTION,
                   OptionPane.INFORMATION_MESSAGE);
                   if (result == JOptionPane.NO_OPTION) return;
              if (!f_two.getText().equals("")) {
                   int result = JOptionPane.showConfirmDialog(this,
                   "The Match field contains text. Replace the text?",
                   "Flash Card Activity", JOptionPane.YES_NO_OPTION,
                   JOptionPane.INFORMATION_MESSAGE);
                   if (result == JOptionPane.NO_OPTION) return;
              String item = "";
              String match = "";
              int index = pairList.getSelectedIndex();
              String choice = model.getElementAt(index).toString();
              if (choice.startsWith("item")) {
                   item = choice;
                   match = model.getElementAt(index + 1).toString();
                   model.remove(index);
                   model.remove(index);
                   model.remove(index);
              else {
                   item = model.getElementAt(index - 1).toString();
                   match = choice;
                   model.remove(index + 1);
                   model.remove(index);
                   model.remove(index - 1);
              int size = model.getSize();
              if (size > 2) {
                   pairList.setSelectedIndex(size - 2);
              f_one.setText(item.substring(6));
              f_two.setText(match.substring(7));
              f_one.requestFocusInWindow();
         }

  • Help Needed - replacing space with non-breaking space on the fly

    Hi,
    I have a text field I'm trying to fiddle the input on. Basically I want to replace all spaces (ascii code 32) with non-breaking spaces (ascii code 160) as they are typed.
    It seemed as though a KeyListener was the way to go, and I've successfully detected whenever a space is sent. I can consume() that KeyEvent, or setKeyChar to change it to another key. But I cannot see how to change it to a non-keyboard character.
    Any suggestions?

    i think you can do smt likeDocument doc = mySwingTextComponent.getDocument();
    doc.setDocumentFilter(new MyDocumentFilter());
    class MyDocumentFilter extends DocumentFilter {
       public void remove(DocumentFilter.FilterBypass fb, int offset, int length) throws BadLocationException {
          fb.remove(offset,length);
       public void insertString(DocumentFilter.FilterBypass fb, int offset, String string, AttributeSet attr) throws BadLocationException {
          replace(fb,offset,0,string,attr);
       public void replace(DocumentFilter.FilterBypass fb, int offset, int length, String text, AttributeSet attrs) throws BadLocationException {
          text.replaceAll("SPACE","NB WHITE SPACE");
    }asjf
    http://java.sun.com/j2se/1.4.2/docs/api/javax/swing/text/DocumentFilter.html

  • How to replace double quotes with a single quote in a string ?

    Hi All:
    Can some one tell me how to replace double Quote (") in a string with a single quote (') ? I tried to use REPLACE function, but I couldn;t get it worked.
    My example is SELECT REPLACE('STN. "A"', '"', ''') FROM Dual --This one throws an error
    Thanks,
    Dima.

    Whether it is maybe not the more comfortable way, I like the quoting capabitlity from 10g :
    SQL> SELECT REPLACE('STN. "A"', '"', q'(')') FROM Dual;
    REPLACE(
    STN. 'A'{code}
    Nicoals.                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to insert multiple records with a single query?

    Hi,
    I've to save a huge number of installments with their other information such as due on blah blah. Now, I want to add the all of these information at once with a single insert query.
    How can I do that?

    Hi
    What is your source data?
    If the source is external to the SQL Server (like a log file, Excel, CSV, JSON, XML, external application...) you can and should insert it all using Bulk Insert operation.
    Pls clarify what is your source data, and if you need more help using Bulk Insert.
    https://www.simple-talk.com/sql/learn-sql-server/bulk-inserts-via-tsql-in-sql-server/
    http://msdn.microsoft.com/en-us/library/ms188365.aspx
    [Personal Site] [Blog] [Facebook]

  • What is best way to manage multiple projects with limited HD space?

    I am running Premiere Elements 3 on a HP desktop with a 250 GB hard drive.  I also have a 500 GB external HD attached.  The main desktop HD is filled up with programs, photos, and current video projects for PE 3.  PE seems to work best when it can access files from the internal HD and not have to access them from an external HD.  Since I have many video projects going now, I cannot keep all the clips on the desktop HD so have put them on the external HD.  I used to keep just backups on the external HD, but now have to keep some of the original copies of clips and projects as well.  So when running PE3 I have to copy things back and forth to the desktop computer HD so I can run it without it needing to access the external HD.  This takes alot of time.
    Is there a better way to do things?  What is the best strategy for running PE when HD space on your computer is limited?  Do I need to free up much more of my 250 GB internal HD space so I can run all current projects from there?  And what is the best strategy for backing up my clips and projects.  Multiple external HDs?  Thanks for any advice on file and project management.

    First, welcome to the forum.
    I do just as Steve suggests, though for slightly different reasons. I need each Project to be portable between my laptop and my workstation. I have a couple dozen 1 - 2TB FW-800 external 7200RPM HDD's, so each Project goes onto one of these. Obviously with the size, I can group several normal Projects onto the same external.
    In my case, most of my Assets are stored on a NAS drive, and I will copy these over to the appropriate Project folder structure on the externals. If I have done Capture, those files will be in the Project's folder structure too. My stock stuff is always a copy, as will be my still images. Each Project has a root folder with its name and then appropriate sub-folders, i.e. Stills, Music, etc. below that root folder. All stays together.
    One trick for my case is that each external has the same exact drive letter assignment in the OS of each of my computers, so that external Z:\ is Z:\ on all computers. This must be done at the OS-level for all computers. I use labels on each external, so I know that I have Z:\, or Y:\ plugged in.
    For editing, this is not the most efficient way to handle Projects, or Assets. In a perfect world, one would have their OS and programs on C:\, their media on a RAID 0 D:\, their Projects and Scratch Disks on E:\, their Exports on F:\ and maybe their audio on another RAID 0 G:\. All original Assets would be backed up to maybe a NAS unit. This would give the greatest efficiencey, but would kill my portability. I pay a price in efficiency, so that I can spend much of the day by the pool on the laptop and then move the complete Project, along with all copies of all Assets and Scratch Disks upstairs to the editing suite. The workstation is setup like my ideal, but if I have a Project on it (using all of the resources of that machine and it's multiple HDD's), I cannot easily move down to the laptop - so I sacrifice the speed for the portability.
    One comment on using externals: FW-800 works fine for me. All of my newer external HDD's have that connection and each computer has either a FW-800 card, or ExpressCard. The use of eSATA would be even better, but I have a major investment in FW-800, so I have to consider that legacy. Someday, they'll all be eSATA, or whatever comes next. I found that FW-400 was too slow for me, so I relegated those older externals to just archive. Years ago, I tried USB externals, but found that I have problems with them, plus the connection speed was painfully slow. I gave up completely on those. I do not think that I have any USB only externals left. Goodwill got them all. I also tried to edit to/from my gigabit NAS and gave up on that because of the speed. It now is a storage unit for stock Assets that are copied over to the Project folders.
    If you have USB externals, give them a try. Just be a bit careful, especially if you have a faster computer, as that connection can cause problems if the data stream gets too big and too fast for the connection. Things will definitely go wrong at some point in a read/write cycle. Be very careful and keep copies of all irreplaceable Assets and also your Project files. Little is worse than having something get corrupted because the USB connection could not keep up. I've even had overloaded USB's shut down the entire system in a BSOD. Not very comforting, when you just completed 6 hours of editing!
    Good luck, and hope that some of this helps,
    Hunt

  • Replacing multiple nodes with single node in OSB

    Hi,
    I have a case where I will get a xml like below:
    <LINEITEMS>
         <LINE_ITEM>
              <LINE_ITEMNO>1</LINE_ITEMNO>
              <STATUS_CODE>0</STATUS_CODE>
              <MESSAGE>MESSAGE1</MESSAGE>
         </LINE_ITEM>
         <LINE_ITEM>
              <LINE_ITEMNO>3</LINE_ITEMNO>
              <STATUS_CODE>0</STATUS_CODE>
              <MESSAGE>MESSAGE3</MESSAGE>
         </LINE_ITEM>
         <LINE_ITEM>
              <LINE_ITEMNO>1</LINE_ITEMNO>
              <STATUS_CODE>0</STATUS_CODE>
              <MESSAGE>MESSAGE2</MESSAGE>
         </LINE_ITEM>
         <LINE_ITEM>
              <LINE_ITEMNO>3</LINE_ITEMNO>
              <STATUS_CODE>0</STATUS_CODE>
              <MESSAGE>MESSAGE4</MESSAGE>
         </LINE_ITEM>
    <LINE_ITEM>
              <LINE_ITEMNO>2</LINE_ITEMNO>
              <STATUS_CODE>1</STATUS_CODE>
              <MESSAGE>MESSAGE5</MESSAGE>
         </LINE_ITEM>
    </LINEITEMS>
    I need to make this as below:
    <LINEITEMS>
         <LINE_ITEM>
              <LINE_ITEMNO>1</LINE_ITEMNO>
              <STATUS_CODE>0</STATUS_CODE>
              <MESSAGE>MESSAGE1;MESSAGE2</MESSAGE>
         </LINE_ITEM>
         <LINE_ITEM>
              <LINE_ITEMNO>3</LINE_ITEMNO>
              <STATUS_CODE>0</STATUS_CODE>
              <MESSAGE>MESSAGE3;MESSAGE4</MESSAGE>
         </LINE_ITEM>
    <LINE_ITEM>
              <LINE_ITEMNO>2</LINE_ITEMNO>
              <STATUS_CODE>1</STATUS_CODE>
              <MESSAGE>MESSAGE5</MESSAGE>
         </LINE_ITEM>
    </LINEITEMS>
    I need to have only one entry for each line Item.
    Please let me know on the approach on how to do it in OSB.
    Thanks

    You can try this :-
    let $out:= <LINEITEMS>{ for $x in 1 to count($input/LINE_ITEM)
                                  let $LineItme := $input/LINE_ITEM[$x]/LINE_ITEMNO
                             let $match:= for $y in $x to count($input/LINE_ITEM)
                                  where $input/LINE_ITEM[$y]/LINE_ITEMNO= $LineItme
                                  return $input/LINE_ITEM[$y]/MESSAGE
                                  return
                                  <LINE_ITEM>
                                       <LINE_ITEMNO>{$LineItme/text()}</LINE_ITEMNO>
                                       <STATUS_CODE>{data($input/LINE_ITEM[$x]/STATUS_CODE)}</STATUS_CODE>
                                       <MESSAGE>{fn:data($match)}</MESSAGE>
                                  </LINE_ITEM>
    }</LINEITEMS>
    return $out
    You many then have to remove duplicates with line items. use fn:distinct() and then loop through.

  • SCCM 2012 Multiple Domains with a single SCCM instance

    Hello:
    Can SCCM 2012 be deployed to multiple untrusted domains within a single install?
    I work for a company that maintains multiple client networks all Windows Domain and non are trusted / or are even aware of the other sites.
    I would like to setup a SCCM 2012 (and also a Virtual Machine Manager for HyperV) at my office and manage all my different client sites from the single SCCM server.
    The connection would be from my office over the Internet in through their on prem firewall
    Currently we use Centra Stage and have used Kaseya in the past. I am looking to move from them and focus on SCCM to do this for me.
    Is this even possible to do with the product?
    Thanks in Advance!
    -David

    Yes, ConfigMgr can manage (un)trusted forests, but what exactly do you mean with "not aware of the other sites"? A requirement is that name resolution and a connection is possible.
    For some good scenario's see also this series:
    http://blogs.technet.com/b/neilp/archive/2012/08/20/cross-forest-support-in-system-center-2012-configuration-manager-part-1.aspx
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude

  • Multiple Domains with one single Portal

    We have installed Oracle Infrastructure and Oracle Midtier on one box. Let's say the domain name is http://www.abc.com. When we query http://www.abc.com, it
    goes to the SSO (Infra) and validates the username and password and takes it back to the Mid-Tier Portal Pages. At this junction, everything is working as expected.
    Now, we created two more webpages and they correspond to two domains -- let's say http://www.pqr.com and http://www.xyz.com. The two webpages that got created were PUBLIC pages, so anybody can have access to those pages.
    Can we implement our requirements using one infrastructure and one midtier (1st)installation? OR do we install two more midtier (2nd, 3rd) to correspond
    to each domain name which are www.pqr.com and www.xyz.com and then have the proxy server redirect the request for www.abc.com to 1st-Midtier, www.pqr.com
    to 2nd-Midtier and www.xyz.com to 3rd-Midtier?
    We have a apache proxy server installed in front of the 9iAS, but we are going to use it just for redirection.
    I understand Oracle Infrastructure has only ONE portal Schema and so how would multiple midtier (webpages) will reside? Do I need to create another PORTAL repository and a new DAD, so that www.pqr.com points to the 2nd-Portal Repository and www.xyz.com points to the 3rd-portal?

    Through a single mid-tier it is possible to configure Oracle HTTP Server/Web Cache such that they are configured to handle multiple logical site names (e.g. www.pqr.com and www.xyz.com) by using Virtual Hosts.
    In terms of a single Portal Repository being accessed by multiple mid-tiers (or logical sites), this is not currently possible since the Portal Repository is configured with only one set of site details.
    For further information on configuring Virtual Hosts and Portal see the Advanced Chapter of the 10g Portal configuration guide...
    http://download-west.oracle.com/docs/cd/B10464_01/portal.904/b10356/cg_advnc.htm#1040267

  • Opening multiple files with a single click?

    I have searched this topic here and online elsewhere, but haven't gotten an answer.
    I teach English, and I download multiple student documents to grade. I want to just open all of them and go through one at a time quickly... like a stack of papers on my desk.
    I swear to goodness that I used to be able to select a folder full o' files and bam... they would all open in whatever app they were intended to open in. However, now I'm having trouble with this.
    I have a series of items... some are .doc some are .docx and some are .txt
    When I select all of them, only one .docx opens (and it opens in Pages because I have trained it to do this.)
    If I select all the .txts they all open in textedit like they should. But I can't get the stupid MS Word docs to do the same. I am not sure whether to blame Apple yet.
    I have tried Open With... Word, Pages, etc. but only one document opens at a time. What am I missing? I just did a perm repair and software update... nothing new under the sun.
    Any ides? Please? Thanks!

    There are a few ways you can open them:
    1) Select all of the files and under the File menu select "Open"
    2) Select all of the files and use the shortcut for open, which is command-O
    3) Select all of the files and drag them to the dock icon of the app you want to open them with
    You need to do these actions with the files selected and not the folder that they are in. To quickly select all items in a folder, click one of them and hit command-A (shortcut for "select all")

  • How to export multiple albums with a single export??

    If there's a way to do this, I haven't been able to figure it out...
    If I have a project that contains X number of albums, is there a way to do a single export of the project/albums so that the exported jpgs are automatically put into folders that have the same names as the albums? As opposed to having to go to each album one at a time, create a folder with the same name as the album, and export the images it contains, then repeat for the next album.
    Hope I'm being clear the way I explained it...thanks for any tips,
    -Nelson

    Hi
    What is your source data?
    If the source is external to the SQL Server (like a log file, Excel, CSV, JSON, XML, external application...) you can and should insert it all using Bulk Insert operation.
    Pls clarify what is your source data, and if you need more help using Bulk Insert.
    https://www.simple-talk.com/sql/learn-sql-server/bulk-inserts-via-tsql-in-sql-server/
    http://msdn.microsoft.com/en-us/library/ms188365.aspx
    [Personal Site] [Blog] [Facebook]

  • How do I install lion to multiple macs with a single download from the Mac App Store?

    I want to upgrade multiple Macs, but I don't want to download the update multiple times.
    Has Apple posted instructions on this?  My searches have been in vain.
    Bob

    Upgrading to OS X 10.7 FAQ
    Backup your user files and folders manually (drag and drop) from all partitions/OS's installed to a external powered drive and disconnect this drive, before proceeding in addition to TimeMachine, Bootable Clones etc.
    You need to make sure you're running the latest version of Snow Leopard10.6.8
    Click the "Apple" symbol in the top left corner of your screen and select "About This Mac."
    Make sure you're running version 10.6.8.
    If not, click "Software Update" from the same Apple menu and update your system.
    Then when that's finished launch the MacAppStore from the same menu.
    You'll see the giant Lion banner across the top. Click on it.
    This brings you to the app page for Lion. It costs $29.99 -- click the price, then click "Buy App."
    Free Lion? check here
    http://www.apple.com/macosx/uptodate/
    You'll be prompted to sign in with your iTunes ID. After that, yourdownload / upgrade begins.
    BackupLion
    http://www.eggfreckles.net/tech/burning-a-lion-boot-disc/
    http://eggfreckles.net/tech/installing-lion-clean/
    Check Apple's license details throughly before usingorinstalling Lion.
    This is what binds you legally, notwhat users say or sites suggest you can do.
    Other Lion FAQ's answered.
    No"Rosetta" sorry. 
    Someof your older programs (like Appleworks) that depend upon it will notwork.
    OS X Lion cannot be installed on these Macs:
    1:Any PowerPC processor Mac (G3, G4, G5)
    2:Any Intel Mac on this list:
    iMac4,1Early(Jan-Sept) 2006 17"
    iMac4,1Early(Jan-Sept) 2006 20"
    iMac4,2Mid(July-Sept) 2006 17"
    MacMini1,1(Feb-Sept) Early 2006
    MacMini1,1(Sept-Aug) Late 2006
    MacBook1,113"(May-Nov 2006)
    MacBookPro1,115" A1150 (Jan-May 2006)
    MacBookPro1,217" A1151 (Aprl-Oct 2006)
    MacBookPro1,115" A1175 (May-Oct 2006)
    Look under the Apple Menu > About this Mac > More information for you rmachine details.
    (there are reports of hacking Lion to work on 32 bit Intel Core DuoMac's, it's unsupported by Apple and not advised)
    Didn't get Lion?
    These are user to user support forums and Apple doesn't respond here,
    We users can't speak for Apple about your free Lion status or problems downloading, reissuing a download.
    It's possible Apple could be spacing out the downloads as not to knock theservers offline. So be patient.
    If after a week or so when the initial rush is over, and you still haven't gotten your Lion, I suggest you contact Apple.
    Mission critical
    If your using Mac's in a mission critical type environment or have third party hardware or software you must rely upon working correctly. It's advised to wait until all the bugs, driver updates, third party software and other issues are resolved before upgrading. This might take several months. Then if you do so, do one machine at a time andcarefully test everything before full deployment.

  • Handling multiple exceptions with a single catch block

    In the following code:
    try{
    catch (NumberFormatException a) {
    catch (UserDefinedException b) {
    The code for both catch blocks are identical. Is there no way I can combine these into one block?
    For example, could I not do:
    catch ( (NumberFormatException a) || (UserDefinedException b) ){
    or anything similar?
    I did think of:
    try{
    try{
    catch (NumberFormatException a) {
    throw new UserDefinedException("");
    catch (UserDefinedException b){
    but this just seems to be a waste of code. Any ideas?

    I would use the fundamental way to combine identical sections of code--put the code in a new method:
        try {
        catch (NumberFormatException a) {
          myExceptionHandlingMethod(a);
        catch (UserDefinedException b) {
          myExceptionHandlingMethod(b);
      private void myExceptionHandlingMethod(Throwable t) {
      }

Maybe you are looking for

  • How to view broadcast tv on Touchsmart with internal tuner

    I would like to watch digital over-the-air tv on my Touchsmart420 using the built-in ATSC tuner. I have connected a tv antenna to the computer. In Media Center I get a message saying that no tv signal is detected. Do I need a special kind of tv anten

  • How do I share a custom PDF export setting?

    I have a PDF export setting that I use for a specific printer in my shop and I want to provide it to a customer. I'm on a Mac running Maverick (OSX 10.9.4) Where does the setting file live and how does my customer install it? thanks

  • 3D shapes black, too dark (Adobe solution doesn't work)

    I am experiencing the problem in CS6 described here: http://helpx.adobe.com/photoshop/kb/3d-shapes-black-or-dark.html However, the file provided by Adobe as a solution is an empty text file. Is this a mistake? I followed the instructions but it did n

  • Mixing FireWire 400 with FireWire 800

    How do I connect FireWire 400 Peripherals and FireWire 800 Peripherals to the single FireWire 800 port and preserve the FireWire 800 speed to the computer for the Firewire 800 Peripherals? (Obviously, the 400 speed peripherals cona only send and rece

  • Exception Handling Concept Gone Bad!!

    Okay, this is by far the most embarrassing hack of code I've done thus far . . . but it works. I am trying to run a select where if there is no data or null returned, place it into the value "v_pidm', and then let the action occur. Simple enough, rig