Count() doesn't display 0 values

Hi everyone, how to display 0 values from query:
SELECT TO_CHAR(first_time,'DD-MON-YY:HH24') DAY, COUNT(TO_CHAR(first_time,'MM-DD-YY HH24')) Switches_per_hour
  FROM v$log_history
  WHERE TRUNC(first_time) BETWEEN TRUNC(sysdate) - 6 AND TRUNC(sysdate)
  GROUP BY TO_CHAR(first_time,'DD-MON-YY:HH24')
  ORDER BY TO_CHAR(first_time,'DD-MON-YY:HH24');

Similar query (doing the same in different way) displays 0 values
SELECT TO_CHAR(first_time,'DD-MON') DAY,
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'00',1,0)) "00",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'01',1,0)) "01",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'02',1,0)) "02",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'03',1,0)) "03",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'04',1,0)) "04",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'05',1,0)) "05",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'06',1,0)) "06",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'07',1,0)) "07",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'08',1,0)) "08",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'09',1,0)) "09",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'10',1,0)) "10",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'11',1,0)) "11",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'12',1,0)) "12",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'13',1,0)) "13",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'14',1,0)) "14",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'15',1,0)) "15",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'16',1,0)) "16",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'17',1,0)) "17",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'18',1,0)) "18",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'19',1,0)) "19",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'20',1,0)) "20",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'21',1,0)) "21",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'22',1,0)) "22",
  SUM(DECODE(TO_CHAR(first_time,'hh24'),'23',1,0)) "23",
  COUNT(TO_CHAR(first_time,'MM-DD')) Switches_per_day
FROM v$log_history
WHERE TRUNC(first_time) BETWEEN TRUNC(sysdate) - 6 AND TRUNC(sysdate)
GROUP BY TO_CHAR(first_time,'DD-MON')
ORDER BY TO_CHAR(first_time,'DD-MON') ; Anyone?

