Load Source and Destination =? Table does not structure the same.

Hello

I have to copy the data from the source table to the destination table. The structure of the 2 are not the same. Number of records in the destination table must be half of the number of records in the source. The reason is the source a named column (for example) c_type = 'Up' - a single line or 'Down' - in another line. What is reprsented in the destination as 1 rank since the number of columns is more. Example up_name, down_name, up_dep, down_dep.

How can I insert in the destination according to the c_type column in the source?
Example:
I want to insert into destination.up_name where c_type = 'Up' and destination.down_name where c_type = 'Down'...
and so on
How can I write my sql query such that I must write an insert statement and put the right data in the right column?

Mass25 wrote:
Number of records in the destination table must be half of the number of records in the source. The reason is the one source > column named (for example) c_type = 'Up' - a single line or 'Down' - in another line. What is reprsented in the destination > as 1 rank since the number of columns is more. Example up_name, down_name, up_dep, down_dep.

I hope that's what you're looking for:

SQL> WITH SOURCE AS
  2       (SELECT 1 id_col, 'UP' c_type, 'up_name_1' name_col,
  3               'up_dept_1' dept_name
  4          FROM DUAL
  5        UNION ALL
  6        SELECT 1 id_col, 'DOWN' c_type, 'down_name_1' name_col,
  7               'down_dept_1' dept_name
  8          FROM DUAL
  9        UNION ALL
 10        SELECT 2 id_col, 'UP' c_type, 'up_name_2' name_col,
 11               'up_dept_2' dept_name
 12          FROM DUAL
 13        UNION ALL
 14        SELECT 2 id_col, 'DOWN' c_type, 'down_name_2' name_col,
 15               'down_dept_2' dept_name
 16          FROM DUAL
 17        UNION ALL
 18        SELECT 3 id_col, 'UP' c_type, 'up_name_3' name_col,
 19               'up_dept_3' dept_name
 20          FROM DUAL
 21        UNION ALL
 22        SELECT 3 id_col, 'DOWN' c_type, 'down_name_3' name_col,
 23               'down_dept_3' dept_name
 24          FROM DUAL)
 25  SELECT * FROM SOURCE
 26  /

    ID_COL C_TY NAME_COL    DEPT_NAME
---------- ---- ----------- -----------
         1 UP   up_name_1   up_dept_1
         1 DOWN down_name_1 down_dept_1
         2 UP   up_name_2   up_dept_2
         2 DOWN down_name_2 down_dept_2
         3 UP   up_name_3   up_dept_3
         3 DOWN down_name_3 down_dept_3

6 rows selected.

