Problem set (it looks like a bug)

It's about ORACLE 10.2.0.4.0

I'm working on a SQL query to return the calendar dates.
When I run the present:
SELECT workdate
FROM
(
  SELECT TO_DATE(TO_CHAR(m.month) || '/' || TO_CHAR(d.day) || '/' || TO_CHAR(y.year), 'MM/DD/YYYY') AS workdate
  FROM
  (
    (
      SELECT 2011 AS year FROM dual
    ) y
    CROSS JOIN
    (
                SELECT  1 AS month FROM dual
      UNION ALL SELECT  2 AS month FROM dual
      UNION ALL SELECT  3 AS month FROM dual
      UNION ALL SELECT  4 AS month FROM dual
      UNION ALL SELECT  5 AS month FROM dual
      UNION ALL SELECT  6 AS month FROM dual
      UNION ALL SELECT  7 AS month FROM dual
      UNION ALL SELECT  8 AS month FROM dual
      UNION ALL SELECT  9 AS month FROM dual
      UNION ALL SELECT 10 AS month FROM dual
      UNION ALL SELECT 11 AS month FROM dual
      UNION ALL SELECT 12 AS month FROM dual
    ) m
  )
  JOIN
  (
              SELECT  1 AS day FROM dual
    UNION ALL SELECT  2 AS day FROM dual
    UNION ALL SELECT  3 AS day FROM dual
    UNION ALL SELECT  4 AS day FROM dual
    UNION ALL SELECT  5 AS day FROM dual
    UNION ALL SELECT  6 AS day FROM dual
    UNION ALL SELECT  7 AS day FROM dual
    UNION ALL SELECT  8 AS day FROM dual
    UNION ALL SELECT  9 AS day FROM dual
    UNION ALL SELECT 10 AS day FROM dual
    UNION ALL SELECT 11 AS day FROM dual
    UNION ALL SELECT 12 AS day FROM dual
    UNION ALL SELECT 13 AS day FROM dual
    UNION ALL SELECT 14 AS day FROM dual
    UNION ALL SELECT 15 AS day FROM dual
    UNION ALL SELECT 16 AS day FROM dual
    UNION ALL SELECT 17 AS day FROM dual
    UNION ALL SELECT 18 AS day FROM dual
    UNION ALL SELECT 19 AS day FROM dual
    UNION ALL SELECT 20 AS day FROM dual
    UNION ALL SELECT 21 AS day FROM dual
    UNION ALL SELECT 22 AS day FROM dual
    UNION ALL SELECT 23 AS day FROM dual
    UNION ALL SELECT 24 AS day FROM dual
    UNION ALL SELECT 25 AS day FROM dual
    UNION ALL SELECT 26 AS day FROM dual
    UNION ALL SELECT 27 AS day FROM dual
    UNION ALL SELECT 28 AS day FROM dual
    UNION ALL SELECT 29 AS day FROM dual
    UNION ALL SELECT 30 AS day FROM dual
    UNION ALL SELECT 31 AS day FROM dual
  ) d
  ON (
       m.month IN (1, 3, 5, 7, 8, 10, 12)
       OR (
            m.month != 2
            AND d.day <= 30
          )
       OR d.day <= 28
       OR (
            d.day = 29
            AND MOD(y.year, 4) = 0
          )
     )
)
ORDER BY workdate;
I get all the dates back from 01/01/2011 to 31/12/2011.

However, when I replace the ORDER BY with:
WHERE workdate = TO_DATE('01/01/2011', 'MM/DD/YYYY');
I get an error "Invalid Date for the month specified" (ORA-01839).
(The same error regardless the date that I use in the WHERE clause).

If one of the dates in the application were invalid, then select it would have cast the same mistake, wouldn't it?

-Don

If you want to generate VALID dates between a specific date of beginning and end, I recommend the following:

var startdate VARCHAR2(25);
var enddate VARCHAR2(25);

WITH date_generator AS
(
        SELECT  TO_DATE(:startdate,'MM/DD/YYYY') + (ROWNUM-1) AS DT
        FROM    DUAL
        CONNECT BY ROWNUM <= TO_DATE(:enddate,'MM/DD/YYYY') - TO_DATE(:startdate,'MM/DD/YYYY') + 1
)
SELECT  * FROM DATE_GENERATOR

