Split the column into two based on conditions

Hello,
I have 2 tables Country and Continent.
Continent has the data like this
ID               Name
1               Asia
2              Africa
3              North America
4             South America
Country has 
ID                Name                 ContinentID            Population
1                  China                  1                                 2000
2                  India                   1                                 1500
3                  Ethiopia              2                                 7500
4                  United States       3                                5000
I need the count of countries for each continent  break into two columns based on the population. One column showing the count of countries with population <= 2000 and the other column should show the count of countries with population >2000
How can I achieve this?
Please help.
Thank you

Here you go:
DECLARE @continent TABLE (ID INT, Name VARCHAR(30))
INSERT INTO @continent (ID, Name) VALUES (1, 'Asia' ),(2, 'Africa' ),(3, 'North America'),(4, 'South America')
DECLARE @country TABLE (ID INT, Name VARCHAR(30), ContinentID INT, Population INT)
INSERT INTO @country (ID, Name, ContinentID, Population) VALUES (1, 'China', 1, 2000),(2, 'India', 1, 1500),(3, 'Ethiopia', 2, 7500),(4, 'United States', 3, 5000)
SELECT COUNT(*), ct.name
FROM @country c
INNER JOIN @continent ct
ON c.ContinentID = ct.ID
GROUP BY ct.name
and for the high/low:
DECLARE @continent TABLE (ID INT, Name VARCHAR(30))
INSERT INTO @continent (ID, Name) VALUES (1, 'Asia' ),(2, 'Africa' ),(3, 'North America'),(4, 'South America')
DECLARE @country TABLE (ID INT, Name VARCHAR(30), ContinentID INT, Population INT)
INSERT INTO @country (ID, Name, ContinentID, Population) VALUES (1, 'China', 1, 2000),(2, 'India', 1, 1500),(3, 'Ethiopia', 2, 7500),(4, 'United States', 3, 5000)
;WITH popRank AS (
SELECT ROW_NUMBER() OVER (PARTITION BY ct.ID ORDER BY POPULATION DESC) AS row, ct.name AS continentName, c.name AS countryName, c.population, c.ContinentID
FROM @country c
INNER JOIN @continent ct
ON c.ContinentID = ct.ID
SELECT r.countryName AS biggestPopCountry, r.population as biggestPopCount, r1.countryName AS lowestPopCountry, r1.population as lowestPopCount
FROM popRank r
INNER JOIN popRank r1
ON r.ContinentID = r1.ContinentID
AND r1.row = (SELECT MAX(row) FROM popRank WHERE ContinentID = r.ContinentID)
AND r.row = 1

Similar Messages

  • Splitting the Company into Two Entities

    Our company is currently using SAP ECC, SAP SCM and SAP CRM. We have planned to split the company into two to manage the existing two different businesses in separate landscape. (i.e business A & B are operated under one company code). In future state, business A and B will be operated in separate landscapes.
    Has anyone carried out similar company split activities in the past? What are the challenges encountered in such a large transformation program? What are the key points to be considered in such transformation?

    Hi,
    That is one of the approach but it is very time consuming activity. Other thing I can suggest you to do the archiving of the data that is not required in the new landscape and then delete the data based on business process and other scenarios.
    Check below 2 links:
    http://service.sap.com/slo
    SAP Demerger
    Thanks
    Sunny

  • Why is it when i update my status on facebook from iohone it splits the updates into two differents boxes with some funky symbol. I have uninstall facebook and installed it over and it still does it. only the facebook IPHONE app.

    why is it when i update my status on facebook from iphone it splits the updates into two differents boxes with some funky symbols at the beginning.. I have uninstall facebook and installed it over and it still does it. only the facebook IPHONE app where it says to update staus text to FBOOK  i have already update my phone too.
    if i go on the facebook site and update there through a brower on iphone it will work fine just cant us IPHONE mobile upload,  . But its a pain of not using my IPHONE APP for facebook cause it does that.

    The warranty entitles you to complimentary phone support for the first 90 days of ownership.

  • How to split  the records into two parts

    Hi experts,
    I have a field with 75 char length, this field have records also, Now i want to split the field into two differnt fields. That means upto first 40 char goes to one field, from 41st char to 70 char goes to another field, for that how to split record into two parts.
    Plz advice this,
    Mohana

    Hi,
    Do the following:
    f1 = fsource(40).
    f2 = fsource+40(30).
    where fsource is the 70 character original string and target strings are f1 (length 40) and f2 (length 30).
    Cheers,
    Aditya
    Edited by: Aditya Laud on Feb 22, 2008 2:10 AM

  • How do you split a column into two

    I have a huge list of names that ended up in one column. For example it says "John Smith" in one column. How do I put John in one column and smith in another without having to do each one manually?
    Your help is much appreciated. Thank you.

    PeterBreis0807 wrote:
    Copy all the text into TextEdit , Pages or any other texteditor.
    Select all the text and set up tabs on the ruler where you want the 2 columns to appear.
    Search on the space between the "John" and "Smith" and replace it with a tab.
    You can now copy and paste this into a Numbers table and it will fill the appropriate columns.
    And if the entry is John Broadus WATSON you will get an odd result !
    Yvan KOENIG (from FRANCE mercredi 15 juillet 2009 10:57:29)

  • Split a value into two based on VERSION type in ODS

    Hello Gurus,
    I have a field in the cube called AMOUNT. It is plan or actual value based on a field called VERSION in the ODS.
    Can you please tell me how to display two columns in the report (Acutal and Plan columns) from one field called AMOUNT in the cube, based on the VERSION field value in ODS.
    Your responses are highly appreciated,
    Thanks,
    Regards,
    aarthi
    [email protected]

    Hi Diego,
    I don’t have version field in the Cube. It is available only in the ODS. So, how to filter based on VERSION.
    Hi Oscar,
    Is there any way I can access the VERSION value from ODS in the report.
    Thanks
    Regards,
    aarthi
    [email protected]

  • Splitting the timeline into two scenes

    Let me explain, I spent the last week shooting a movie for an English project that's due on Tuesday. I gave myself two days for the editing, because it really shouldn't of been too hard. I still don't think it would've been hard at all if Canon hadn't ****** me over, and made it so i had to save a VRO file. So i spent half the night last night finding a program that could convert VRO into something i could import into after effects. I think I finally found something that converted it into a MPEG file.
    But! When it converted, it compressed all 77 scenes i'd shot into one giant scene. And i didn't shoot in order. So after a bunch of trouble trying to separate the scenes, after 4 hours of not even being able to get it into after effects, i just gave up and went to bed. I really need help, this is the only major grade of the six weeks and if i fail it, I could go to summer school. Plus, i have six other people counting on me.
    Also, i'd like to ask about audio. I think my problem is that Canon (I absolutely hate them after this) saved my audio as some sort of file that most programs cant read. And so, even though i got it into after effects, it cant read the audio. I've tried 0, and 'dot', and just about all the quickfixes i've seen. Does anyone have anything to say about this?
    I'm sorry i typed such a long question, but i'd really appreciate any help you can give me.

    The other problem I see here is that you may not be using the right tool. After Effects is a really great for postproduction / motion design / visual effects, but it's not an editing tool.
    You should really use an NLE (Non Linear Editing) software such as Premiere Pro. It will save you a lot of pain cutting / moving / editing / previewing your movie.
    I know what's done is done, but i put it here for general advice, because you're not the first, and won't be the last, but before shooting with a camera, read the official specs online, google it to see what other thinks about it, so you are sure to select a camera that will give you compatible files with your software.
    I bought the very first AVCHD Sony camera when it was released because i loved the idea of tapeless workflow. That was around the CS3 release. On the Avchd official site i saw an Adobe logo so i bought the camera without any further investigation. I had a hell of a time figuring out how to read/convert and finally import my files inside an NLE (even Sony Vegas wasn't support Avchd at that time...). So now i double check before buying a camera, because i don't want to go through that again. And i'm sure you will do that next time !
    But don't lose hope, there is always a solution.

  • When I down load a CD Itunes seems to split the CD into two or more albums. I get the songs but they sort into multiple albums of the same name.

    I just down loaded Stones "Forty Licks" into iTunes in my computer.
    In Itunes I see 4 albums 2 for disc 1 and 2 for disc 2.
    The songs are spread between the albims so I can't play the entire album at once.
    Ideas on how to better download or on how to resort I tunes to get the songs all on one album.

    Yes ensure that the Album Artist entry is the same for all tracks eg Various Artists or Artist & Friends. Whatever you want just has to be the same

  • How to Split the Frames into two halfs

    Hi,
    In this program i used trees, to display ldif file.. and all the dn's and their properties are displaying but my need is if i click on Nodes then the properties of that node will be displayed seperately ie; the frame had to divided in to two halfs..the properties are displayed in second half
    please help me if anyone knows..
    import java.io.BufferedReader;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.io.IOException;
    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.util.Map;
    import java.util.Set;
    import java.util.StringTokenizer;
    import javax.swing.JPanel;
    import com.sun.org.apache.xpath.internal.patterns.NodeTest;
    import javax.swing.*;
    import javax.swing.tree.DefaultTreeModel;
    import javax.swing.tree.TreeNode;
    import javax.swing.tree.DefaultMutableTreeNode;
    import java.io.StringReader;
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.FileReader;
    public class LDIFTree
    public LDIFTree() throws FileNotFoundException
    FileReader fr;
    fr = new FileReader("c://data.ldif");
    //FileReader fr= new FileReader("c://data.ldif");
    JFrame f = new JFrame("LDIFTree");
    BufferedReader reader = new BufferedReader(fr);
    JTree tree = new JTree(new DefaultTreeModel(buildModel(reader)));
    f.getContentPane().add(new JScrollPane(tree));
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.setSize(400, 400);
    f.setLocationRelativeTo(null);
    f.setVisible(true);
    private TreeNode buildModel(BufferedReader reader)
    DefaultMutableTreeNode root = new DefaultMutableTreeNode("root", true);
    DefaultMutableTreeNode currentChild = null;
    try
    String line = reader.readLine();
    while(line != null)
    line = line.trim();
    if (line.startsWith("dn"))
    // add the current dn to the root
    currentChild = new DefaultMutableTreeNode(line, true);
    root.add(currentChild);
    // else if (line.startsWith("-") || line.length() < 1)
    // { // skip it
    //} else
    // add the property to the current dn
    DefaultMutableTreeNode propertyNode = new DefaultMutableTreeNode(line, false);
    currentChild.add(propertyNode);
    line = reader.readLine();
    catch (IOException x)
    x.printStackTrace();
    return root;
    public static void main(String[] args) throws FileNotFoundException
    new LDIFTree();
    Thanks,
    Raga

    Use a JSplitPane to divide your JFrame
    // tree
    JTree tree = new JTree();
    createTree(tree);
    JScrollPane scrollPane = new JScrollPane(tree);
    // view panel
    JPanel viewPanel = new JPanel();
    // put th etree on th eright, and the view panel on the left
    JSplitPane splitPane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT , scrollPane, viewPanel);
    // create the frame and put the component together
    JFrame frame = new JFrame();
    Container c = frame.getContentPane();
    c.add(splitPane, BorderLayout.CENTER);
    check out the java tutorial on creating a tree. you add a TreeSelectionListener to listen to event generated when the use click on the node
    The Java alamac site has a simple tutorial .. you can start from there.

  • Splitting one column into two columns

    Hi,
    How to create two columns in one column header using JTable swing concept in java.
    Thanks in advance

    [http://forum.java.sun.com/thread.jspa?threadID=488822&messageID=2297054]
    you can use MultiLineHeaderRenderer class for this purpose. search for that class and examples
    sunil

  • Oracle rownum usage for splitting a Table into two equal parts.

    Hi All,
    I have a table which has like 1.2 billion records and i would have to split the table in two parts for my Archiving needs.Unfortunately that table does not have any unique key or primary key or data stamp which i can rely for.
    I would have to use the rownum concept to divide the table.
    I am using the below
    SELECT * FROM (SELECT ENAME, SAL FROM EMP ORDER BY SAL DESC) WHERE ROWNUM < 5000000;
    But the problem is that the table is taking forever to retrieve as it has to do a order by and then retrieve the data as per the where clause.
    The question i have is that instead of using a orderby clause to get the same rownum for the row every time, can i directly rely on the fact that the database is read only and the Rownum would remain same even without oder by clause....
    Thanks....

    WARNING! There is a bug in the code, see EDIT: at bottom of post for details
    Justin,
    It makes sense that Oracle could order over rowid without sorting, but I see a sort in the explain plan:
    SQL> create table t as select 1 as data
      2  from all_objects
      3  where rownum <= 100000;
    Table created.
    SQL> explain plan for select *
      2  from (select t.*, row_number() over (order by rowid) rn from t)
      3  where rn < 50000;
    Explained.
    SQL> select * from table(DBMS_XPLAN.DISPLAY);
    PLAN_TABLE_OUTPUT
    Plan hash value: 327232321
    | Id  | Operation                | Name | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT         |      | 99651 |  2530K|       |   489   (3)| 00:00:07 |
    |*  1 |  VIEW                    |      | 99651 |  2530K|       |   489   (3)| 00:00:07 |
    |*  2 |   WINDOW SORT PUSHED RANK|      | 99651 |  2432K|  7056K|   489   (3)| 00:00:07 |
    |   3 |    TABLE ACCESS FULL     | T    | 99651 |  2432K|       |    31   (7)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - filter("RN"<50000)
       2 - filter(ROW_NUMBER() OVER ( ORDER BY ROWID)<50000)875820,
    What are you doing with the results of the select to archive the table in two pieces? If the archive is in the DB in two seperate tables, multi table insert would be an option:
    SQL> create table archive_1 (data number);
    Table created.
    SQL> create table archive_2 (data number);
    Table created.
    SQL> explain plan for insert when mod(rn, 2) = 0 then into archive_2 (data) values (data)
      2  else into archive_1 (data) values(data)
      3  select rownum as rn, data
      4  from t;
    Explained.
    SQL> select * from table(DBMS_XPLAN.DISPLAY);
    PLAN_TABLE_OUTPUT
    Plan hash value: 828723766
    | Id  | Operation             | Name      | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | INSERT STATEMENT      |           | 99651 |  2530K|    31   (7)| 00:00:01 |
    |   1 |  MULTI-TABLE INSERT   |           |       |       |            |          |
    |   2 |   INTO                | ARCHIVE_2 |       |       |            |          |
    |   3 |   INTO                | ARCHIVE_1 |       |       |            |          |
    |   4 |    VIEW               |           | 99651 |  2530K|    31   (7)| 00:00:01 |
    |   5 |     COUNT             |           |       |       |            |          |
    |   6 |      TABLE ACCESS FULL| T         | 99651 |  1265K|    31   (7)| 00:00:01 |
    SQL> insert when mod(rn, 2) = 0 then into archive_2 (data) values (data)
      2  else into archive_1 (data) values(data)
      3  select rownum as rn, data
      4  from t;
    100000 rows created.Another option would be to use the last digit of rowid to split the table into two groups, but they will not be equal sized.
    SQL> explain plan for select *
      2  from t
      3  where substr(rowid, length(rowid), 1) = upper(substr(rowid, length(rowid), 1))
      4  or substr(rowid, length(rowid), 1) in ('0', '1', '2', '3', '4');
    Explained.
    SQL> select * from table(DBMS_XPLAN.DISPLAY);
    PLAN_TABLE_OUTPUT
    Plan hash value: 2153619298
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      | 59025 |  1441K|    98  (71)| 00:00:02 |
    |*  1 |  TABLE ACCESS FULL| T    | 59025 |  1441K|    98  (71)| 00:00:02 |
    Predicate Information (identified by operation id):
       1 - filter(SUBSTR(ROWIDTOCHAR(ROWID),LENGTH(ROWIDTOCHAR(ROWID)),1)='0
                  ' OR SUBSTR(ROWIDTOCHAR(ROWID),LENGTH(ROWIDTOCHAR(ROWID)),1)='1' OR
                  SUBSTR(ROWIDTOCHAR(ROWID),LENGTH(ROWIDTOCHAR(ROWID)),1)='2' OR
                  SUBSTR(ROWIDTOCHAR(ROWID),LENGTH(ROWIDTOCHAR(ROWID)),1)='3' OR
                  SUBSTR(ROWIDTOCHAR(ROWID),LENGTH(ROWIDTOCHAR(ROWID)),1)='4' OR
                  SUBSTR(ROWIDTOCHAR(ROWID),LENGTH(ROWIDTOCHAR(ROWID)),1)=UPPER(SUBSTR(ROW
                  IDTOCHAR(ROWID),LENGTH(ROWIDTOCHAR(ROWID)),1)))
    Note
       - dynamic sampling used for this statement
    23 rows selected.
    SQL> explain plan for select *
      2  from t
      3  where substr(rowid, length(rowid), 1) <> upper(substr(rowid, length(rowid), 1))
      4  and substr(rowid, length(rowid), 1) not in ('0', '1', '2', '3', '4');
    Explained.
    SQL> select * from table(DBMS_XPLAN.DISPLAY);
    PLAN_TABLE_OUTPUT
    Plan hash value: 2153619298
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      | 40627 |   991K|    41  (30)| 00:00:01 |
    |*  1 |  TABLE ACCESS FULL| T    | 40627 |   991K|    41  (30)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - filter(SUBSTR(ROWIDTOCHAR(ROWID),LENGTH(ROWIDTOCHAR(ROWID)),1)<>'
                  0' AND SUBSTR(ROWIDTOCHAR(ROWID),LENGTH(ROWIDTOCHAR(ROWID)),1)<>'1' AND
                  SUBSTR(ROWIDTOCHAR(ROWID),LENGTH(ROWIDTOCHAR(ROWID)),1)<>'2' AND
                  SUBSTR(ROWIDTOCHAR(ROWID),LENGTH(ROWIDTOCHAR(ROWID)),1)<>'3' AND
                  SUBSTR(ROWIDTOCHAR(ROWID),LENGTH(ROWIDTOCHAR(ROWID)),1)<>'4' AND
                  SUBSTR(ROWIDTOCHAR(ROWID),LENGTH(ROWIDTOCHAR(ROWID)),1)<>UPPER(SUBSTR(RO
                  WIDTOCHAR(ROWID),LENGTH(ROWIDTOCHAR(ROWID)),1)))
    Note
       - dynamic sampling used for this statement
    23 rows selected.
    SQL> select count(*)
      2  from t
      3  where substr(rowid, length(rowid), 1) = upper(substr(rowid, length(rowid), 1))
      4  or substr(rowid, length(rowid), 1) in ('0', '1', '2', '3', '4');
      COUNT(*)
         59242
    SQL> select count(*)
      2  from t
      3  where substr(rowid, length(rowid), 1) <> upper(substr(rowid, length(rowid), 1))
      4  and substr(rowid, length(rowid), 1) not in ('0', '1', '2', '3', '4');
      COUNT(*)
         40758
    EDIT:
    I realized that I screwed up above. In hind sight I don't know what I was thinking. I was attempting to use X = upper(X) to find the upper case characters A-Z. So the two queries to split rows based on the last character of rowid are not right. I don't have time to fix now, but wanted to leave a note of warning.
    Edited by: Shannon Severance on Jul 29, 2011 1:34 AM

  • Help needed with SQL to split huge data into two excel or text files.

    Hi,
    I have a table which has around 1850000 records. I want to split the data into two sets and import the data in .txt or execl file.
    How can i break upthe records using rownum or any thing
    select * from tablename where rownum<940000 fetched some records
    but
    when i gave select * from tablename where rownum>940000 it was not fetching records.
    Guideme

    when i gave select * from tablename where rownum>940000 it was not fetching records.try this
    select * from (select tablename.*, rownum rn from tablename) where rn >940000

  • How to split one monitor into two, differently configured desktops

    Hello,
    I have a 27" iMac. I would like to split the screen into two differently configured desktops or monitors. Apps like TwoUp or Divy don't exactly do this. I'll explain it with an example:
    Suppose I'm working on a document and I need to open many folders to retrieve files. One common problem is that opened folders overlap each other and sometimes they overlap with the document I'm working on, or they go underneath the document. I would like to split the screen vertically in, say, two virtual, independent desktops/monitors, like this:
    - one window/space on one side (say, on the left) of the screen would contain the document  from top to bottom, with no dock bar on the bottom
    - the other window/space (right) would behave as a regular, full desktop, with the entire dock on the bottom
    In this way, if I need to navigate to find a file to use in the document, I would move the cursor to the right. The Finder would work only in this window/space, thus windows or other applications would never overlap or clutter the left side of the screen. Drag-and-drop from right to left should be possible.
    One way to imagine it is as if the 16x9 monitor were comprised by two vertical, 8x9 independent monitors side by side, each with its own configuration.
    Is this possible? Can anyone recommend an application or type of setup?
    Thank you,
    -celso

    Looking for something like this?
    You can tell Display Maid to save the positions of your open windows across many apps and later restore those positions when things become a mess. With Display Maid you don’t have to restore windows one at a time, or even one app at a time. Display Maid restores all saved window positions across all apps with one command. It will also restore window positions automatically when it detects a workspace change.
    http://www.funk-isoft.com/index.php/display-maid

  • I want to spit cell the value into two separate columns like f_name & l_nam

    Hi Guys,
    I have excel data in one cell with ',' separated data.
    sample data:
    empno ename
    121 ravi,kann
    232 ram,raman
    here ename value in one provided in one cell.
    Now i want to spit cell the value into two separate columns like first_name and last_name?
    Thanks in advance
    -LK

    with sample_data as
      select 121 empno, 'ravi,kann' ename from dual union all
      select 232 empno, 'ram,raman' from dual
    select empno,
           substr(ename,1,instr(ename,',')-1) first_name,
           substr(ename,instr(ename,',')+1) last_name
    from sample_data;       or with regular expressions:
    with sample_data as
      select 121 empno, 'ravi,kann' ename from dual union all
      select 232 empno, 'ram,raman' from dual
    select empno,
           regexp_substr(ename,'^[^,]*') first_name,
           regexp_substr(ename,'[^,]*$') last_name
    from sample_data; Edited by: hm on 04.07.2012 06:22

  • Need to split the output into files

    Hi,
    I have a query regarding splitting the output into different files. Please help to resolve that.
    I have have select query query...
    SELECT INDEX_NAME FROM DBA_INDEXES WHERE TABLE_NAME=<Table Name>;
    If it returns less than 4 indexes then we have create one table and have to move those into the files.
    For example...
    File_1.sql
    ====
    index1
    index2
    index3
    If select statement returns more than 4 indexes then we have create 4 files and have to splict those indexes and has to move to those 4 files.
    For example....
    If select statement returns 13 records then...
    File_1.sql File_2.sql File_3.sql File_4.sql
    ===== ====== ======= =======
    index1 index4 index7 index10
    index2 index5 index8 index11
    index3 index6 index9 index12
    index13
    Index no need to be in order in any file and any file can I extra index in it.
    Can be ok if we have any procedure or shell script. Please help me on this?
    We are using 10.2.0.1 oracle db. Please let me know if you need any thing else?
    Thanks
    Pathan

    Are you trying to put the output from SQL reports in different files?
    Some reporting tools can do this.
    You have a couple of options to do this.
    Some reporting tools support the functinality to write to different files.
    Another way is to write a PL/SQL procedure using UTL_FILE, which can open multiple files based on your conditions and to write to them as you need to.
    An older, less elegant solution is to write nested SQL*PLUS scripts spooling to different files with the queries you need. A top level script would invoke the others, something like (untested)
    --in first script
    @subscript1
    @subscript2
    --in subscript1.sql
    spool whatever.lst
    select *
       from dual;
    ...

Maybe you are looking for

  • Crystal Reports 10 - Java. Error when displaying report

    <p>HI....</p><p>When attemping to display a report, i'm getting the following error:</p><p><strong> java.lang.ExceptionInInitializerError<br /> com.crystaldecisions.reports.reportengineinterface.JPEReportSourceFactory.createReportSource(Unknown Sourc

  • Safari will put a "%20" in the names of downloaded files

    When I download a file, the name of file has "%20" instead of a space. How do I change this? Thanks

  • PHD Sync stopped working - "SyncSet name in use"

    I've started using PHD successfully yesterday and today it stopped working. The tool bar control says that the "Home Never Synced" Any suggestion on how to get it to start the sync process again? Here is my log file: 1:: [10/10/29 10:51:32.143] _inco

  • Problem with reverting back

    Once I regress from 7.0 back to 6.0 I get the following message: "The Software for communicationg with the iPod is not installed correctly. Please reinstall iTunes to install the iPod software." I have the ipod updater from 06-28-2006 and when I laun

  • Workflow calling original class instead of my custom class.

    Hi, I have customized a class and using its method for a task in the workflow. When I test the workflow its still calling the original class method and saying that a parameter is not defined there (the one am passing from workflow via binding). What