PLSQL update problem, very strange, am i making stupid mistake?

PROCEDURE update_member( membersid in hkmembers.memberid%TYPE,
firstname in hkmembers.firstname%TYPE,)
IS
BEGIN
update hkmembers
set FIRSTNAME = firstname
where MEMBERID = membersid;
DBMS_OUTPUT.put_line(firstname);
END;
i test the procedure, and it returns message telling that the execution is run successfully, but make no effect of the update.....
i try add "commit;" at the end but it doent work either coz the only thing that commit does is stopping you rollback...
Can anyone spot my stupid mistake?
Thank you very much

Problematic line is:
set FIRSTNAME = firstname -- column name = parameter name
Use different names for parameters, for example:
PROCEDURE update_member(
  p_membersid IN hkmembers.memberid%TYPE,
  p_firstname IN hkmembers.firstname%TYPE)
IS
BEGIN
  UPDATE hkmembers
     SET firstname = p_firstname
   WHERE memberid  = p_membersid;
END;
/Regards,
Zlatko
This is an example of optimistic locking :)
Message was edited by:
Zlatko Sirotic

Similar Messages

  • 10.4.10 update and very strange problem with Mac Mini

    Dear All,
    I have just updated my Mac Mini Intel and I am having a strange problem.
    My Mac Mini has problems booting up. Sometimes I get through the login screen as normal but my wallpaper shows and there are no desktop icons, no dock, no top of screen finder menu bar. Some other times I get stuck in the progress bar of the booting up.
    I tried to run utilities from install disk and there were no problems detected.
    The VERY STRANGE thing is that several times now as I put my fingertip onto the power button laying it on the button but not pressing it yet (because I would like to shut down the system), the system kicks in and becomes unfrozen!!!
    Someone in the 123macmini.com forum says that this problem is related to the airport receiver which is near the power button.
    What do you think about it???
    MacBook and MacMini   Mac OS X (10.4.10)  

    ok, I have found a kind of fix for the problem, although may run a hardware test to check something!.
    I unplugged all USB and Firewire devices, I turned off Bluetooth and Airport, reinstalled the 10.4.10 combo update, when it restarted the starting mac osx screen took barely a second or 2 to load (my comment above is becuase from when I first got it on Sunday I noticed it was slow to boot up, also noticed that the screen resoulution I have set does not kick in until I log on, although this may be becuase this mac mini is an intel one). The computer booted up very quickly and I tuend on bluetooth and airport with no issues and plugged all the usb and fireware devices back in. I again turned the airport off and restarted and again it booted up very quickly logged on and swithced the airport back on. I decided to reboot with the sirport on and it got stuck at the end of the os x starting up screen, I waited a few mins switched it off and on again and it booted up fine although slower. I dont mind turning the airport off when I power down as the mac usually stays on anyway. I assume Apple will release a fix for this as a lot of people seem to have the problem so think I will stay put with this for the time being. It was taking a several goes to get to the login screen before but usually got there every few boots.

  • Applet problem very strange must read

    Hi
    all of u.
    I have very strange problem in applet.
    i created a news ticker in java applet that is running successfully . i kept in the site also that is working .when i created two same applet in my one page it will get out side after 2 hours .out side that means on the top of window. if i use only one then its ok. i don't know what happen.if any one know the solution plz tell me what is the issue.
    rakesh.

    Hi Rohit,
    It was nice to hear that your problem is solved. Thanks for sharing the solution with all of us .
    Regards
    Vineeth

  • XSLT problem (very strange problem)

    I am working on TRANSFORM activity. The schema of element that is giving problem in destination schema is ...
    <xs:element name="CustomInformation">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="ColumnValue" minOccurs="0" maxOccurs="unbounded">
    <xs:complexType mixed="true">
    <xs:sequence>
    <xs:element name="Value" minOccurs="0" maxOccurs="unbounded"/>
    <xs:element name="Documents" type="DocumentsType" minOccurs="0"/>
    <xs:element name="tsvData" type="tsvType" minOccurs="0" maxOccurs="unbounded"/>
    </xs:sequence>
    <xs:attribute name="name" type="xs:string" use="required"/>
    </xs:complexType>
    </xs:element>
    <xs:element name="instance" type="InstanceType" minOccurs="0" maxOccurs="unbounded"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    I want output like this...
    <ns1:CustomInformation>
    <ns1:ColumnValue name="client_name">value of source field</ns1:ColumnValue>
    <ns1:ColumnValue name="fa_sales_owner">value of source field</ns1:ColumnValue>
    </ns1:CustomInformation>
    I am trying this code in TRANSFORM source code...
    <ns1:CustomInformation>
    <ns1:ColumnValue>
    <xsl:attribute name="name">
    <xsl:text disable-output-escaping="no">client_name</xsl:text>
    </xsl:attribute>
    <xsl:text disable-output-escaping="no">*<xsl:value-of select="/ns0:SfOpportunityIntfCollection/ns0:SfOpportunityIntf/ns0:accountName"/>*</xsl:text>
    </ns1:ColumnValue>
    <ns1:ColumnValue>
    <xsl:attribute name="name">
    <xsl:text disable-output-escaping="no">fa_sales_owner</xsl:text>
    </xsl:attribute>
    <xsl:text disable-output-escaping="no">*<xsl:value-of select="/ns0:SfOpportunityIntfCollection/ns0:SfOpportunityIntf/ns0:clientExecutive"/>*</xsl:text>
    </ns1:ColumnValue>
    </ns1:CustomInformation>
    against this xml...
    <SfOpportunityIntfCollection xmlns="http://xmlns.oracle.com/pcbpel/adapter/db/top/iSalesAdapter">
    <SfOpportunityIntf>
    <accountId>3</accountId>
    <accountName>4</accountName>
    <clientExecutive>15</clientExecutive>
    <recordType>16</recordType>
    </SfOpportunityIntf>
    </SfOpportunityIntfCollection>
    But the element 'ColumnValue' is coming blank(tag <xsl:value-of> is not working). while the same statement is working out of <customInformation> element!!!
    Can anybody help me?

    Thanks for the link.
    I created a seperate project for xslt but still the same problem. But when I tried with removing <xsl:text disable-output-escaping="no">, it worked. Very strage, but yet don't know what was the problem :) If you know then please let me know.
    Can you help me in other queries too...
    1. In my Empty BPEL process I am receiving data through db partnerlink (through polling) and I am converting it through Transform activity. This time I am only validating my xslt through GUI only. At runtime what xml will be generated, how I can see it? Is there any way to output/log it?
    2. I want one more help from you. In xslt code, I need to put some transformation logic eg. if-else according to the specific value, check for null, blank values etc. Somewhere I read that I can do all this validation in java code also. What will be comfortable?
    3. In output xml, I want to remove the xml declaration as well as namespace declaration for 'ns1' and all prefixed 'ns1' from all element. Is that possible in the same transform process? like this...
    *<NikuDataBus>*
    *<Projects>*
    *<Project name="2" projectID="1" description="13" start="2009-08-04T16:02:23.390" finish="2009-08-04T16:02:23.390">*
    *<CustomInformation>*
    *<ColumnValue name="client_name">4</ns1:ColumnValue>*
    *<ColumnValue name="fa_sales_owner">15</ns1:ColumnValue>*
    *</CustomInformation>*
    *</Project>*
    *</NikuDataBus>*
    Please reply for my all queries.
    Edited by: vicky_007 on Aug 4, 2009 4:49 PM

  • EAS Data Load Problem - Very Strange!

    Hi there,<BR><BR>Has anyone came across the following problem?<BR><BR>Within EAS using any of our applications, or a newly created application, if we create a new rule's file (or open an existing) that much is fine.<BR><BR>However - as soon as we try and "Open Data File" to preview the data in the rule's file - EAS just hangs for anything upto 50minutes before popping up the dialog box to select which data file we want to open.<BR><BR>This does not happen on the server - it works straight away, it only happens when we try and do it on any of the client machines.<BR><BR>Anyoen came across anything like this before?<BR><BR>Cheers.

    <blockquote>quote:<br><hr><i>Originally posted by: <b>brianf08</b></i><BR>I have seen something like this on early version of EAS. Exactly what version is installed on your server and client machines. What operating sytem as well.<BR><BR><BR><BR>Brian<hr></blockquote><BR><BR><BR>We are using EAS 7.1.2 as server and client on a Windows 2003 server. Client machines are XP Professional.<BR><BR>Do you think its worth moving upto 7.1.5?

  • A very strange problem in microsoft access

    Hi all,
    Recently I wrote a simple java application which use microsoft access as the database. I connect the database sucessfully and I've even done the regular expression to filter the invalid text characters, everything works fine util I do the following SQL:
    insert into test values 'client for updates'
    Here test is my table name
    I found this perticular string 'clent for updates' is very strange, it can't be inserted into the database, I try 'client for up' or something else, they all work.
    Could anyone tell me what happened?
    With my best,
    Zike Huang(jim)

    My problem is, even I've written the SQL in the correct syntax, in my java code, it just look like this
    adc.SQL("insert into test(subject, content) values('" + sf.filter(subject.getText()) +"'"
                                  + "," + "'"
                                  + sf.filter(board.getText()) + "')" );
                                  subject.setText("");
                                  board.setText("");
    where subject is a textfield and board is a JTextArea and sf is a string filter which use regular expression, I basically want to insert the string in these component into the database, Many strings work, but client for updates can't be inserted.
    With my best,
    Zike Huang

  • Sending email, very strange

    Hello all!
    I am having a problem very strange.. first i have two procedures that send emails with a pdf in attach, ok the both is indentical.. but when i execute one this show a message with error:
    "ORA-22288- FILE OR LOP OPERATION FAILED"
    but in other the email was send right, i don't know more what can be, th both procedures use the same directory..
    CREATE OR REPLACE procedure P_ENVIA_EMAIL_TESTE (V_REPORT IN VARCHAR2,V_COD_ACCOUNT IN NUMBER) is
    p_sender varchar2(100);
    p_recipients varchar2(100);
    p_subject varchar2(100);
    p_filename varchar2(100);
    p_blob blob;
    V_NOME_ARQUIVO VARCHAR(50);
    conn utl_smtp.connection;
    i number;
    len number;
    vFlob BFILE;
    vBlob BLOB;
    v_arquivo2 varchar2(100);
    BEGIN
    UPDATE CITEMP_EMAIL SET arquivo = (EMPTY_BLOB()) WHERE COD_ACCOUNT = V_COD_ACCOUNT
    Return arquivo Into vBlob;
         vFlob := BFILENAME('ORALOAD',V_report);
    DBMS_LOB.FILEOPEN(vFlob,DBMS_LOB.FILE_READONLY);
    DBMS_LOB.LOADFROMFILE(vBlob,vFlob,DBMS_LOB.GETLENGTH(vFlob));
    DBMS_LOB.FILECLOSE(vFlob);
         SELECT ARQUIVO,EMAIL_CONF, NOME_REPORT INTO P_BLOB, P_RECIPIENTS, v_nome_arquivo FROM CITEMP_EMAIL WHERE COD_ACCOUNT = V_COD_ACCOUNT;
         SELECT SENDER, MARGIN_SUBJECT INTO P_SENDER, P_SUBJECT FROM CIMASTER_EMAIL;
    conn := demo_mail.begin_mail(
    sender => p_sender,
    recipients => p_recipients,
    subject => p_subject,
    mime_type => demo_mail.MULTIPART_MIME_TYPE);
    demo_mail.begin_attachment(
    conn => conn,
    mime_type => 'application/pdf',
    inline => TRUE,
    filename => V_REPORT,
    transfer_enc => 'base64');
    -- split the Base64 encoded attachment into multiple lines
    i := 1;
    len := DBMS_LOB.getLength(p_blob);
    WHILE (i < len) LOOP
    IF(i + demo_mail.MAX_BASE64_LINE_WIDTH < len)THEN
    UTL_SMTP.Write_Raw_Data (conn
    , UTL_ENCODE.Base64_Encode(
    DBMS_LOB.Substr(p_blob, demo_mail.MAX_BASE64_LINE_WIDTH, i)));
    ELSE
    UTL_SMTP.Write_Raw_Data (conn
    , UTL_ENCODE.Base64_Encode(
    DBMS_LOB.Substr(p_blob, (len - i)+1, i)));
    END IF;
    UTL_SMTP.Write_Data(conn, UTL_TCP.CRLF);
    i := i + demo_mail.MAX_BASE64_LINE_WIDTH;
    END LOOP;
    demo_mail.end_attachment(conn => conn);
    demo_mail.attach_text(
    conn => conn,
    data => NULL,
    mime_type => 'text/html');
    demo_mail.end_mail( conn => conn );
    END;
    please help me!

    1) What is the complete error stack? The error should come with a line number, what is on that line?
    2) I'm assuming that you don't have identical procedures in the same database, right? Does that imply that you have a procedure that works on one database and not on another?
    3) Is the ORALOAD directory created on both systems? Do both procedure owners have access to that directory object? Does the Oracle user on the operating system have access to the specified directory on both systems? Does v_report exist on both file systems?
    Justin

  • A Very Strange Post Update Problem

    Hi guys, new to the forum here, wondering if I could get some help with a most disturbing problem...
    Off the bat, I use a ppc Mac G5 running 10.4.11. I use this for Music production, and general music listening in my studio. For Audio I use pro tools HD 7.3 (as well as logic 8), with a digidesign 192 IO interface, and run most ofmy audio thru that. Now that we have that out the way... I normally dont agree to updates, as I would not like to upset a balance thats been working perfectly for me for some time, but 2 days ago, one of my assistants was using the computer and agreed to the latest update for Itunes, quicktime, and logic (but not the security update). Immedietly after the update finished (during which he said the quicktime update crashed), the system started going haywire, pro tools was shutting down, itunes wouldn't open, the like... Well after uninstalling and reinstalling itunes and quicktime, all order was restored, except for one AWFUL problem.. the sound coming out of any program BESIDES pro tools (itunes, logic, toast) is very strange, as if its coming thru very cheap speakers. I've run itunes through both the digi interface and the standard sound card (it has the same problem), and checked the EQ settings (flat), my sample and bit rates are straight... I have no idea! if anyone could offer some insight, It would be much appreciated! Thanks!!

    HI and Welcome to Apple Discussions...
    It's possible there's an underlying problem with your hard drive.
    Insert the installer disk and Restart, holding down the "C" key until grey Apple appears.
    Go to Installer menu (Panther and earlier) or Utilities menu (Tiger and later) and launch Disk Utility.
    Select your HDD (manufacturer ID) in the left panel.
    Select First Aid in the Main panel.
    *(Check S.M.A.R.T Status of HDD at the bottom of right panel. It should say: Verified)*
    Click Repair Disk on the bottom right.
    If DU reports disk does not need repairs quit DU and restart.
    If DU reports errors Repair again and again until DU reports disk is repaired.
    When you are finished with DU, from the Menu Bar, select Utilities/Startup Manager.
    Select your start up disk and click Restart
    Also, make sure you have sufficient drive space. Control or right click the MacintoshHD icon on your Desktop. Click "Get Info". Under the General tab you will see Capacity and Available. Make sure there is at least 10% available disk space, 15% is better.
    If the drive appears to be ok and you have enough available disk space, you could try the 10.4.11 combo update available here. http://www.apple.com/downloads/macosx/apple/macosx_updates/macosx10411comboupdat eppc.html
    Make sure and run Disk Utility and repair disk permissions BEFORE and AFTER the installation.
    Quit any open applications/programs. Launch Disk Utility. Select MacintoshHD in the panel on the left, select the FirstAid tab. Click: Repair Disk Permissions. When it's finished from the Menu Bar, Quit Disk Utility and restart your Mac.
    Carolyn

  • Very Strange Internet Problems

    I own a MacBook Pro 15.4 Inch that I purchased about a year and a half ago. I recently upgraded to Leopard and have all the latest updates. I am from the US, and when I am home my internet works fine. However, I am on travel to Seoul, South Korea right now and am having a very strange internet problem.
    As far as I can tell, the URLs that I type in to my browser are, sparodially, not translated correctly into the webpages that they are supposed to represent. This problem is probably effective 75% of the time, and the rest of the time my internet works roughly correctly. For instance, when I enter http://www.google.com, instead of being taken to the Google homepage, I am taking to the homepage of Jammin Beats DJ Service, an obscure website about a company in northern Pennsylvania. The actual URL of this website is http://www.jamminbeats.com, but when my internet is malfunctioning, 'jamminbeats' is for all intensive purposes replaced by 'google' (that is, it applies not only to the main page, but to sub pages, so "http://www.google.com/weddings" takes you to "http://www.jamminbeats.com/weddings" and etc). For most other webpages, one of two things happens. Either I am taken to the correct page but it is displayed without any images or frames (just the html text and links), or I am taken to a blank page with the header "Under Construction", which I assume is the default for a page that doesn't exist. This is why it seems as though the URLs are simply being interpretted erroneously.
    This problem occurs when connecting both to the wireless and the wired internet at my hotel, and it occurs on both Safari and Firefox, so it is not a connection-specific or browser-specific problem. It may be a problem with the hotel's internet, and as of yet I have not had a chance to test the computer at another location. However, a colleague using an IBM computer has had no problems, and I am currently on a Samsung machine in the business center of the hotel and it is working correctly as well. I have searched extensively online for a similar problem but have come up empty handed, and more than anything, I am confused about what might be causing this problem. The strangest thing is that a fraction of the time, the internet functions normally, but it is usually roughly 15 minutes out of every hour, and eventually I am inevitably taken back to Jammin Beats.
    I am a computer science graduate but I still have no idea what would cause this problem. At first I thought it might be a hacker, but if it is, he or she has been at it consistently for 3 days now, and only seems to be targeting my computer. Any ideas or solutions would be greatly appreciated, as I have been forced to resort to the hotel's business center for checking email, doing work, etc. Thanks in advance.

    I did consider that, as I was in Beijing last week and there are a number of censored sites. However, in Korea I have had problems with very basic sites like facebook, wall street journal, google, yahoo, Korean google, my hotel's webpage, etc. Further, I have successfully gotten all of these sites to load seemingly at random, and can access them without problems on other computers. The only disconnect seems to be between my MBP and the internet, not between Korean internet and the web. I have toyed around with the network settings, and although sometimes after switching from "Automatic" to a fixed connection I get some sites to work, it usually only lasts a short time and eventually the same sites stop working. I reset my cache regularly to make sure I'm not getting sent to cached sites, but this also doesn't help. Further, my Apple Mail, Skype and AIM accounts jump between being connected and disconnected randomly as well. Again, this is isolated to my own computer, which is why I'm so confused.

  • Very strange thing after 10.7.3 update?

    Very strange thing after 10.7.3 update?
    Everything seems to be working normal except the desk top BBC iPlayer which plays fine in a small window but when you go to full screen still plays the sound but the screen just goes black, no video?
    I thought maybe the update knocked off one of the plugins or players but reinstalled iPlayer and same problem, anyone got a workaround or suggestion as to how I can fix it, am I the only one?
    Full screen YouTube works fine.
    Everything else seems ok, maybe running a little hotter and the fans are kicking in a little sooner but does feel a little snappier.
    Thanks
    Phil

    Seems like they are on it
    http://iplayerhelp.external.bbc.co.uk/help/announcements/full_screen_mac_desktop
    I hope it doesnt take too long

  • Very strange problem. Missing characters in QT applications

    Hello all.
    I'm trying to deal with a very strange issue since some time, that is driving me crazy, because I have no clue where the problem may lay:
    In my Archlinux system, some, and only some QT applications (for example Skype, or Qtconfig) don't display properly certain characters in the unicode set (for example "ń" or "ł") when I use certain fonts (for example Terminus, Clean or Verdana), and those applications substitute those characters with the corresponding ones from the Bitstream Vera Sans font type.
    So, when I write, say, the Polish word "Toruń", the four first letters (T, o, r and u) are rendereed in the desired font type (let's say Terminus). However, the last letter (ń) is rendered in Bitstream Vera Sans, thus making the writing appear really ugly and uneven.
    However, this doesn't happen in Opera (the browser), which is a QT application, but where I get the whole unicode character set displayed properly in the desired font type (Terminus in this example).
    Also, this doesn't happen in the rest of non-QT applications I have in my system: all of them render perfectly the whole unicode set of characters in the desired font type, no matter which.
    But! it's not a problem of those QT applications, because I have another partition with Ubuntu installed, and when I boot that partition I don't have this problem: all applications, including Skype and Qtconfig, display correctly all characters in the whole unicode set, no matter which font type I'm using.
    This is totally bewildering me.
    Any clue?
    Thank you.

    The problem is not only in qt applications. I run openbox and this is the output I get when using the command-line script pdfmerge to merge pdf files:
    GPL Ghostscript 8.71: Missing glyph CID=48, glyph=0030 in the font VerdanaBold . The output PDF may fail with some viewers.
    GPL Ghostscript 8.71: Missing glyph CID=49, glyph=0031 in the font VerdanaBold . The output PDF may fail with some viewers.
    GPL Ghostscript 8.71: Missing glyph CID=31, glyph=001f in the font VerdanaItalic . The output PDF may fail with some viewers.
    GPL Ghostscript 8.71: Missing glyph CID=38, glyph=0026 in the font VerdanaItalic . The output PDF may fail with some viewers.
    GPL Ghostscript 8.71: Missing glyph CID=37, glyph=0025 in the font VerdanaItalic . The output PDF may fail with some viewers.
    GPL Ghostscript 8.71: Missing glyph CID=34, glyph=0022 in the font VerdanaItalic . The output PDF may fail with some viewers.
    GPL Ghostscript 8.71: Missing glyph CID=54, glyph=0036 in the font VerdanaBold . The output PDF may fail with some viewers.
    GPL Ghostscript 8.71: Missing glyph CID=44, glyph=002c in the font VerdanaBold . The output PDF may fail with some viewers.
    GPL Ghostscript 8.71: Missing glyph CID=50, glyph=0032 in the font VerdanaBold . The output PDF may fail with some viewers.
    GPL Ghostscript 8.71: Missing glyph CID=77, glyph=004d in the font Verdana . The output PDF may fail with some viewers.
    There are visible errors in the pdf output. For example, bold "C" is replaced by a square box, bold "b" is replaced by a space.
    It looks like there's bug in the Verdana font or perhaps in Ghostscript 8.71

  • A very strange problem in netbeans

    i debug a project in netbeans,a a very strange problem happens.
    a member variable was different between wtk20 and wtk22.and the variable was changed many places so it's hard to trace!
    but there hasn't the problem when i debug project in jbuilderx!

    My problem is, even I've written the SQL in the correct syntax, in my java code, it just look like this
    adc.SQL("insert into test(subject, content) values('" + sf.filter(subject.getText()) +"'"
                                  + "," + "'"
                                  + sf.filter(board.getText()) + "')" );
                                  subject.setText("");
                                  board.setText("");
    where subject is a textfield and board is a JTextArea and sf is a string filter which use regular expression, I basically want to insert the string in these component into the database, Many strings work, but client for updates can't be inserted.
    With my best,
    Zike Huang

  • Hey, i have very strange prob with my iphone 5(latest version/updated), after resetting it, so it doesn't connect to my laptop, even it doesn't charge too. it does charge from wall charger i try all the possible methods but still i am facing the prob

    Hey, i have very strange prob with my iphone 5(latest version/updated), after resetting it, so it doesn't connect to my laptop, even it doesn't charge too. it does charge from wall charger i try all the possible methods but still i am facing the prob any fix/solution for it.. Helppppp!!!!!!!!!!!!!!!!!!!!!!!! As soon as possible, it will be gratefulness,
                                Thnksssssss....

    So you are saying that you followed all of the steps in the support document for problems with connection, including removing and reinstalling iTunes? You do not say what you have tried, so it is hard to make recommendations. If this is the case, then you have tried resolving driver issues? What if you go to Device Manager and look for the iPhone. You should be able to click on it and see about drivers. You can update/reinstall the device driver.

  • Very strange problems since upgrading.

    Ok, since I did a Pacman -Syu a week or so ago, I've been having some very strange issues.
    Number one, about 60-70% of the time I am completely unable to log into the box, I end up rebooting over and over to finally get the desktop environment to successfully load. It ran fine before. My rc.conf looks like this:
    LOCALE="en_US.utf8"
    HARDWARECLOCK="UTC"
    USEDIRECTISA="no"
    TIMEZONE="America/Los_Angeles"
    KEYMAP="us"
    CONSOLEFONT=
    CONSOLEMAP=
    USECOLOR="yes"
    MYTHCONFDIR="/home/mythtv"
    MOD_AUTOLOAD="yes"
    MODULES=(dm_mod fuse)
    USELVM="no"
    HOSTNAME="hosty"
    eth0="dhcp"
    eth1="dhcp"
    INTERFACES=(eth0 eth1)
    gateway="default gw 192.168.xxx.xxx"
    ROUTES=(!gateway)
    DAEMONS=(syslog-ng network netfs crond hal fam apcupsd httpd mysqld ntpd gdm)
    What will happen is gnomes new login screen (I assume it's gnomes new login screen anyway), will pop up, I'll log in by selecting name, entering password... all fine. Then the hard drive will go nuts for a second or so (expected), and I'll get an untitled window that pops up and says:
    unable to update ICEauthority file /home/user/.ICEauthority
    Which is strange, since to my understanding, I've never installed or used ICE. Then another window pops up with more information that I am unable to remember (too long). Then it will grind a bit, then stop at the same leaf background gnome startup used, then a final window will pop up complaining that Nautilus is unable to create the directories  "/home/user/Desktop" or "/home/user/.Nautilus".... which is complete horsecrap since those directories have existed on this hard drive for years now.
    Then it simply stops at the leaf background, and nothing else loads. So of course my first thought when I upgraded was, aw crap, X needs some work again. So I immediately do a {CTRL}-{ALT}-{F2} to get a bash prompt... and suddenly the plot thickens... I get nothing, just a blank screen with a cursor in the upper left. No bash login, nothing. So again I figure, ok, no big deal, I logged on F7, I'll just go back and kill X... I go back, still leaf screen, then hit {CTRL}-{ALT}-{BSPACE}... nothing. I can't kill X, and I can't get a bash login. I'm stuck. The only command that works is {CTRL}-{ALT}-{DEL}.
    So of course being the lazy bastard that I am, and this box being a MythTV box, I figure, no problem, I'll fix that later since if I reboot enough I can get logged in and everything is fine, I'll just leave it running like I always do. Except for last night when I decide to tackle the problem. I thought I was being very smart when I removed 'gdm' from the final daemon in /etc/rc.conf... until I realized that just left me with a computer that had booted, but NO BASH LOGIN PROMPT. Nothing, no way to control the computer at all. I was just sitting there watching my Mythbackend spit out notices and errors one by one, unable to get any sort of # or $. I managed to grab an old archlinux CDrom and use it to rescue the system by restoring an old /etc/rc.conf, but I have no understanding why I would not get a login prompt.
    So you see, I'm quite stuck. I cannot seem to get any sort of command-line login prompt without X running (terminal still works) to fix things. And 60-70% of the time, X/gnome will not finish starting up. Any help?
    Last edited by jeremyrainman (2009-12-02 14:24:10)

    miau wrote:
    Maybe you are ot allowed to write the ICEauthority file...what is the output of
    ls -l /home/user/.ICE*
    output is:
    $ ls -l /home/user/.ICE*
    -rw------- 1 user user 12878 2009-12-02 11:41 /home/user/.ICEauthority
    schuay wrote:
    Not having a bash login prompt looks either like
    a fscked /etc/inittab. Your output should look like this:
    ~]$ grep tty /etc/inittab
    c1:2345:respawn:/sbin/agetty -8 38400 tty1 linux
    c2:2345:respawn:/sbin/agetty -8 38400 tty2 linux
    c3:2345:respawn:/sbin/agetty -8 38400 tty3 linux
    c4:2345:respawn:/sbin/agetty -8 38400 tty4 linux
    c5:2345:respawn:/sbin/agetty -8 38400 tty5 linux
    c6:2345:respawn:/sbin/agetty -8 38400 tty6 linux
    Or this:
    http://bbs.archlinux.org/viewtopic.php?id=80939
    I looked through that thread there, it sounds like a udev + kernel 31 issue? so I promptly did:
    $ uname
    Linux
    And suddenly became alarmed that I'm not seeing a linux version number. Why would this happen? I went through what fixed it for other people on that thread (renaming udev directories, reinstalling udev), and it hasn't made any difference, so I think this is a different issue.
    The other two suggestions in this thread would seem to be worthless since the /.ICEauthority file has the proper ownership/permissions.
    Still at a loss. wiping and reinstalling is not pretty on a mythbox with nearly a terrabyte of recorded TV.

  • Very strange Arch Problem

    I have a very strange problem with Arch. I know the title isn't very descriptive, but i don't have a quick, short way to say this:
    I love Arch. I use it as a "secondary OS" and other than the times when i'm playing with other distros to see how they've changed, i'm in Arch on my devel system and a few others....However, i still use Debian (Testing) as my desktop/laptop/primary PC OS. For the longest time (probably well over a year), i could not figure out why i could not bring myself to use Arch as my primary OS.
    About 2 days ago, i finally had a epiphany (Well...someone smacked me with a CD-R containing the source for the Epiphany Browser, but that's besides the point). The reason i can't use Arch as a primary desktop is because in Arch, i'm too tempted to play with stuff, play with new apps, break stuff, etc and like most people (probably), on my main Desktop, i want stuff to work...I don't want to be breaking things on a weekly basis.
    I was wondering if anyone else has this problem or if people could give me some advice as to how to get over it or something.

    string wrote:
    Maybe someone somewhere should create some sort of "Arch Linux updaters anonymous". "Hi, my name is jdhore and I update my system daily" (others reply:) "Hi jdhore..".
    All joking aside, come on, admit it, you don't actually have a problem, you just wanted some Arch Linux community love -- nothing wrong with that, mind you -- it's why I'm here too. "I'm afraid to buy a car because I might be tempted to drive it off a cliff." .. you'd have to have some *serious* problems in order for stuff like that to be credible.
    Don't want to break stuff: then don't. Just keep telling yourself that the cake is a lie.
    dude...That's exactly why i don't have a car...

Maybe you are looking for

  • MRP - Ponto de Ressuprimento (VB-HB)

    Senhores, devido á crise, preciso mudar a forma de executar o MRP, que até então é o tipo VB e o tamanho do lote HB (estoque máximo). Só que eu preciso comprar até atingir o ponto de ressuprimento (estoque mínimo) e não o estoque máximo. Há alguma fo

  • Prevent documents opening full screen

    Is there a preference (or file) that can be set/modified to prevent all documents from opening full screen? Opening a 100x30 pixel image and have it cover my entire cinema display is not helpful. Thanks!

  • My Apple ID is locked on the iPad - who do I call to fix it?

    My Apple ID is locked on the iPad - who do I call to fix it?

  • Help with alternate sql statement?

    I have the following setup: create table sc_t1 ( n1 number, n2 number, n3 number, constraint sc_t1_pk primary key ( n1 ) ); create table sc_t2 ( n1 number, n2 number, primary key ( n1 ) ) organization index; insert into sc_t1 values ( 1, 2, 1); inser

  • How to sync my contacts from iphone4s to mac

    MacBook Pro running OS X 10.8.4. Iphone 4S. Unable to import my contacts from Iphone to MacBook