|
|
|
|
|
|
Re: A very long code line [message #379688 is a reply to message #379658] |
Wed, 07 January 2009 11:55 |
|
Littlefoot
Messages: 21823 Registered: June 2005 Location: Croatia, Europe
|
Senior Member Account Moderator |
|
|
Let's see!
JRowbottom's quote | ORA-28547: connection to server failed, probable Oracle Net admin error
Cause: A failure occurred during initialization of a network connection from a client process to the Oracle server: The connection was completed but a disconnect occurred while trying to perform protocol-specific initialization, usually due to use of different network protocols by opposite sides of the connection. This usually is caused by incorrect Oracle Net administrative setup for database links or external procedure calls. The most frequent specific causes are: -- The connection uses a connect string which refers to a Heterogeneous Services agent instead of an Oracle server. -- The connection uses a connect string which includes an (HS=) specification.
Action: Check Oracle Net administration in the following ways: -- When using TNSNAMES.ORA or an Oracle Names server, make sure that the client connection to the ORACLE server uses the correct service name or SID. -- Check LISTENER.ORA on the connection end point's host machine to assure that this service name or SID refers to the correct server. -- Confirm in TNSNAMES.ORA or the equivalent service definition that the connect string does NOT contain (HS=).
|
[EDIT]
c00l!
[Updated on: Wed, 07 January 2009 11:56] Report message to a moderator
|
|
|
Re: A very long code line [message #379693 is a reply to message #379658] |
Wed, 07 January 2009 12:29 |
|
Michel Cadot
Messages: 68718 Registered: March 2007 Location: Saint-Maur, France, https...
|
Senior Member Account Moderator |
|
|
Let's see with code tags, not quote one that already wrap:
ORA-28547: connection to server failed, probable Oracle Net admin error
Cause: A failure occurred during initialization of a network connection from a client process to the Oracle server: The connection was completed but a disconnect occurred while trying to perform protocol-specific initialization, usually due to use of different network protocols by opposite sides of the connection. This usually is caused by incorrect Oracle Net administrative setup for database links or external procedure calls. The most frequent specific causes are: -- The connection uses a connect string which refers to a Heterogeneous Services agent instead of an Oracle server. -- The connection uses a connect string which includes an (HS=) specification.
Action: Check Oracle Net administration in the following ways: -- When using TNSNAMES.ORA or an Oracle Names server, make sure that the client connection to the ORACLE server uses the correct service name or SID. -- Check LISTENER.ORA on the connection end point's host machine to assure that this service name or SID refers to the correct server. -- Confirm in TNSNAMES.ORA or the equivalent service definition that the connect string does NOT contain (HS=).
[Edit]
I don't see any difference for the moment.
Regards
Michel
[Updated on: Wed, 07 January 2009 12:30] Report message to a moderator
|
|
|
|
an [message #379699 is a reply to message #379697] |
Wed, 07 January 2009 13:09 |
|
Michel Cadot
Messages: 68718 Registered: March 2007 Location: Saint-Maur, France, https...
|
Senior Member Account Moderator |
|
|
There is a current discussion on about the same subject in Test forum.
If you don't mind I merge your post with this topic.
And maybe we could move the whole topic from Test to Suggestion & Feedback
Regards
Michel
[Updated on: Wed, 07 January 2009 13:10] Report message to a moderator
|
|
|
|
|
|
|
|
Re: linesize and post width of subsequent posts [message #379960 is a reply to message #379839] |
Thu, 08 January 2009 11:35 |
|
Barbara Boehmer
Messages: 9100 Registered: November 2002 Location: California, USA
|
Senior Member |
|
|
When posting code examples, especially results with a lot of columns, it is easier to read if we can scroll. Wrapping it makes it difficult to decipher. However, I prefer wrapping everything else, like paragraphs of explanation, at 80. Otherwise, scrolling back and forth to read a paragraph is awkward and using hard returns to circumvent that is ugly. Although I have a normal size screen, I frequently use the Firefox feature of pressing "Ctrl" and "+" to enlarge the print, so it is easier to read, which makes it so that I can only read a smaller portion of text at a time. Getting a new pair of glasses with a stronger magnification is on my list of things to do.
It looks like I will have to scroll way to the right just find the submit reply key to post this and the preview looks like it is going to be really difficult to read, so I hope it doesn't go unread.
|
|
|
|
|
|
Re: linesize and post width of subsequent posts [message #380098 is a reply to message #380060] |
Fri, 09 January 2009 02:59 |
Frank Naude
Messages: 4581 Registered: April 1998
|
Senior Member |
|
|
Everyone should currently see that CODE tags preserve formatting, but will wrap without changing the page width (no more scrolling to the right). If not, you may need to refresh or clear your browser's cache so that the latest CSS file can be loaded.
People that prefer the old behaviour or want a scrollable code box can implement it themselves by changing their browser's default CSS file. For example, for Firefox, add the following to your userContent.css file:
Old behaviour:
pre {white-space:pre!important;}
Add scroll bar:
pre {white-space:pre; overflow: auto; width: 600px; }
|
|
|
Re: linesize and post width of subsequent posts [message #380411 is a reply to message #380098] |
Sun, 11 January 2009 21:12 |
|
djmartin
Messages: 10181 Registered: March 2005 Location: Surges Bay TAS Australia
|
Senior Member Account Moderator |
|
|
Considering that many of the very wide 'code' examples have pitiful formatting then this left alignment may not be such a negative.
Concerning flushing caches, etc, what do we need to do if we are stuck with using IE?
David
|
|
|