SQL> WITH SOURCE AS
  2       (SELECT 1 id_col, 'UP' c_type, 'up_name_1' name_col,
  3               'up_dept_1' dept_name
  4          FROM DUAL
  5        UNION ALL
  6        SELECT 1 id_col, 'DOWN' c_type, 'down_name_1' name_col,
  7               'down_dept_1' dept_name
  8          FROM DUAL
  9        UNION ALL
 10        SELECT 2 id_col, 'UP' c_type, 'up_name_2' name_col,
 11               'up_dept_2' dept_name
 12          FROM DUAL
 13        UNION ALL
 14        SELECT 2 id_col, 'DOWN' c_type, 'down_name_2' name_col,
 15               'down_dept_2' dept_name
 16          FROM DUAL
 17        UNION ALL
 18        SELECT 3 id_col, 'UP' c_type, 'up_name_3' name_col,
 19               'up_dept_3' dept_name
 20          FROM DUAL
 21        UNION ALL
 22        SELECT 3 id_col, 'DOWN' c_type, 'down_name_3' name_col,
 23               'down_dept_3' dept_name
 24          FROM DUAL)
 25  SELECT s1.id_col, s1.name_col up_name, s1.dept_name up_dept,
 26         s2.name_col down_name, s2.dept_name down_dept
 27    FROM SOURCE s1 JOIN SOURCE s2
 28         ON (s1.id_col = s2.id_col AND s1.c_type = 'UP' AND s2.c_type = 'DOWN
')
 29  /

    ID_COL UP_NAME     UP_DEPT     DOWN_NAME   DOWN_DEPT
---------- ----------- ----------- ----------- -----------
         1 up_name_1   up_dept_1   down_name_1 down_dept_1
         2 up_name_2   up_dept_2   down_name_2 down_dept_2
         3 up_name_3   up_dept_3   down_name_3 down_dept_3

3 rows selected.

SQL>

Source has 6 entries and it was self joined to give 3 records that can be filled in the Destination Table.

Always post some sample data with the desired result. That you will get quick answers.

Kind regards
JO

Edited: Added citation Tags

Tags: Database

Similar Questions

  • a pc that is sharing the printer and another pc does not accept the same network printer on xp pro sp3

    a pc that is sharing the printer and another pc does not accept the same network printer on xp pro sp3
    What is the solution?

    Check out these links

    http://TechNet.Microsoft.com/en-us/library/bb457001.aspx

    http://UIs.Georgetown.edu/software/documentation/WinXP/WinXP.network.printer.html

  • JTable with custom column model and model table does not display the table header

    Hello

    I create a JTable with a custom table model and a custom column template. However the table header is not displayed (Yes, it's in a get). I have narrowed the problem down in one compilable example:

    Thanks for your help.
    import javax.swing.*;
    import javax.swing.table.*;
    
    public class Test1 extends JFrame
    {
         public static void main(String args[])
         {
              JTable table;
              TableColumnModel colModel=createTestColumnModel();
              TestTableModel tableModel=new TestTableModel();
              Test1 frame=new Test1();
    
              table=new JTable(tableModel, colModel);
              frame.getContentPane().add(new JScrollPane(table));
    
              frame.setSize(200,200);
              frame.setVisible(true);
         }
    
         private static DefaultTableColumnModel createTestColumnModel()
         {
              DefaultTableColumnModel columnModel=new DefaultTableColumnModel();
              columnModel.addColumn(new TableColumn(0));
    
              return columnModel;
         }
    
         static class TestTableModel extends AbstractTableModel
         {
              public int getColumnCount()
              {
                   return 1;
              }
    
              public Class<?> getColumnClass(int columnIndex)
              {
                   return String.class;
              }
    
              public String getColumnName(int column)
              {
                   return "col";
              }
    
              public int getRowCount()
              {
                   return 1;
              }
    
              public Object getValueAt(int row, int col)
              {
                   return "test";
              }
    
              public void setValueAt(Object aValue, int rowIndex, int columnIndex)
              {
              }
         }
    }
    Published by: 802416 on October 14, 2010 04:29
    added
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            

    See http://download.oracle.com/javase/6/docs/api/javax/swing/table/TableColumn.html#setHeaderValue (java.lang.Object)
    When the TableColumn is created, the default headerValue is null
    So the header ends up rendered empty label (probably of size 0 if the JTable calculates its size of header based on the size of the default rendering tool).

    It worked:

         private static DefaultTableColumnModel createTestColumnModel()
         {
              DefaultTableColumnModel columnModel=new DefaultTableColumnModel();
                    TableColumn col = new TableColumn(0);
                    col.setHeaderValue("Header Title");
              columnModel.addColumn(col);
                    return columnModel;
         }
    

    Published by: jduprez on October 14, 2010 14:09
    Beaten by a fraction of a second!

    Published by: jduprez on October 14, 2010 14:10
    OK, by a split of 17 minutes, specifically: o)

  • Account Internet preferences system does not recognize the password for my AOL account... and so mail does not read the email in my AOL account

    Account preferences Internet system does not recognize the password for my AOL (Internet) account... and so Mail does not read the email in my AOL account

    Mail asking me to "Enter your password for [my AOL account] in Internet accounts."

    When I enter my password Internet accounts says it is "Impossible to verify the account name or password."

    iMac (24 inch, early 2009)

    Processor clocked at 2.66 GHz Intel Core 2 Duo

    Memory 8 GB 1067 MHz DDR3

    OS X 10.11.1 (B 15, 42) El Capitan

    Remove the password in Keychain Access (Applications/Utilities). While there, menu Keychain Access of relief.

    The problems of Keychain - see post of khati

  • LG C500-G. AEE5GE1 with Windows 7 home prem OA MEA have been formatted. But despite giving the product key and Windows registry does not recognize the activation. Help, please

    LG C500-G. AEE5GE1 with Windows 7 home prem OA MEA have been formatted. But despite giving the product key and Windows registry does not recognize the activation. Help, please

    Name of the operating system Microsoft Windows 7 Home Premium

    Version 6.1.7601 Service Pack 1 Build 7601

    Manufacturer of operating system Microsoft Corporation

    System name HANDSOME-PC

    System manufacturer LG Electronics

    System model C500.-g. AEE5GE1

    System Type X 86-based PC

    Processor Intel (r) Core i3 CPU M 390 @ 2.67 GHz, 2666 Mhz, 2 Lossnay, 4 logical processors

    H46YSF00 Version/Date of BIOS American Megatrends Inc., July 2, 10

    Product key:

    X 16-96084

    CONCERNING

    TUESDAY BIOJY

    Have you tried to restart by phone?

    How to activate Windows 7 manually (activate by phone)
     
    1) click Start and in the search for box type: slui.exe 4
     
    (2) press the ENTER"" key.
     
    (3) select your "country" in the list.
     
    (4) choose the option "activate phone".
     
    (5) stay on the phone (do not select/press all options) and wait for a person to help you with the activation.
     
    (6) explain your problem clearly to the support person.
     
    http://support.Microsoft.com/kb/950929/en-us

  • I use a database program in a number of previous versions of windows and windows 7 does not allow the program to launch denial of service.

    Application of program compatibility does not start

    I use a database program in a number of previous versions of windows and windows 7 does not allow the program to launch denial of service.  What gives?

    If you have Windows 7 64 bit without BACK program can run because there is no 16-bit subsystem to run it.

    Try dosbox http://www.dosbox.com/. If that won't work your program, you'll need either a new database or run the BACK or on a 32-bit version of Windows in a virtual machine like VirtualBox https://www.virtualbox.org/.

  • inputText and ouputText does not display the same value

    Hello

    JDev 11.1.2.4

    On my page, I have an inputText and outputText bound to the same link of the attribute. The bind value is defined in a value change listener, and then the two components are updated. Say I put in 2009 for the PeriodFrom, the inputText remains empty, but the outputText shows the 2009. How is possible that the two items related to the same link does not show the same value.

    < af:inputText value = "#{bindings." PeriodFrom.inputValue}"required =" #{bindings. " PeriodFrom.hints.mandatory}.

    columns = "#{bindings." PeriodFrom.hints.displayWidth}"shortDesc =" #{bindings. " PeriodFrom.hints.tooltip}"id ="id1 ".

    autoSubmit = "true" simple = "true" >

    < f: validator binding = "#{bindings." PeriodFrom.validator} "/ >"

    < / af:inputText >

    < af:outputText value = "#{bindings." PeriodFrom.inputValue}"id ="ot3"clientComponent ="true"/ >

    Furthermore, I tried to get the RichInputText component and call a getValue on it, and the value returned is 2009. I'm completely lost.

    Thank you

    I made the fragment of page from scratch. I discovered why the update does not work. This is because the selectOneChoice is inside an af:subform. If I remove the subform, the update works correctly.

    shortDesc = "#{bindings." StdcntyCode.hints.tooltip}"id ="soc2"simple ="true"autoSubmit = 'true '.

    valueChangeListener = "#{pageFlowScope.identificationSessionEditBean.countryValueChangeListener}" > "

    columns = "#{bindings." PeriodFrom.hints.displayWidth}"shortDesc =" #{bindings. " PeriodFrom.hints.tooltip}"id ="id1 ".

    autoSubmit = "true" simple = "true" >

    columns = "#{bindings." PeriodTo.hints.displayWidth}"shortDesc =" #{bindings. " PeriodTo.hints.tooltip}"id ="id2 ".

    autoSubmit = "true" simple = "true" >

  • Explore Windows 7 64 bit slow loading screen and windows welcome does not

    Hello guys :D

    I had this problem yesterday and look really weird because I use several method to solve for 'Blocking with the Welcome screen' or 'Windows Explorer is not responding. So here's the problem:
    As I said, I had the windows with the "Welcome" screen stucks But some time later, about 15 minutes that it full load. Well, THIS IS more BIG PROBLEM: my office was black with my cursor! About 10 minutes, this return to normal, BUT the icons are not loaded. And when I click on any folder or right click of mouse, WINDOWS EXPLORER IS NOT the ANSWER (error status code c0000185 InPageCoFire) and need to restart. I restart and once again, does not. My laptop is now like that, turn on, wait 15 minutes and watch "Windows Explorer is not responding" and turns off.
    It makes me really mad. So I really appreciate for your help. Sorry if this question was asked before

    Uh, seems to be still the gel, you can try another way! Enter again the Advanced Boot Options, then choose 'Safe Mode'. Your loading windows basic drivers and services that could help you get into the windows desktop without encountering any problems. Once you're in safe mode, tap Start menu and search for "cmd". Right-click on 'cmd' and select them "run as Administrator". When the command prompt appears, check your disk file system error hard by typing "chkdsk c: /f" (do not type the quotation marks) if "c:" is a drive letter on your Windows 7. Restart your computer, and it checks file system of the disk for errors. When the analysis was finished and reboot, re-enter the Advanced Boot Options, choose "Safe Mode" again. And then open command prompt with administrator, and then type this command "sfc/scannow" (do not type the quotation marks). SFC (System File Checker) can check your file system were healthy or not. Wait until after the analysis. Then, restart your computer. If these tips don't help, update your status question. :)

  • Computer freezing and startup repair does not solve the problem.

    fix my computer when windows start dump then launch startup, but does not solve the problem. Can you help me solve the problem

    Hi Wwiese,

    Thanks for posting your query in Microsoft Community.

    I understand from the description of the problem, the computer freezes in the commissioning on the Windows 7 computer.

    I would appreciate if you can help me with the following information.

    1 were there any hardware or software changes made on the computer before this problem?

    2. are you able to boot into office?

    3. you receive an error message/code?

    I suggest you try these methods and check if it helps.

    Method 1

    Disconnect all external devices (printers, scanner, USB (universal serial bus) drives, etc...) Except the keyboard and mouse and then start.

    If this solves the problem, then add back devices at a time until you discover the piece of hardware causing the issue. Then download drivers software updated for this particular device.

    Method 2

    Try to start in last good known Configuration and see if you can start very well.

    Using the last good known Configuration

    http://Windows.Microsoft.com/is-is/Windows7/using-last-known-good-configuration

    Method 3

    Start the computer in safe mode and check if the problem persists, if the question does not persist then perform the clean boot and check if the problem resolves.

    Step 1

    Safe mode starts Windows with a limited set of files and drivers. Startup programs do not work in safe mode, and only the basic drivers needed to start Windows are installed. Please click the below mentioned link.

    http://Windows.Microsoft.com/en-us/Windows7/start-your-computer-in-safe-mode

    Step 2

    Put the computer in a clean boot state to see if there is a software conflict as the clean boot helps eliminate software conflicts.

    http://support.Microsoft.com/kb/929135

    Note: After completing the steps in the clean boot troubleshooting, follow step 3 from the link to start the computer to a Normal startupmode.

    Method 4

    If the problem persists, I suggest you perform a startup repair and check if it makes a difference.

    Startup Repair: frequently asked questions

    http://Windows.Microsoft.com/en-us/Windows7/Startup-Repair-frequently-asked-questions

    What are the system recovery options in Windows 7?

    http://Windows.Microsoft.com/en-us/Windows7/what-are-the-system-recovery-options-in-Windows-7

    In addition, you can do a System Restore the Windows Recovery Console.

    It will be useful.

    Let us know if you encounter problems with Windows in the future. We will be happy to help you.

  • I have a Nikon D7200 and 12 elements does not read the RAW files. How can I to update or upgrade?

    Hi people. My 12 items does not read the update on the new RAW format Nilon D7200, a well known problem. In my view, that there is a new vintage Reader 9.0 for Photoshop Elements. Anyone know how I can get it? Thank you

    Very kind of you respond and I put your answer. PSE 13 accepts the ACR9.0 oyu know? TKS

  • menu of hyperlink is displayed when text is selected, not when the Menu item is selected. And of course does not display the available links. Where I'm wrong?

    Try to make hyperlinks in a menu item. If I select the menu item, the menu of hyperlinks is not displayed in the menu bar. If I click on new and then the tex in the link is selected, the hyperlink menu appears but the drop down menu does not offer the available links. Where I'm wrong?

    I think you use a menu by default on the page?

    It's design of menu by default, because they are already linked with the respective pages that you can't change.

    You can try to create the menu manual.

    Thank you

    Sanjit

  • My Vista 64-bit is down packages. Load slowly and video streaming does not work.

    My Vista Home Premium 64-bit, is dropping packets. It load slowly and streaming video doesn't work well at all. I changed the modem DSL/wireless 3 times now. The problem persists. I am told that this may be the result of the execution of Windows Vista. It loses about 31% of the packets of information that are sent to, as determined by a test via my DSL server. Is there a fix or I just need to upgrade to Windows 7?
    Help, JMick-lore

    I have the same exact problems with vista.  I tried modems so switching.  I can't listen to anywhere on the computer including windows media player.  Just restored my pc to the factory and the problem is still there.  Don't know what to do.

  • My reading and writing system does not recognize the DVD. For this CD. I don't know why.

    For a long time my system CD/DVD in my laptop Del Estudio 1537 worked perfect. But all of a sudden my computer does not recognize or read or burn DVDs. Can you help me fix this problem?

    Hello

    You have disk problems as the CD/DVD is actually 4 discs in 1 case (CD & DVD burning and)
    Playback of CD and DVD). So it is not unusual for parts from 1 or 2 to not work so that others do
    correctly.

    Burning at low speed, or by using the master could help. A CD/DVD cleaner might help.

    Brand of the CD or DVD drive can also be the problem. Low quality (cheap brands) are always problematic.

    CD/DVDs have a tolerance + - and your can read/write on the edge outside these discs
    tolerances. They may be delivered, but it is generally more economical to replace the disk.

    Several good info here:
    http://Club.myce.com/

    CD/DVD units
    http://www.myce.com/storage/

    Notes on the troubleshooting and repair of readers of compact disks and CD-ROM Drives
    http://www.repairfaq.org/repair/F_cdfaq7.html#CDFAQ_014

    ===========================================

    This troubleshooting could not help if there is alignment and/or wear issues however it
    a shot.

    Step 1: Please do all the same underneath if you did some before as is often total
    a process that solves the problem.

    Try this - Panel - Device Manager - CD/DVD - double click on the device - driver tab.
    Click on update drivers (this will probably do nothing) - RIGHT click ON the drive - uninstall.
    RESTART this will refresh the default driver stack. Even if the reader does not appear to continue
    below.

    Then, work your way through these - don't forget the drive might be bad, could be a coward
    cable or slight corrosion on the contacts (usually for a laptop) and other issues.

    Your CD or DVD drive is missing or is not recognized by Windows or other programs
    http://support.microsoft.com/kb/314060 - a Mr Fixit

    Try this fix manually if the Fixit 314060 does not work
    http://www.pchell.com/hardware/cd_drive_error_code_39.shtml

    Your CD or DVD drive is missing or is not recognized by Windows or other programs-
    a Mr Fixit
    http://support.Microsoft.com/kb/982116

    The CD drive or the DVD drive does not work as expected on a computer that you upgraded to
    for Windows Vista
    http://support.Microsoft.com/kb/929461

    When you insert a CD or a DVD, Windows Vista may not recognize the disc
    http://support.Microsoft.com/kb/939052

    Your CD or DVD drive cannot read or write media - A Mr Fixit
    http://support.Microsoft.com/GP/cd_dvd_drive_problems

    CD/DVD drive does not appear in Windows Vista, or you receive this error in Windows
    Vista installation after booting from the DVD (AHCI)
    http://support.Microsoft.com/kb/952951
    Drive CD - R or CD - RW Drive is not recognized as a recordable device
    http://support.Microsoft.com/kb/316529/

    Hardware devices not detected or not working - A Mr Fixit
    http://support.Microsoft.com/GP/hardware_device_problems

    Another possibility is that the cables are loose. Remove ALL power, then make sure that the cables in both
    ends. Remove and replace, do not just tight. For laptops, you can often clean power and
    contacts data with a pencil eraser.

    Some DVD players do not use the Windows default drivers so check with the manufacturer of system and
    manufacturer of device to see if there is a firmware or drivers for your drive if necessary.

    ===============================

    Step 2: You have disc problems as the CD/DVD is actually 4 discs in 1 case (CD & DVD
    Burn and CD and DVD read). So it is not unusual for 1 or 2 operational so that other parts
    do it right.

    Did you follow the Troubleshooting Guide for the reader who still does not work? There are
    the entries in registry that the troubleshooter does not solve and those who "might" be the cause.

    Check with your Maker system and a device for the two possible firmware updates and
    the correct registry entries for your car.

    Here are the keys that I of course are those in question - for the subkeys of the CD/DVD drive
    as there will be other subkeys in these keys. Do not forget to ask specific keys involved as well as
    the parameters.

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\IDE

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Hardware Profiles\0001\System\CurrentControlSet\Enum\IDE

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\ {4D36E965-E325-11CE-BFC1-08002BE10318}

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

    You can probably find more info here and maybe even the exact registry for your CD/DVD settings
    drive from someone with the same model.

    Forums - a lot of expert real help
    http://Club.myce.com/

    CD/DVD units
    http://www.myce.com/storage/

    Use DevManView to locate the CD/DVD in the registry (be careful and do a prior Restore Point)
    nothing change) - find the DevManView device and then make a right click on it free in RegEdit.

    DevManView - free - an alternative to the standard Windows Device Manager, which displays all the
    devices and their properties in flat table, instead of the tree viewer
    http://www.NirSoft.NET/utils/device_manager_view.html

    I hope this helps.

    Rob Brown - Microsoft MVP - Windows Expert - consumer: bike - Mark Twain said it right.

  • XP will only start in safe mode and System Restore does not resolve the problem

    Don't know not if this is related to the same reported people of BSOD problems after recent updates, but from Tuesday my computer does not start in normal mode.  I can get it to boot in safe mode, however I tried to restore to several different restore points and nothing seems to solve the problem.  Any suggestions?

    Hello

    Many people face this problem after the latest version of windows update on the XP machine. I would like to know where are the updates that have been installed on your computer Tuesday. You can view them from the Windows update history by examining it from the Windows update site.

    In case, if the KB977165 has been installed then, take a look at this thread and check if this helps you boot normally to the desktop.
    http://social.answers.Microsoft.com/forums/en-us/vistawu/thread/73cea559-ebbd-4274-96bc-e292b69f2fd1

    If the update history shows the other updates in the history list, please let us know the xxxxxx KB (number) updates, so that we can try to help you the best.

    We hope to hear from soon.

    Kind regards
    Clement Kumar.

    Microsoft Answers Support Engineer. Visit our Microsoft answers feedback Forum and let us know what you think.

  • Unable connect to GMAIL because "the browser not to accept cookies. I deleted the cache and cookies, but does not solve the problem.

    My problem is with IE - 8 on Vista 64-bit.

    Following the instructions to "bypass" of Microsoft for the Microsoft Security Advisory (2757760).

    I changed a number of privacy and security settings block access by the attack vehicle.  To restart the computer, Google doesn't let me sign into my Gmail account because my browser does not accept cookies.
    I tried recommendation Google next to allow cookies, then the empty browser history and delete cookies.  Always without success.
    I have reset the IE setting privacy and advanced security "by default".  Always without success.
    I just downloaded the hotfix from Microsoft security for the same problem, but Gmail still insists on the fact that my browser is NOT enabled to accept cookies.  All cookies related pick boxes are enabled.
    This is as far as I know.

    My problem is with IE - 8 on Vista 64-bit.

    Following the instructions to "bypass" of Microsoft for the Microsoft Security Advisory (2757760).

    I changed a number of privacy and security settings block access by the attack vehicle.  To restart the computer, Google doesn't let me sign into my Gmail account because my browser does not accept cookies.
     
    I tried recommendation Google next to allow cookies, then the empty browser history and delete cookies.  Always without success.
     
    I have reset the IE setting privacy and advanced security "by default".  Always without success.

    I just downloaded the hotfix from Microsoft security for the same problem, but Gmail still insists on the fact that my browser is NOT enabled to accept cookies.  All cookies related pick boxes are enabled.
    This is as far as I know.

    Use Firefox or Google Chrome.  ;-)
    (Seriously - you will have a better experience for the most part.)

    Reset Internet Explorer 8 settings:

Maybe you are looking for