Similar Messages

  • Column count doesn't match value count at row 1, unknown number of columns

    Hi,
    I am making a program to read data from excel files as the above and store them in tables. I have managed to read all the data from excel files as a string and store them in a table.
    ID Name Salary
    50 christine 2349000
    43 paulina 1245874
    54 laura 4587894
    23 efi 3456457
    43 jim 4512878
    But in my project I have several other files that have same cell that are blank as the above example
    ID Name Salary
    50 christine 2349000
    43 paulina
    laura 4587894
    23 3456457
    43 jim 4512878
    and when i ran the same program i get this exception :
    SQLException: Column count doesn't match value count at row 1
    SQLState: 21S01
    VendorError: 1136The code for creating the table and inserting the values is above:
    private static String getCreateTable(Connection con, String tablename,
                        LinkedHashMap<String, Integer> tableFields) {
                   Iterator iter = tableFields.keySet().iterator();
                   Iterator cells = tableFields.keySet().iterator();
                   String str = "";
                   String[] allFields = new String[tableFields.size()];
                   int i = 0;
                   while (iter.hasNext()) {
                        String fieldName = (String) iter.next();
                        Integer fieldType = (Integer) tableFields.get(fieldName);
                        switch (fieldType) {
                        case Cell.CELL_TYPE_NUMERIC:
                             str = fieldName + " INTEGER";
                             break;
                        case Cell.CELL_TYPE_STRING:
                             str = fieldName + " VARCHAR(255)";
                             break;
                        case Cell.CELL_TYPE_BOOLEAN:
                             str = fieldName + " INTEGER";
                             break;
                        default:
                             str = "";
                             break;
                        allFields[i++] = str;
                   try {
                        Statement stmt = con.createStatement();
                        try {
                             String all = org.apache.commons.lang3.StringUtils.join(
                                       allFields, ",");
                             String createTableStr = "CREATE TABLE IF NOT EXISTS "
                                       + tablename + " ( " + all + ")";
                             System.out.println("Create a new table in the database");
                             stmt.executeUpdate(createTableStr);
                        } catch (SQLException e) {
                             System.out.println("SQLException: " + e.getMessage());
                             System.out.println("SQLState:     " + e.getSQLState());
                             System.out.println("VendorError:  " + e.getErrorCode());
                   } catch (Exception e)
                        System.out.println( ((SQLException) e).getSQLState() );
                        System.out.println( e.getMessage() );
                        e.printStackTrace();
                   return str;
              private static void fillTable(Connection con, String fieldname,
                        LinkedHashMap[] tableData) {
                   for (int row = 0; row < tableData.length; row++) {
                        LinkedHashMap<String, Integer> rowData = tableData[row];
                        Iterator iter = rowData.entrySet().iterator();
                        String str;
                        String[] tousFields = new String[rowData.size()];
                        int i = 0;
                        while (iter.hasNext()) {
                             Map.Entry pairs = (Map.Entry) iter.next();
                             Integer fieldType = (Integer) pairs.getValue();
                             String fieldValue = (String) pairs.getKey();
                             switch (fieldType) {
                             case Cell.CELL_TYPE_NUMERIC:
                                  str = fieldValue;
                                  break;
                             case Cell.CELL_TYPE_STRING:
                                  str = "\'" + fieldValue + "\'";
                                  break;
                             case Cell.CELL_TYPE_BOOLEAN:
                                  str = fieldValue;
                                  break;
                             default:
                                  str = "";
                                  break;
                             tousFields[i++] = str;
                        try {
                             Statement stmt = con.createStatement();
                             String all = org.apache.commons.lang3.StringUtils.join(
                                       tousFields, ",");
                             String sql = "INSERT INTO " + fieldname + " VALUES (" + all
                                       + ")";
                             stmt.executeUpdate(sql);
                             System.out.println("Fill table...");
                        } catch (SQLException e) {
                             System.out.println("SQLException: " + e.getMessage());
                             System.out.println("SQLState: " + e.getSQLState());
                             System.out.println("VendorError: " + e.getErrorCode());
                   }To be more specific the error it in the second row where i have only ID and Name in my excel file and only these i want to store. The third row has only Name and Salary and no ID. How i would be able to store only the values that i have and leave blank in the second row the Salary and in the third row the ID? Is there a way for my program to skip the blanks as empty value?
    Edited by: 998913 on May 9, 2013 1:01 AM

    In an unrelated observation, it appears you are creating new database tables to hold each document. I don't think this is a good idea. Your database tables should be created using the database's utility program and not programmatically. The database schema should hardly ever change once the project is complete.
    As a design approach: One database table can hold your document names, versions, and date they were uploaded. Another table will hold the column names and data types. Another table can hold the data (type for all data = String). This way, you can join the three tables to retrieve a document. Your design will only consists of those three tables no matter how many unique documents you have. You probably should seek the advice of a DBA or experienced Java developer on exactly how structure those tables. My design is a rough layout.

  • Prompt in WEBI over BICS doesn't display values without searchin

    Hello,
    I'm using BI 4.1 SP04 over BW 7.3.
    Using BICS connection over a query, I'm trying to filter 0PRODH1 (material hierarchy).
    Tried to put variable inside the BW query for getting a prompt inside the WEBI, but I keep getting multi values (becasue same description shows up in 2 different keys), So I changed my prompt to the webi query-filter level.
    My problem is that while using prompt, The prompt screen that pops with the LOV, doesn't auto-refresh, furthermore it doesn't let you press the "refresh" button unless you type anything (asterisk covers it for getting all the values).
    Picture is attached for demonstration.
    It's kind of uncomfortable behavior, letting the user type asterisk(*) for displaying all values - It forces use of the keyboard.
    Any suggestions how to get a prompt with LOV to the webi, with auto-refresh(or at least abilty to press "refresh")?
    Thank you,
    Or.

    KBase 1748343 details the current expected prompt / list of values behavior.
    Mike

  • Message counter doesn't display on iphone

    Hi,
    The messages icon on my iPhone 4 used to display the number of unread messages, this function has stopped working, also there is no sound nor vibration when a message comes in. The only thing I have done recently is reset my network settings because my 3G kept disappearing (the 3G is now working fine)
    Any suggestions?
    Cheers.

    Weird. I sent myself another test and it worked perfectly. So, I then went back and opened the old email that opened as code and it too opened correctly. I don't really have an explanation for it. Both times I was connected to the net via wifi. Still no answer, but at least it is working right now.

  • Can't display values from memory

    Hi, all experts
    i am having trouble displaying the value that i have imported to memory.
    EXPORT keyfgr           FROM  p_keyfgr     TO MEMORY ID 'CM_KEYFGR'.
    EXPORT fcst_filedata    FROM gt_fcst_filedata[]       TO MEMORY ID 'CM_FCST_FILEDATA'.
    SUBMIT (g_hlp_progname) WITH fpath  = p_fname
                               WITH vrsioz = p_vrsioz
                               VIA SELECTION-SCREEN
                               AND RETURN
    When i want to use this value in my other tcode is doesn't display value. pls, help
    IMPORT keyfgr TO D FROM MEMORY ID 'CM_KEYFGR'.
    IMPORT fcst_filedata TO GTA_fcst_filedata FROM MEMORY ID 'CM_FCST_FILEDATA'.
         LOOP AT GTA_fcst_filedata INTO WA_fcst_filedata.
              WRITE: / WA_fcst_filedata-FIELD1.
        ENDLOOP.

    Hi sophanith,
    please go through the code below.
    export p_keyfgr to MEMORY id 'XYZ' .
    EXPORT gt_fcst_filedata[]       TO MEMORY ID 'ABC'.
    SUBMIT (g_hlp_progname) WITH fpath  = p_fname
                               WITH vrsioz = p_vrsioz
                               VIA SELECTION-SCREEN
                               AND RETURN.
    in Import program u should declare the gt_fcst_filedata[] and keyfgr same as export program.
    DATA :gt_fcst_filedata[] TYPE TABLE OF ................
    DATA:keyfgr type ...........
    IMPORT keyfgr FROM MEMORY ID 'XYZ'.
    IMPORT gt_fcst_filedata[] FROM MEMORY ID ' ABC'.
    the you can loop the internal table in to work area.
    regards Ashwin kv

  • Secondary Cost Element Values doesn't display in Profit Center Report

    Hi everyone,
    I'm having a problem with our Profit Center plan/actual/variance reports wherein it doesn't display the postings I made to the Secondary cost element when I executed an assessment cycle (KSU5). I already set in the configuration that all postings to be done in the cost centers, should have a parallel posting to the profit center assigned to it. I can see the postings in my cost center reports, but not in my profit center report. Could I have missed out on any procedure to enable the secondary cost element parallel posting in my profit centers? Any help would be appreciated. Thanks!

    it might be the configuration of the library or some parameter in the report (record type should be 0 and 2 for actual values, where 2 stands for distributed values and 1 and 3 for planned values)
    but it also might be that the reconciliation is done between different CC and same PC
    - check your CC organisation asignment
    - if sender cost center and receiver cost center have tha same PC it is probably the reason
    - I had that problem my self and didn't solve it
    cheers
    matej

  • My iphone 6 doesn't display the battery duration values

    My iphone 6 doesn't display the battery duration and standby in battery settings, and replaces the values with - even if I completely charged my battery last time. Can someone help me?

    Try these two:
    Restore from backup
    Restore as new
    http://support.apple.com/en-us/HT201252

  • How to create a task list view in c# that doesn't display the timeline

    How can I create a view for a task list using c# that doesn't display the timeline.  I want to do this using server side code but I can't seem to find a view property that will hide the timeline.  I know how to do it manually through the UI but
    I need to automate it.
    Caroline

    Hi Garoline,
    We can set ViewData of the view to empty to achieve your requirement. The following code snippet for your reference:
    using (SPSite site = new SPSite("http://sp2013sps/"))
    using (SPWeb web = site.OpenWeb())
    SPList list = web.Lists["TaskList"];
    SPViewCollection allviews = list.Views;
    string viewName = "Test View";
    System.Collections.Specialized.StringCollection viewFields = new System.Collections.Specialized.StringCollection();
    viewFields.Add("Checkmark");
    viewFields.Add("LinkTitle");
    viewFields.Add("Due Date");
    viewFields.Add("Assigned To");
    string myquery = "<where><gt><fieldref name='ID' /><value type='Counter'>0</value></gt></where>";
    allviews.Add(viewName, viewFields, myquery, 100, true, false);
    SPView view=list.Views[viewName];
    view.ViewData = "";
    view.Update();
    Best Regards,
    Dennis Guo
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Change display value of "select list"

    Hi!
    I have a problem with a select list, I want to change the display value through an own pop up (page 5 of apex application) after I submit in it.
    The select list is based on a sql query:
    select A_NAME display_value, A_ID return_value
    from APPLICATIONS
    where a_application_type='GROUP'
    order by 1
    beside I have an link to open a pop up window:
    ... onClick="window.open ('f?p=&APP_ID.:5:&SESSION.::::', 'newWin',
    'scrollbars=no,status=no,width=500,height=270' ...
    On the pop up site there is a tree and a submit button which close the window and renew the original page:
    javascript:window.opener.location.reload();window.close();
    Through the tree I get the value (Group-ID) which I need.
    When I'm back on page 4 a "before header" renew page process links again on the side 4 and change the value of my select list. Afterwards the values have changed correctly but the display value is still the old one. It only change when i go on an other page of the apex application and come back.
    I don't know why it doesn't change immediately!?
    Thanks ahead

    I have done with a solution just in a nutshell of what u r looking for:
    1.create HTML region.
    Add two items : Select list with redirect(P6_X) and text field(P7_X)
    2. Select list is based on LOV query as :
    select empno d,empno r from emp ;
    Source value is Empno Type:DBcolumn.
    3.The text field Source type : SQL Query .
    Query : select ename from emp where empno = :P6_X
    Now select from the dropdown empno and it will populate the Ename value accordingly based on the query .
    U can have more than one text fields and populate those in the same way.....
    Cheers,
    ROSY

  • How can I get dataTable to display values from the java layer?

    When I use the dataTAble in my JSP page it will only display values from my java layer if the facets tag has it's name set to "header". Why is this happening?
    If I set it to "header" and I look at the page source it actually has created the correct number of rows but it doesn't put the values between the <td> tags? It see's the length of my list but it doesn't pick the values out of the list.
    <h:dataTable var="data" value="#{NameBean.test}" border="1">
    <h:column>
    <f:facet name="header">
    <h:outputText value="Name"/>
    </f:facet>
    </h:column>
    <h:column>
    <f:facet name="header">
    <!-- <h:outputFormat styleClass="outputFormat" id="format1" value="#{NameBean.test}"></h:outputFormat>-->
    <h:outputText styleClass="outputText" value="#{NameBean.test}" style="" rendered="true" escape="false"/>
    </f:facet>
    </h:column>
    </h:dataTable>
    public List gettest()
              List li = new LinkedList();
              Object Developers[] = {"M@n00j", "sdsadas"};
              for( int i = 0; i < Developers.length; i++ )
                   li.add(Developers);
              return li;
    Thanks in advance to anyone that can help.
    -ls6v

    I've been able to get it working with some of those changes along with changes in the JSP. I think it's a setting or two in the JSP that'll allow the program to run correctly.
    I have a list and it's returned like what you suggested. A day or two ago I tried to move the outputtext outside of the facet tag but nothing would print, I know believe that's related to the following setting in the JSP:
    rows="0" in the <h:dataTAble tag
    Unfortunately the dataTAble isn't displaying the values correctly. It prints all of the values (Strings) in the list on each row and it make a new row for the number of items in the list.......... ???
    Here's what it's printing to the screen (the table):
    ===================
    == [asdasd], [sddfdfd] ==
    ===================
    ===================
    == [asdasd], [sddfdfd]==
    ===================
    what it should print:
    ============
    == [asdasd] ==
    ============
    ============
    == [sddfdfd] ==
    ============
    My code:
    public List gettest()
              List li = new ArrayList();
              li.add("asdasd");
              li.add("affffd");
              return li;
              }JSP
    <h:dataTable border="1" columnClasses="list-column-left"
        headerClass="list-header"
        rowClasses="list-row-odd"
        id="table"
        rows="0"
        value="#{NameBean.test}"
        var="data">
    <h:column>
    <f:facet name="header">
    <h:outputText value="test"/>
    </f:facet>
    <h:outputText value="#{NameBean.test}" style="" rendered="true" escape="false"/>
    </h:column>
    </h:dataTable>

  • How to create a display value and a return value for an item

    Hi! I have an item on a form. I want the default value for my item to be :":APP_USER", but the return value, to be the id of my user. I tried to create a PL/SQL Expression for the default item, but it doesn't work. What do I miss?
    It should be something like this, but it's not.
    begin
    select first_name || ',' ||last_name as "Employee",
    id_employee -- display value,return value
    from employees
    where id_employee = :APP_USER;
    end;
    Does anyone know?
    Thanks!
    Vitaly

    Hi VItaly,
    Display value and return value concept applies very well in case of a Combo box if i am correct, I don't know what type of item is your's.
    But any way, you can have a workaround like,
    Create a hidden item such that it's default value should be ID of the user which can be get from db by using :APP_USER.
    Use the this item for your references.
    I think this will meet your requirement.
    Thanks
    Kumaraswamy.

  • Sales Order form error  "Not able to retrieve Display values for Service"

    Hi,
    Few of our orders flash the below error message when the order is queried
    "Not able to retrieve Display values for Service"
    Below are the points I observed
    1.The orders I am referring to are imported order via EDI interface.
    2.The service reference type code has value of ORDER, however no other service related fields (like service reference line id) have any values.
    3. The item is not a service item (service tab in Item setup is disabled)
    4. Same item when imported with value of "Customer Ordered" in "service reference type code" field, does not throw an error.
    5. If I update "service reference type code" with value null or change it to CUSTOMER_PRODUCT, the error disappears.
    Can someone explain the significance of this column value and what could have been causing this error message?
    May be there are some dependent fields/setups which must have a value when service reference type code =ORDER.
    Thanks in advance,
    JC
    Edited by: user10174990 on Oct 25, 2012 10:58 AM

    Hi,
    Maintain the dafault values using Tcode OISF with respective to Planning Plant you have to maintain the following values like Order Type, Main Work Center, Maint. Plant,Group,Group Counter,Business Area & Task List type.
    or
    Apply these OSS note 150732 / 195993.
    regards,
    Venkatesan Anandan

  • JSP doesn't display Oracle varchar2 Items on screen

    I recently bought new laptop with windows XP professional with service pack 2. Loaded Oracle 10g Client on it. I have a Dell server with Linux and Oracle database 9i. Accessed the this database through new laptop using SQL plus window and works OK. (With that it is sure that my hosts file updated correct with proper IP address of server and tnsnames.ora files).
    I have created a JSP application to access this database. It works perfectly OK in my old laptop with Windows XP home with service pack1. The connections are established through ODBC Data Source Administrator (Control Panel->Administrative Tools->Data Sources) by adding a System Data Source. The application works perfectly OK and displays all fields that I intended and coded for. Only thing is it has Oracle 9i client.
    But the same application in the new laptop doesn't work properly. It doesn't display Varchar2 values. It displays only Number and Date data types. This shows it is connecting to the database (oracle 9i). But varchar2 values are not displayed. The connections are established through ODBC Data Source Administrator.
    I'm using Tomcat server (jakart-tomcat-5.0.27) on both the laptop. Please help me here.

    Suggestion: don't use the ODBC driver to connect to Oracle. I presume you are using sun's JDBC-ODBC bridge?
    Oracle have got a reasonably good 100% java JDBC driver which is all you need, and is a lot better than the ODBC bridge. I would recommend using the Oracle thin driver.
    Your java code should remain largely unchanged. The only thing you would need to alter would be
    1 - driver class being loaded (oracle.jdbc.driver.OracleDriver)
    2 - driver url (default would be something like: jdbc:oracle:thin:@127.0.0.1:1521:ORCL)
    3 - You would need the oracle jdbc driver in the classpath (ojdbc14.jar) You can find that in [ORA_HOME]/jdbc/lib
    If you've written your database connection using a JNDI datasource, then all you would need to change would be the configuration in your tomcat server.
    Hope this helps,
    evnafets

  • "0" doesn't display before comma in float numbers...

    Hi fellow APEX users,
    Have you ever experienced this issue with float numbers in your APEX forms?
    When I type float numbers between -1 and 1 in forms (e.g. 0,7 or -0,2), and after having submitted the form then reloaded it for editing, "0" doesn't display before the comma.
    For example I got:
    *,7* instead of *0,7*
    -,2 instead of -0,2
    etc.
    If I look in SQL Workshop, I see the same (no "0") but I'm pretty sure that the value is properly recorded in the database.
    The thing is that it's not very nice for the end users, as they can think the value is wrong.
    Does anybody have a solution to display proper float numbers with "0" in the forms?
    For info I use the NUMBER type.
    Any help much appreciated!
    Thanks,
    Romain.
    Edited by: romain.apex on Feb 5, 2012 8:30 PM

    Hi Peter!
    Of what type is your item? Display as text or do you use the item value for further computations.
    If it is only for means of displaying the correctly formatted number, I'd change the item source to a query and would equip the desired column with a to_char function like:
    select to_char(str_be_main, 'fm999G999G990D00') from yourtable where ...You could also use a post calculation computation and enforce the format there:
    to_char(:P2027_YOUR_ITEM,'fm999G999G990D00')Maybe this helps!
    Brgds,
    Seb
    Edited by: skahlert on 11.02.2011 07:53

  • Timeline usage : To display value at the end of timeline values

    Hi Team,
    In my current project, I want to implement functionality given below. All records are present in one single table.
    Table has columns as (City,Date,Positive,Negative,CountOfItems)
    I have created data model as given below.
    I need to design Power View Report for which Date will act as "Timeline", so when I select DAte as "2010-10-01" to "2010-11-01" then It should show me report having data on "2010-11-01 because it is latest data I am having.
    Final report should look like as below.
    But as I have used "Sum" function, it shows me wrong result.
    My actual meaning is that, on every date of selected window in timeline, value at the last day of selected window should be displayed at report.
    Can anyone help me to do db design and report formulation.

    It looks like this was answered in your other thread...
    Display value at the end of timeline range selection: http://social.msdn.microsoft.com/Forums/en-US/sqlkjpowerpivotforexcel/thread/20ce91d4-9cc1-4680-be71-6172c64e4da7/#20ce91d4-9cc1-4680-be71-6172c64e4da7
    In the future, please try to avoid creating multiple threads for the same problem :)
    Regards,
    Michael
    Please remember to mark a post that answers your question as an answer...If a post doesn't answer your question but you've found it helpful, please remember to vote it as helpful :)

Maybe you are looking for

  • Sql query to seperate character and number data in a column

    Hi, We have a test table on 10.2.0.4 db as below; 10:44:34 TEST:WAULT > desc t; Name Null? Type EMP VARCHAR2(10) 10:43:18 TEST:WAULT > select * from t; EMP JOHN 7281 TOM 7852145 BNPPARIBAS 9862354 Mindcraft 875 INFINITY 78998775 01234 EMP 0 -123 -856

  • Could not archieve file after processing error in Rwb of sender adapter

    Till today afternoon it is running fine. The rpocess here is we will keep the files in FTP site. and pi polls and places the files in NFS Mount server AL11(FILE/STAGING). Now these file will be process from FILE/STAGING to FILE/PROCESS in al11 . Then

  • IMac vs Mac Pro for Graphic Design Studio

    We are upgrading the macs in our in-house graphics department (3 mac users) and wanted to see if anyone had advice on weather to choose a high end iMac or the new 2014 Mac Pro. To help here is what we do on our macs (currently 20inch iMacs). Photosho

  • No Adobe Flash Player Alternative?

    I love to play games like Monster Busters and Candy Crush Soda on Facebook while on my phone. I just bought this Nokia Lumia 530 and have now realized it doesn't use Adobe Flash. Is there any way around this,or an alternative altogether? I miss my ga

  • Best photo editor for mac?

    I am looking for a comprehensive photo editor app. I have downloaded FX Photo Studio Pro, but I  am very unsatisfied: the actual editing tools are very limited. I don't care about effects or frames: I need tools to reduce image size, select parts of