Tags: Database

Similar Questions

  • I can't save it as Narrator on PowerPoint. He says that I don't have a microphone. My microphone works because I can save otherwise, but there is a problem because I look like a squirrel!

    original title: Chipmunks in my computer!

    I have 2 problems. First of all, I can't save it as Narrator on PowerPoint. He says that I don't have a microphone. My microphone works because I can save otherwise, but there is a problem because I look like a squirrel! I put the voice until the lowest level I can.

    I guess it's a problem with the microphone, which is probably broken somehow. If it is a taken as opposed to a micro USB microphone, you can get a micro usb to a friend (if possible) to test if it works using the microphone or not.

    I say this because I had a microphone jack and he also had problems, as I've never had a problem with my USB microphone.

  • Select start_with - connect in XML document (it looks like a bug in 11.2 g)

    Hello

    I really have no idea of what is the difference between these two cases and why one does not return anything. I have an xml document:

    <?xml version="1.0" encoding="UTF-8" standalone="yes"?><dirObjects>
        <DIR_OBJECT>
            <ABSOLUTE_PATH>/home/pavel/Templates</ABSOLUTE_PATH>
            <OBJ_ID>0</OBJ_ID>
            <TREE_LEVEL>0</TREE_LEVEL>
            <OBJ_NAME>Templates</OBJ_NAME>
            <PARENT_ID>-1</PARENT_ID>
            <OBJ_TYPE>D</OBJ_TYPE>
        </DIR_OBJECT>
        <DIR_OBJECT>
            <ABSOLUTE_PATH>/home/pavel/Templates/test.txt</ABSOLUTE_PATH>
            <OBJ_ID>1</OBJ_ID>
            <TREE_LEVEL>1</TREE_LEVEL>
            <OBJ_NAME>test.txt</OBJ_NAME>
            <PARENT_ID>0</PARENT_ID>
            <OBJ_TYPE>F</OBJ_TYPE>
        </DIR_OBJECT>
    </dirObjects>
    
    

    and if I run the select statement of the following

    with
    xml_result as (
    select xtab.ABSOLUTE_PATH  ABSOLUTE_PATH
         , xtab.OBJ_TYPE
         , to_number(xtab.PARENT_ID) PARENT_ID
         , xtab.OBJ_NAME
         , to_number(xtab.TREE_LEVEL) TREE_LEVEL
         , to_number(xtab.OBJ_ID) OBJ_ID
      from apex_collections c,
              XMLTable('/dirObjects/DIR_OBJECT' passing xmltype001
                COLUMNS ABSOLUTE_PATH PATH 'ABSOLUTE_PATH'
                      , OBJ_TYPE PATH 'OBJ_TYPE'
                      , PARENT_ID PATH 'PARENT_ID'
                      , OBJ_NAME PATH 'OBJ_NAME'
                      , TREE_LEVEL PATH 'TREE_LEVEL'
                      , OBJ_ID PATH 'OBJ_ID'
              ) xtab
    where c.collection_name = 'P9_DOREST_RESULTS'
    )
    select ABSOLUTE_PATH,OBJ_TYPE,PARENT_ID,OBJ_NAME,TREE_LEVEL,OBJ_ID
    from
    xml_result
    --start with PARENT_ID =-1 connect by prior OBJ_ID=PARENT_ID
    
    

    He returned these 2 files

    Result:

    ABSOLUTE_PATH Obj_type PARENT_ID OBJ_NAME TREE_LEVEL OBJ_ID
    / Home/Pavel/templatesD-1Templates00
    /Home/Pavel/templates/test.txtF0test.txt11

    but when I Uncomment the last row, it returns nothing.

    When I insert exactly the same values in a normal table that looks like this:

    Name of Type Null

    ------------- ---- --------------

    ABSOLUTE_PATH VARCHAR2 (4000)

    OBJ_TYPE VARCHAR2 (4000)

    PARENT_ID NUMBER

    OBJ_NAME VARCHAR2 (4000)

    NUMBER OF TREE_LEVEL

    OBJ_ID NUMBER

    After the statement select returns the same result as the previous

    SELECT ABSOLUTE_PATH ,OBJ_TYPE ,PARENT_ID ,OBJ_NAME ,TREE_LEVEL ,OBJ_ID
    FROM dir_objects
    --START WITH parent_id    =-1 CONNECT BY prior obj_id =parent_id
    
    

    Result:

    ABSOLUTE_PATH Obj_type PARENT_ID OBJ_NAME TREE_LEVEL OBJ_ID
    / Home/Pavel/templatesD-1Templates00
    /Home/Pavel/templates/test.txtF0test.txt11

    but when I Uncomment the last row (START WITH parent_id = - 1 CONNECT BY prior obj_id = parent_id), it always returns 2 records

    Result:

    ABSOLUTE_PATH Obj_type PARENT_ID OBJ_NAME TREE_LEVEL OBJ_ID
    / Home/Pavel/templatesD-1Templates00
    /Home/Pavel/templates/test.txtF0test.txt11

    Any idea what is the difference and why the first select statement returns no that anything would be much appreciated.

    Best regards

    Pavel

    The solution to this nasty bug and arresting the optimizer doing a rewrite buggy was to use a scalar subquery via dual and expose the XML in this way.

    Select ABSOLUTE_PATH, OBJ_TYPE,

    PARENT_ID, OBJ_NAME,

    TREE_LEVEL, OBJ_ID

    from (select xtab. ABSOLUTE_PATH ABSOLUTE_PATH,

    xtab. OBJ_TYPE,

    TO_NUMBER (xtab. PARENT_ID PARENT_ID),

    xtab. OBJ_NAME,

    TO_NUMBER (xtab. TREE_LEVEL TREE_LEVEL),

    TO_NUMBER (xtab. OBJ_ID OBJ_ID)

    from (select (select xmltype001

    of apex_collections c

    where c.collection_name = 'P9_DOREST_RESULTS') as xmltype001

    the double) c,.

    XMLTable)

    ' / dirObjects/DIR_OBJECT.

    passage xmltype001

    COLUMNS

    ABSOLUTE_PATH PATH "ABSOLUTE_PATH."

    OBJ_TYPE PATH "OBJ_TYPE."

    PARENT_ID PATH "PARENT_ID"

    OBJ_NAME PATH "OBJ_NAME,"

    TREE_LEVEL PATH "TREE_LEVEL."

    OBJ_ID PATH "OBJ_ID.

    ) xtab

    )

    Start by PARENT_ID = - 1

    Connect prior OBJ_ID = PARENT_ID

  • Problem with the entire event looks like a bug

    Hello

    I got a requirement like this, there are two text fields Textfield1 and Textfield2 to say, and Textfield1 is full it should automatically go to textfield2 and fill the characters typed on the keyboard. I had this implemented using comprehensive event. If Textfield1 is full change focus to Textfield2.

    Now, I met a very strange question, i.e., the last character I enter Textfield1 won't Textfield2. His only full because is triggered to the key of the last character.

    I tried other alternatives did not work.

    Guys, now I do not understand is that true. Someone had the same problem.

    Thank you for all that you do.

    Yes, I used this script

    xfa.host.setFocus ("TextField2");   in my complete case. However, I could solve the problem by using newText and limiting the length to 50.

    Now I got a different question, that is, it does not work if I enter all uppercase the TextField1.

    Reason for the number of characters is different for upper and lower case. Don't know how to handle this.

    In addition, I expect to complete event can be a solution in this case, however if I use full event and you change the focus to new textfield the last key shot strays.

    Any help on this would be much appreciated...

  • Looks like a bug to me

    Here's a screenshot of what I see after the application starts:

    http://Yadi.SK/d/P3igKXx2MvYNT

    I tried to reinstall the application - no effect.

    > The window just empty

    Clouds WHITE http://forums.adobe.com/message/5484303 screen

    - and step by step http://forums.adobe.com/thread/1440508?tstart=0

    - and http://helpx.adobe.com/creative-cloud/kb/blank-white-screen-ccp.html

  • HP Pavilion looks like it is in safe mode when it is not

    Hello

    I have a hp Pavilion slimline desktop computer and I had to get it looked at him today because in recent weeks he has been up on me. He started with the screen changing colours as: green and blue then places pinky/red then yesterday it would not turn on just and there was a loud hum from the tower. screen not turn on so I had to get it looked at, the guy in the store said it was my video/graphics card that was the problem and he said he had 2 graphics cards in the computer, one of the map was built and the other, he said the problem was, so he went out. in any case now that I have the back of the computer and I turned on. how it works perfect except for a problem. It looks like its in safe mode, all the browsers that I look like they are on the big screen and the colors of the text and different things are a gey / light blue contrast, what I can do to change it please help thanks.

    PS: I was wondering it was the person who initially set the problem not install a driver correctly or I need to change the screen resolution. as it is said that the recommended resolution should be 1440 x 960 but when I go to setting it does give me not this option to go very high. advice or assistance would be thank you very much.

    Hi Eric and Caz,

    You are welcome.

    HP for your PC specifications indicate that he left the factory with Win Vista, 32-bit, SP1, Media Center.

    Software download site and the driver of HP lists no (original or updated) driver for the GeForce 6150se graphics.

    NVIDIA has a 32-bit or a 64-bit driver update are released in 2010.

    the 32-bit version is available here.

    64-bit version is available here.

    You could try a recovery of the plant. You have recovery discs? Unfortunately the recovery disc for your PC not available suppliers of disk recovery HP or third party such as Best2Serve or surgeons of the computer.

    The last option would be to buy a low-profile, low-power graphics card compatible with your Slimline and install the new card and the drivers provided by the manufacturer of the card.

    Jaco

  • Hotmail 44 looks like your mother has not finished to set up parental controls for your account settings.

    I had a few actual creation difficulty one Hotmail account for my daughter.  I'm using Windows (newer) 8.  I have created an account for it, but can't make it work.  Everytime I try to sign into his Hotmail I get the following error:

    "Hotmail 44 looks like your mother has not finished to set up parental controls for your account settings.  Click "Access the parental control settings" to complete the process and access your account. »

       Needless to say I went to family safety settings on our PC and the Security Web site for the family repeatedly to change the settings that might seem to apply, but it has only settings web for her, no setting of Hotmail to update me at all.  Am I missing something, or is this a problem?

    I've seen one or two similar posts...

    Thank you

    David

    Hi BigDcdn,

    For us, in order to better afin de mieux aider help you with this issue, please send us screenshots of what follows:
    • List of child accounts on https://familysafety.microsoft.com
    • Settings for the computer of the child concerned on the site of the family safety (the page where it shows queries, e-mail notifications, etc.).
    • The list of the user accounts on your computer
    I have sent you a private message for instructions. After you download it, please let know us in this thread.
    Thank you.

    Okay, so I thought about it and it's ugly and not intuitive.

    The REAL CAUSE of the ROOT of this error is that you CANNOT add a new kid in the Family Safety (FSS) Web site.

    But as a solution, you can add a new kid on the Section of the Windows Phone website My family.

    FIRST STEP remove account the offending child of family on the site of the FSS under the management of the list of the members of the family section. Once this has been completed, follow the workaround below.

    WORKAROUND

    1. Then from the sign of site Web of Windows Phone with your Microsoft Account (MSA) (parent).
    2. Hover over your name just below upper right of the search box and you will get a context box.
    3. In the context box, select My Family.
    4. In the Section My family, you will have two lists. PARENTS and CHILDREN, and especially an ADD A KID to the right of the list headers.
    5. Click on the link. Now, you will get a login screen of the MSA.
    6. Register your child or have them enter login and password. They will appear as a kid under the section of your Windows Phone my family. Even if they do not have a phone you can add.
    7. Ask them to connect in hotmail\outlook.com with their MSA will complete the configuration of security for the family.

    REAL SOLUTION

    There must be a link on the site of the FSS for KID A ADD (add a child would be more enjoyable unless of course you are a family of goats) identical to that of the Windows Phone my family section. Seems like a logical place to have this option?

    I hope this helps anyone else having this problem.

  • Problem does not occur when it is not connected USB so that it looks like some sort of communication problem. The L355 worked perfectly.

    Hello

    I recently installed an Epson L555 instead of my Epson L355, which worked well with my software windows 7 and my BACK program based. However, whenever the L555 turned the printer just keeps ejecting the hopper pages until it is empty. On the menu screen, it says "printing", but there is nothing in the print queue and I didn't send anything to be printed. Sometimes it reads "Fax set auto answer. By pressing the Stop/Reset button stops the ejection pages and "Cancel" is displayed on the screen. This continues for about 2-3 minutes, then the pages start ejected again. Problem does not occur when it is not connected USB so that it looks like some sort of communication problem. The L355 worked perfectly.

    Hello

    Thanks for posting your query in the Microsoft community.

    I understand that print jobs are getting cancelled and I will be happy to answer your query. There could be several reasons for this cause and to diagnose the problem, initially, I ask you to refer to the suggestions in the article below and check.

    Solve printer problems

    Hope this information is useful. Please feel free to answer in the case where you are facing in the future other problems with Windows.

  • Funny problem with generating xml looks like table.

    Hello
    I have the following problem:

    1.I has table:
    CREATE TABLE DESCRIPTION
    (
    NUMBER OF DESC_ID
    SK VARCHAR2 (500 BYTE),
    OF VARCHAR2 (500 BYTE).
    EN VARCHAR2 (500 BYTE)
    )

    2.I need to create an xml looks like:

    < "NODE1" >
    < "NODE2" >
    data column < /de > < >
    column < www.tourocloudbackup.com > < en > data
    given < sk > column < /sk > sk
    < / "NODE2" >
    < / "NODE1 >"

    where "PAR1" and "PAR2" is CASE-SENSITIVE SETTING of RESPECT.

    3. I create for that to be the next function:


    CREATE or REPLACE FUNCTION F_CREATE_XML_DESC (inDescId, NUMBER of)
    inNode1 VARCHAR2,
    inNode2 VARCHAR2)
    RETURN OF XMLTYPE
    IS
    tmpVar NUMBER;
    /******************************************************************************


    ******************************************************************************/
    vXml XMLTYPE.

    CTX DBMS_XMLGEN.ctxHandle;
    vColumnList VARCHAR2 (1000);
    vXmlStr VARCHAR2 (1000);

    BEGIN


    If (inDescId is not null) then
    SELECT SUBSTR (list) of LENGTH (list) - 1, 1,
    IN vColumnList
    FROM (SELECT (LISTAGG (COLUMN_NAME |))) ',')
    TO WITHIN THE GROUP (ORDER OF COLUMN_NAME))
    As a list
    Of user_tab_columns
    WHERE table_name = 'DESCRIPTION' AND COLUMN_NAME <>'DESC_ID');


    CTX: =.
    DBMS_XMLGEN.
    NewContext)
    "select".
    || vColumnList
    || "description d where d.desc_id ='".
    || inDescId);

    on the other
    -yesterday to return null if DESC_ID is null
    Returns a null value.

    SELECT SUBSTR (list) of LENGTH (list) - 1, 1,
    IN vColumnList
    FROM (SELECT (LISTAGG ("'"' |))) "ACE" | COLUMN_NAME | ' ,')
    TO WITHIN THE GROUP (ORDER OF COLUMN_NAME))
    As a list
    Of user_tab_columns
    WHERE table_name = 'DESCRIPTION' AND COLUMN_NAME <>'DESC_ID');

    CTX: =.
    DBMS_XMLGEN.
    NewContext)
    "select".
    || vColumnList
    || "of the double");


    end if;

    -DBMS_XMLGEN.setRowSetTag (ctx, inNode1);
    DBMS_XMLGEN.setRowTag (ctx, 'NŒUD');
    DBMS_XMLGEN. SETNULLHANDLING (ctx, 2);

    -I DON'T KNOW WHY THIS DOESN'T WORK!
    -DBMS_XMLGEN.useLowerCaseTagNames ();


    vXmlStr: low = (DBMS_XMLGEN.getxml (ctx));

    DBMS_XMLGEN. CLOSECONTEXT (ctx);

    If (inNode1 is not null and)
    inNode2 is not null) then

    Select xmlelement (EVALNAME (inNode1),
    XmlElement (EVALNAME (inNode2),
    Extract (XmlType (vXMLStr), '//node/*')))
    in vXml
    Double;
    end if;

    If (inNode1 is null and)
    inNode2 is not null) then

    Select xmlelement (EVALNAME (inNode2),
    Extract (XmlType (vXMLStr), '//node/*'))
    in vXml
    Double;
    end if;


    If (inNode1 is not null and)
    inNode2 is null) then

    Select xmlelement (EVALNAME (inNode1),
    Extract (XmlType (vXMLStr), '//node/*'))
    in vXml
    Double;
    end if;



    VXML BACK;
    END F_CREATE_XML_DESC;
    /


    4 Requriments:
    If I add the new column to the table Description the XML should include this new column.
    Problem is a RESPECT for the CASE, the table tags MUST be LOWER case, and of course without column DESC_ID, BUT the two NODE1 and NODE2 SHOULD be case-sensitive.

    5. function whihch I cooked up in my opinion is not fast enough. IS THERE a SOLUTION to make this better? Help, please.

    6 DB: Oracle 11 g R2.

    Edited by: kozand 2011-06-26 05:06

    Hello

    -I DON'T KNOW WHY THIS DOESN'T WORK!
    -DBMS_XMLGEN.useLowerCaseTagNames ();

    I don't see in the package specification.

    I'm not a big fan of this but you can try the following solutions:

    SQL> DECLARE
      2
      3   inNode1      varchar2(30) := 'NODE1';
      4   inNode2      varchar2(30) := 'NODE2';
      5   inDescId     number := 1;
      6
      7   colList      varchar2(4000);
      8
      9   xml_data     xmltype;
     10   doc          clob;
     11
     12  BEGIN
     13
     14   SELECT listagg(column_name || ' as "' || lower(column_name) || '"', ',') within group (order by column_name)
     15   INTO colList
     16   FROM user_tab_columns
     17   WHERE table_name = 'DESCRIPTION'
     18   AND column_name != 'DESC_ID';
     19
     20   EXECUTE IMMEDIATE 'SELECT XMLForest(' || colList || ') FROM description WHERE desc_id = :1'
     21   INTO xml_data
     22   USING inDescId;
     23
     24   SELECT nvl2( inNode1
     25              , XMLElement(evalname(inNode1), xml_data)
     26              , xml_data )
     27   INTO xml_data
     28   FROM (
     29     SELECT nvl2( inNode2
     30                , XMLElement(evalname(inNode2), xml_data)
     31                , xml_data ) as xml_data
     32     FROM dual
     33   );
     34
     35   dbms_output.put_line(xml_data.getclobval());
     36
     37  END;
     38  /
    
    data from column dedata from column endata from column sk
    
    PL/SQL procedure successfully completed
     
    

    Or a single XQuery:

    SQL> show user
    User is "dev"
    
    SQL>
    SQL> SELECT XMLSerialize(document
      2    XMLQuery(
      3      'let $data :=
      4         for $i in fn:collection("oradb:/DEV/DESCRIPTION")/ROW
      5         where $i/DESC_ID = $id
      6         return
      7           for $j in $i/child::*
      8           let $node-name := name($j)
      9           where $node-name != "DESC_ID"
     10           return element {fn:lower-case($node-name)} {fn:data($j)}
     11       let $node2 := if ($inNode2) then element {$inNode2} {$data} else ($data)
     12       return if ($inNode1) then element {$inNode1} {$node2} else ($node2)'
     13      passing cast(1 as number) as "id"
     14            , 'NODE1' as "inNode1"
     15            , 'NODE2' as "inNode2"
     16      returning content
     17    )
     18    as clob indent
     19  )
     20  FROM dual
     21  ;
    
    XMLSERIALIZE(DOCUMENTXMLQUERY(
    --------------------------------------------------------------------------------
    
      
        data from column sk
        data from column de
        data from column en
      
    
     
    
  • Fonts suddenly stripped - looks like I'm missing font setting West...

    All of a sudden, my default font is smaller, paler and harder to read. It changes in tools-> Options-> content-> fonts & colors does nothing.

    After searching for which need to be addressed, everything seems OK, BUT miss me the selection of 'Western' in the "fonts for:" drop-down menu and I am missing the 'Western (ISO-8859-1)' selection in the menu drop-down "default character encoding".

    I still have the West selection in the view-> list menu drop-down character encoding. However, she maintains herself swinging back on Unicode even if I turn to the West.

    I guess this setting West missing is the cause of my problem. Fonts look good in Internet Explorer, so I don't think that there is a problem with the fonts on my computer in general.

    Advice is appreciated, because whatever the police it's by default after the Western missing parameter is very squeaky on the eyes.

    Hi, this is probably caused by kb3013455 of update from microsoft that can cause problems of rendering fonts on vista:

    After you have installed the 3013455 security update, you may notice a degradation in quality of text in some scenarios. The problem occurs only on systems running Windows Vista SP2 or Windows Server 2003 SP2. Microsoft is researching this problem and will post more information in this article when the information becomes available.

    Reference: https://support.microsoft.com/kb/3013455

    an option may be to tackle this particular update for now until there is a fix from microsoft or you could also look at if there is a graphics driver update available on the Web site of the seller (intel/amd/nvidia) which could also be solved this problem in some cases.

  • I have a Server R2 windows 2012 automatically switches out of his own for several times and it doesn't look like a hardware problem.

    I have a windows server R2 2012 which automatically switches out of his own for several times and it doesn't look like a hardware problem. and I have this problem every day.please tell me what is the reason

    Original title: r2 windows server 2012

    This issue is beyond the scope of this site and must be placed on Technet or MSDN

    http://social.technet.Microsoft.com/forums/en-us/home

    http://social.msdn.Microsoft.com/forums/en-us/home

  • SOS... I don't know what is happening, but when I import the photos to LR5, looks like I have a "Preset" which I did not and the white balance becomes 'custom '... You have an answer that I can solve this problem? Thank you.

    SOS... I don't know what is happening, but when I import the photos to LR5, looks like I have a "Preset" which I did not and the white balance becomes 'custom '... You have an answer that I can solve this problem? Thank you.

    Possibly, you have made changes to your 'by default develop settings'. The default WB in Lightroom should be "under the shot" to view this selection has recently imported a file raw in the develop Module, click history in the left panel, click on the first import. (see screen capture) and then see what settings have been applied to import for the white balance it must be 'in the know '.

  • How to set type on a path looks like a circle?

    How to set type on a path looks like a circle?

    Hi Mike,.

    In Photoshop, select the Ellipse tool.

    With the Ellipse tool selected, look in the main menu and choose the path.

    Now draw the circle on your canvas. It should appear as a thin, gray line.

    Choose the text tool.

    Place the cursor on the edge of the circle you drew, and you should see the Type Exchange tool cursor. (It will have a little curved line added to it). Click on the edge of the circle path when you see the cursor change, and it will allow you to start typing on the circumference of the circle.

    See you soon!

    Michael

  • I recently had a problem adding still png or jpg graphics - looks like that it is not synchronized and gives purple and green grounds.

    When you add a graphic to my FCPX video in the form of png or jpg or tiff, it looks like it does not synchronize according to the pic

    Maybe your graphics card struggled to display an image of grand res. What model is your Mac?

    Try to resize an image for something as small as a test. Preview can do the downsizing, or if you have an image editor like Photoshop...

    Russ

  • Problem setting transition duration first pro cs4. Is this a bug?

    Hello world

    I have made a project of first pro cs4 and I'm having problems setting the duration of transitions between clips. I have my default transion set to cross dissolve them and 15 frames in length. When I try to lengthen, it seems that first makes two transitions in instead of a longer one. So, if for example I got a clip with a dip to black when I extend more than 15 default images to say 30 images I get two separate transitions one after the other instead of a long. I know it's difficult to understand so I downloaded the video on youtube. If fast forward you to the minute 01:20, you will see the latest bland given away with a dip to black transition and the you'll be right flash a bit after the last light disappears. I hope someone can help me solve this problem, as I'm completaly lost. Thank you :-)

    Work waaay too hard at this, dude.  Just use the default chained.  It gives you good fade to the top using all 24 images, no adjustment necessary.

Maybe you are looking for