User Jim Hudson - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T20:46:15Z http://stackoverflow.com/feeds/user/8051 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1886531/taking-dump-of-tables-in-oracle-10g-using-pl-sql-procedure/1888408#1888408 0 Answer by Jim Hudson for Taking dump of tables in oracle 10g using PL/SQL procedure. Jim Hudson 2009-12-11T14:26:11Z 2009-12-11T14:26:11Z <p>If you must use PL/SQL, and you're trying to create a file, then you'll need to have a directory defined with write access granted to your user. That's something your DBA can do. See the "create directory" command. </p> <p>At that point, you can (1) call UTL_FILE to open a file and write rows to it or (2) create an "EXTERNAL TABLE" and copy the information to it or (3) use DBMS_XMLGEN or (4) use any of several other ways to actually write the data from the database to the file. All of these are in the Oracle docs. The <a href="http://download.oracle.com/docs/cd/B28359%5F01/appdev.111/b28419/toc.htm" rel="nofollow">PL/SQL Packages and Types</a> manual is your friend for things like this.</p> <p>Note that the actual file system directory has to be on the server where the database is located. So you may need to get access to that server to copy your file, or have somebody set up a mount or whatever. </p> <p>Alternatively, you could set up a plsql web service that you could call to get your data. </p> <p>But, personally, I'd just use exp. Or, if that's not available, Toad or some other front end tool (even SQL*Plus) where you can just write a simple SQL script and save the results.</p> <p>If you're doing this for a homework assignment, my guess is they'll want a UTL_FILE solution. </p> http://stackoverflow.com/questions/1867162/scalability-of-oracle-forms/1867261#1867261 1 Answer by Jim Hudson for Scalability of Oracle Forms Jim Hudson 2009-12-08T14:19:19Z 2009-12-08T14:19:19Z <p>Personal opinon: At this point, we tend to use Forms for complex UI apps with lots of validation and pretty intense usage. </p> <p>If you can meet the business needs easily in a pure-web tool like ApEx (or any of hundreds of others), I wouldn't use forms.</p> <p>So you'll probably need to assume that many of those Forms users are going to be keeping their connections pretty active. </p> <p>And complex Forms use a lot of memory. We're running the app server on 34-bit Windows (not my choice) and running into memory limits with about 50 active connections. </p> <p>Forms is pretty good on concurrency, so with reasonable coding you're not going to hit any major database limits. And app server processing and IO won't be your constraint. It's really just a matter of how many active users you're dealing with at one time, what their memory footprint is, and how big or how many app servers you're willing to deal with. </p> <p>(Background: Forms Developer since version 2.3 (with a bit of 2.0), still using it for some projects and a lot of legacy)</p> http://stackoverflow.com/questions/1787268/in-oracle-how-do-i-create-the-create-table-syntax-for-an-existing-table/1790358#1790358 2 Answer by Jim Hudson for In Oracle, how do I create the "CREATE TABLE..." syntax for an existing table? Jim Hudson 2009-11-24T14:16:55Z 2009-11-24T14:16:55Z <p>Using a tool like SQL Developer or Toad is probably simplest. But the information is all available in the data dictionary. In particular, check the documentation for DBMS_METADATA.get_ddl. Something like</p> <pre><code>select dbms_metadata.get_ddl ('TABLE',myschema,mytab) from dual; </code></pre> <p>should do what you want. </p> http://stackoverflow.com/questions/1646953/how-does-one-cheaply-validate-the-existance-of-a-column-in-a-table-in-another-sch/1649962#1649962 1 Answer by Jim Hudson for How does one cheaply validate the existance of a column in a table in another schema with Oracle? Jim Hudson 2009-10-30T13:57:14Z 2009-10-30T13:57:14Z <p>As with the other replies, normally I use ALL_TAB_COLUMNS for a query like this. But that will only show columns in tables where you have SELECT. And it's select on that column -- in the unlikely event that they've implemented column-level privileges for that table, you may be able to see the table, but not see the specific column of interest. For most of us, that's extremely rare. </p> <p>DBA_TAB_COLUMNS will show all columns, but you'll need select on it granted to your schema by your DBA. (Actually, you'll need a grant on ALL_TAB_COLUMNS to use it, but that's common in most shops). The DBMS_METADATA PL/SQL Built-in package can also be used, with similar limitations, but I think you'll find it more complicated. </p> <p>Of course, you can also just try to select a record from barney.some_table.some_column@my_dblink (or whatever pieces of that you're interested in). And then handle the exception. Ugly, I wouldn't recommend it in most situations.</p> http://stackoverflow.com/questions/1643705/oracle-grant-privileges-to-all-users/1643741#1643741 4 Answer by Jim Hudson for Oracle - grant privileges to all users Jim Hudson 2009-10-29T13:29:29Z 2009-10-29T13:29:29Z <pre><code>grant select on table to public; </code></pre> <p>But be careful when you do that -- make sure it's what you really want to do.</p> http://stackoverflow.com/questions/1614233/is-there-an-autmatic-modification-time-stamp-type-for-oracle-columns/1624747#1624747 0 Answer by Jim Hudson for Is there an autmatic modification time stamp type for Oracle columns? Jim Hudson 2009-10-26T13:21:45Z 2009-10-26T13:21:45Z <p>Another way to deal with this is by turning on fine-grained audit. The individual rows won't have a timestamp, but you'll have a record of all changes. Overkill in most situations, though -- I usually just use triggers. </p> <p>If you are OK with nearest .01 seconds, you can use date format and assign sysdate. If you need more detail, use the timestamp. </p> http://stackoverflow.com/questions/1554079/in-oracle-pl-sql-how-do-i-create-a-directory-on-the-file-system/1554521#1554521 0 Answer by Jim Hudson for In Oracle PL/SQL how do I create a directory on the file system? Jim Hudson 2009-10-12T13:16:19Z 2009-10-12T13:16:19Z <p>I just checked the new docs for database version 11.2, and there's still no routine I can find to create a directory. So, like the other respondents, I recommend using a Java or C routine.</p> http://stackoverflow.com/questions/1426647/oracle-9-resetting-sequence-to-match-the-state-of-the-table/1427111#1427111 1 Answer by Jim Hudson for Oracle 9 - Resetting Sequence to match the state of the table Jim Hudson 2009-09-15T13:15:11Z 2009-09-15T13:15:11Z <p>In some cases, you may find it easier to simply get the current max value and then </p> <pre><code>drop sequence x; create sequence x start with {current max + 1}; </code></pre> <p>The app will be broken after you do the drop. But that will keep anybody from inserting rows during that period, and creating a sequence is quick. Make sure you recreate any grants on the sequence since those will be dropped when the sequence is. And you may want to manually recompile any plsql that depends on the sequence.</p> http://stackoverflow.com/questions/1421423/update-a-newly-created-row-before-final-commit-oracle/1421493#1421493 0 Answer by Jim Hudson for Update a newly created row before final commit [Oracle] Jim Hudson 2009-09-14T13:17:06Z 2009-09-14T13:17:06Z <p>The important words in Vincent's response are "your session". </p> <p>A separate session will only see the unmodified data until you commit. That's part of read consistency means. </p> <p>Depending on the frameworks and tools you're using, your session may get a lock on the record when you perform the update, preventing other sessions from updating it until you commit or rollback. </p> http://stackoverflow.com/questions/1390787/calling-a-web-service-from-oracle-10g-stored-procedure/1393914#1393914 1 Answer by Jim Hudson for Calling a web service from Oracle (10g) stored procedure Jim Hudson 2009-09-08T13:06:26Z 2009-09-08T13:06:26Z <p>One issue you may run into: if the service requires SSL, then you'll need to have a certificate available to the database. That generally means having the Advanced Security option and using Oracle Wallet. For http communications, though, utl_http (and its simpler form, utl_dbws -- database web services -- work pretty well. Marco Gralike's <a href="http://www.liberidu.com/blog/" rel="nofollow">blog</a> has a good HOW TO on consuming web services in PL/SQL.</p> http://stackoverflow.com/questions/1370606/example-of-oracle-instead-of-trigger/1374241#1374241 1 Answer by Jim Hudson for Example of Oracle "Instead of" Trigger Jim Hudson 2009-09-03T15:43:00Z 2009-09-03T15:43:00Z <p>Another model, which I've seen used very successfully, is when the application architecture wants to insulate the database design from the front end. And they want to do that on the database side, rather than through an object-relational framework. </p> <p>For example, if you want to make the job of the front-end developer very easy, you can build a view for each front end page (or set of pages). Then use instead-of triggers to deal with the mapping back to the underlying tables.</p> <p>Of course, it helps to have solid database developers who understand how Oracle works. </p> http://stackoverflow.com/questions/1368699/call-pl-sql-web-toolkit-procedures-from-java/1374212#1374212 0 Answer by Jim Hudson for Call PL/SQL Web Toolkit procedures from Java Jim Hudson 2009-09-03T15:38:24Z 2009-09-03T15:38:24Z <p>htf and htp assume that some things are going to be set up in advance. This is done automatically when the call goes through a PL/SQL gateway like mod_plsql. But it can also be done manually. </p> <p>There's a good explanation on the <a href="http://asktoad.com/DWiki/doku.php/howto%5Fdebug%5Fpl/sql%5Fcode%5Fthat%5Fuses%5Fthe%5Fhtp%5For%5Fhtf%5Fpackages%5Fto%5Fbuild%5Fweb%5Fapplications" rel="nofollow">Ask Toad wiki</a></p> <p>To successfully use htp &amp; htf, you'll need to define a couple variables and then initialize the cgi environment. </p> http://stackoverflow.com/questions/1349936/default-value-of-a-variable-at-the-time-of-declaration-in-pl-sql/1357877#1357877 0 Answer by Jim Hudson for default value of a variable at the time of declaration in PL SQL Jim Hudson 2009-08-31T14:56:42Z 2009-08-31T14:56:42Z <p>And another small addition: if you're dealing with BLOBs (or CLOBS), "empty" is not the same as null. See the Oracle large objects manual if you need to. </p> http://stackoverflow.com/questions/1311996/how-to-check-for-valid-oracle-table-name-using-sql-plsql/1312224#1312224 5 Answer by Jim Hudson for How to check for valid oracle table name using sql/plsql Jim Hudson 2009-08-21T14:15:51Z 2009-08-21T14:15:51Z <p>Oracle has a built-in that's useful for checking whether a SQL Name is valid. That's especially useful when building dynamic queries where you need to prevent SQL Injection. </p> <p>Check out the <strong>dbms_assert.simple_sql_name</strong> built-in, and see the Oracle white paper at <a href="http://www.oracle.com/technology/tech/pl%5Fsql/pdf/how%5Fto%5Fwrite%5Finjection%5Fproof%5Fplsql.pdf" rel="nofollow">How to Write Injection Proof PL/SQL</a> for more details.</p> <p>v$reserved_words is also useful, as others have noted.</p> http://stackoverflow.com/questions/1227259/xml-to-oracle-conversion/1227608#1227608 0 Answer by Jim Hudson for xml to oracle conversion Jim Hudson 2009-08-04T13:42:28Z 2009-08-04T13:42:28Z <p>The best material I've seen is two papers by Ken Atkins on "Getting XML into and out of Oracle using PL/SQL." There's a version on the ODTUG site (registered members, but registration is free) at <a href="http://www.odtug.com/apex/f?p=500:565:0" rel="nofollow">http://www.odtug.com/apex/f?p=500:565:0</a>::::: </p> http://stackoverflow.com/questions/1117137/cheque-number-problem/1119563#1119563 0 Answer by Jim Hudson for Cheque Number problem Jim Hudson 2009-07-13T13:51:34Z 2009-07-13T13:51:34Z <p>If you're on 10g or later you can use regular expressions with an inline view. </p> <p>The inner select is to get only the numeric check numbers. Then converting and using the where clause is easy. Something like</p> <p>select * from ( select * from payment_line where regexp_like (check_num,'^[0-9]*$') ) where to_number (check_num) > 12345; </p> <p>Of course, this only works if you want all numeric check numbers greater than 12345. If you want "numbers" like 1A123 included as well, that's a different story. </p> http://stackoverflow.com/questions/1069373/in-oracle-is-starting-the-sql-querys-where-clause-with-11-useful/1069788#1069788 3 Answer by Jim Hudson for In Oracle, is starting the SQL Query's WHERE clause with 1=1 useful? Jim Hudson 2009-07-01T15:24:47Z 2009-07-01T15:24:47Z <p>If they are building the query dynamically, you should check whether they're using bind variables. Building the query from literals requires extra parsing, potentially limiting scalability, and also can greatly increase the risk of SQL Injection attacks. </p> <p>where 1 = 1 and my_id = :b1; (and then defining the value of the bind variable)</p> <p>is generally much better than</p> <p>where 1 = 1 and my_id = 123456;</p> http://stackoverflow.com/questions/1050180/pl-sql-stored-procedure-where-does-the-execution-time-go/1058751#1058751 0 Answer by Jim Hudson for pl/sql Stored procedure... where does the execution time go? Jim Hudson 2009-06-29T14:49:52Z 2009-06-29T14:49:52Z <p>Oracle contains a profiler that will tell you the amount of time spent on each executable statement. dbms_profiler for 10g and earlier, and there's a fancier version (the hierarchical profiler) available in 11g. </p> <p>Much simpler than using sets of dbms_utility and dbms_output statements, and it gives you much more complete information -- including drilldown into the called routines if you have rights to see their source code. </p> <p>I'm glad you solved your problem. Next time, though, using the profiler will make it easier. </p> http://stackoverflow.com/questions/998055/oracle-loading-a-large-xml-file/1002497#1002497 0 Answer by Jim Hudson for Oracle: loading a large xml file? Jim Hudson 2009-06-16T16:10:46Z 2009-06-16T16:10:46Z <p>Seems like you're talking about 2 issues -- first, getting the XML document to where Oracle can see it. And then maybe making it so that standard relational tools can be applied to the data. </p> <p>For the first, you or your DBA can create a table with a BLOB, CLOB, or BFILE column and load the data. If you have access to the server on which the database lives, you can define a DIRECTORY object in the database that points to an operating system directory. Then put your file there. And then either set it up as a BFILE or read it in. (CLOB and BLOB store in the database; BFILE stores a pointed to a file on the operating system side). </p> <p>Alternatively , use some tool that will let you directly write CLOBs to the database. Anyway, that gets you to the point where you can see the XML instance document in the database. </p> <p>So now you have the instance document visible. Step 1 is done.</p> <p>Depending on the version, Oracle has some pretty good tools for shredding the XML into relational tables. </p> <p>It can be pretty declarative. While this gets beyond what I've actually done (I have a project where I'll be trying it this fall), you can theoretically load your XML Schema into the database and annotate it with the crosswalk between the relational tables and the XML. Then take your CLOB or BFILE and convert it to an XMLTYPE column with the defined schema and you're done -- the shredding happens automatically, the data is all there, it's all relational, it's all available to standard SQL without the XQUERY or XML extensions.</p> <p>Of course, if you'd rather use XQUERY, then just take the CLOB or BFILE, convert it to an XMLTYPE, and go for it. </p> http://stackoverflow.com/questions/995841/referential-integrity-constraint-is-automatically-disabling-in-oracle/996291#996291 1 Answer by Jim Hudson for referential integrity constraint is automatically disabling in oracle. Jim Hudson 2009-06-15T14:02:17Z 2009-06-15T14:02:17Z <p>From the Utilties manual, relational integrity and check constraints are automatically disabled for direct path loads. Conventional path shouldn't have this problem. </p> <p>There's a REENABLE clause to enable the constraints at the end of a direct path load. </p> http://stackoverflow.com/questions/980620/query-two-tables-from-different-schema/981096#981096 2 Answer by Jim Hudson for Query two tables from different schema Jim Hudson 2009-06-11T13:32:24Z 2009-06-11T13:32:24Z <p>DB Links are pretty much the name of the game here. If you can't get one created on your own, then check if there are any public DB links that you could use. </p> <p>It's also possible that your DBAs will be willing to have one of their DB Links used to create a materialized view of S2.Table2 on the S1 instance.</p> <p>Another option might be web services, but my guess is you'd run into much more administrative issues there than you would with a simple DB link. Consider those only if there are good reasons for no links (example: two separate organizations that don't want to open firewall holes between their databases). </p> <p>Failing those, you're getting into really ugly territory but you might be able to make something work. For example:</p> <ul> <li>Open up both from a tool that can read from multiple connections at once and do the join there. Access. Toad for Data Analysis, whatever.</li> <li>Use a tool like Toad to copy S2.Table2 to your own schema ("create in another schema" followed by "copy data to another schema")</li> <li>If you have, or can get, complementary directory objects defined on both servers, create a Materialized View of S2 as an external table in a directory which can be written from S2 and read from S1. </li> </ul> <p>You really don't want to maintain any of these solutions over the long term, though. </p> http://stackoverflow.com/questions/956645/getting-output-in-flat-file-using-oracle-on-unix/957909#957909 0 Answer by Jim Hudson for Getting output in flat file using oracle on UNIX Jim Hudson 2009-06-05T20:11:00Z 2009-06-05T20:11:00Z <p>If you have access to directories on the database server, and authority to create "Directory" objects in Oracle, then you have lots of options. </p> <p>For example, you can use the UTL_FILE package (part of the PL/SQL built-ins) to read or write files at the operating system level. </p> <p>Or use the "external table" functionality to define objects that look like single tables to Oracle but are actually flat files at the OS level. Well documented in the Oracle docs.</p> <p>Also, for one-time tasks, most of the tools for working SQL and PL/SQL provide facilities for moving data to and from the database. In the Windows environment, Toad's good at that. So is Oracle's free SQLDeveloper, which runs on many platforms. You wouldn't want to use those for a process that runs every day, but they're fine for single moves. I've generally found these easier to use than SQL*Plus spooling, but that's a primitive version of the same functionality. </p> http://stackoverflow.com/questions/955937/load-data-into-text-file-from-oracle-database-views/957899#957899 0 Answer by Jim Hudson for load data into text file from oracle database views. Jim Hudson 2009-06-05T20:08:48Z 2009-06-05T20:08:48Z <p>If you have access to directories on the database server, and authority to create "Directory" objects in Oracle, then you have lots of options. </p> <p>For example, you can use the UTL_FILE package (part of the PL/SQL built-ins) to read or write files at the operating system level. </p> <p>Or use the "external table" functionality to define objects that look like single tables to Oracle but are actually flat files at the OS level. Well documented in the Oracle docs.</p> <p>Also, for one-time tasks, most of the tools for working SQL and PL/SQL provide facilities for moving data to and from the database. In the Windows environment, Toad's good at that. So is Oracle's free SQL*Developer, which runs on many platforms. You wouldn't want to use those for a process that runs every day, but they're fine for single moves. I've generally found these easier to use than SQL*Plus spooling, but that's a primitive version of the same functionality. </p> <p>As stated by others, we need to know a bit more about what you're trying to do. </p> http://stackoverflow.com/questions/724076/which-table-structure-is-better/725622#725622 1 Answer by Jim Hudson for Which table structure is better Jim Hudson 2009-04-07T13:11:19Z 2009-04-07T13:11:19Z <p>The real advantage of the fully normalized version in the first answer comes when the requirements change -- when someone changes the specs so you have to add types beyond the 3 you've identified. </p> <p>Like discount, refund, whatever. Those changes do happen.</p> <p>The normalized structure should let you do that more easily, without needing to change either table structure or most of the programs that use the data. </p> <p>But the normalized structure does require more investment in the beginning -- every new transaction involves inserting into 2 tables, you need to have a check constraint to control the types, etc.</p> <p>Generally, you'll do better in the long term with the normalized structure. However, with a simple case lik this, you can sometimes get away without normalizing and not have to pay the consequences (at least, nobody has to pay until you're long gone and it's somebody else's problem). </p> <p>Professionally, reasonable levels of normalization should be your standard strategy and you should require yourself to have very good reasons for denormalizing. </p> http://stackoverflow.com/questions/676830/what-is-oracle-native-web-services/678083#678083 1 Answer by Jim Hudson for What is Oracle Native web services? Jim Hudson 2009-03-24T16:02:32Z 2009-03-24T16:02:32Z <p>There are advantages and disadvantages. If you have developers experienced in PL/SQL, this makes it easier for them to provide and consume web services without going through a separate app server. </p> <p>Of course, your security people may get involved there, especially if you want to make those services available outside your Intranet. But it provides one more tool in the toolbox. </p> <p>I wrote a paper introducing PL/SQL web services for last year's ODTUG conference. It's available in the Tech Resources section at www.odtug.com. Take a look.</p> http://stackoverflow.com/questions/668100/is-there-a-way-to-specify-a-super-type-sub-type-relationship-in-oracle-designer/673392#673392 0 Answer by Jim Hudson for Is there a way to specify a super-type sub-type relationship in Oracle Designer? Jim Hudson 2009-03-23T13:38:51Z 2009-03-23T13:38:51Z <p>Note that if you're working in the Design Editor on the physical model, you have to implement as actual tables. </p> <p>But take a look at the documentation for the Foreign Key property "Arc", which might help some. You can set it so that exactly 1 of several foreign keys can have a value.</p> <p>For example, you might set up FK's from your supertype table to each subtype table. Then enforce that exactly one can have a value by using that property and generating the TAPI for the tables. (The drawback is that you'd have to insert the subtype information before the supertype.)</p> http://stackoverflow.com/questions/461970/is-there-a-method-in-pl-sql-to-convert-encode-text-to-xml-compliant-text/465712#465712 0 Answer by Jim Hudson for Is there a method in PL/SQL to convert/encode text to XML compliant text? Jim Hudson 2009-01-21T15:20:09Z 2009-01-21T15:20:09Z <p>With respect to Rulas's issue on Oracle Forms, there are a lot of things Forms can't do (in various versions), where you need to use a database package. </p> <p>So write a database PL/SQL function that does the dbms_xmlgen and return a varchar2 or clob, depending on the size of your XML. Then you can call that function from Forms. when you get the data back into Forms, use text_io or webutil to push the XML file to Excel. </p> <p>Or stay over on the database side and use utl_file to push the XML output to a directory where you can get at it.</p> http://stackoverflow.com/questions/305797/oracle-populate-backup-table-from-primary-table/305840#305840 3 Answer by Jim Hudson for Oracle Populate backup table from primary table Jim Hudson 2008-11-20T16:08:55Z 2008-11-20T16:08:55Z <p>Does the backup table stay around? Does it keep the data permanently, or is it just a copy of the current values?</p> <p>Too bad about not being able to create/delete/rename/copy. Otherwise, if it's short term, just used in case something goes wrong, then you could drop it at the start of processing and do something like</p> <pre><code>create table backup_table as select * from primary_table; </code></pre> <p>Your best option may be to make the select explicit, as</p> <pre><code>insert into backup_table (&lt;list of columns&gt;) select &lt;list of columns&gt; from primary_table; </code></pre> <p>You could generate that by building a SQL string from the data dictionary, then doing execute immediate. But you'll still be at risk if the backup_table doesn't contain all the important columns from the primary_table. </p> <p>Might just want to make it explicit, and raise a major error if backup_table doesn't exist, or any of the columns in primary_table aren't in backup_table. </p> http://stackoverflow.com/questions/294741/oracle-using-package/295974#295974 1 Answer by Jim Hudson for Oracle - Using Package Jim Hudson 2008-11-17T16:02:39Z 2008-11-17T16:02:39Z <p>To follow up, you might have a standalone like</p> <pre><code>create or replace procedure foo (i_something in varchar2) as begin -- do some stuff; end foo; </code></pre> <p>which you call with "foo('bar');"</p> <p>That would become a package and a package body as</p> <pre><code>create or replace package my_package as procedure foo (i_something in varchar2); end; create or replace package body my_package as procedure foo (i_something in varchar2); begin -- do some stuff; end foo; end my_package; </code></pre> <p>which you call with "my_package.foo('bar');"</p> <p>For a single procedure, using a package might not add much clarity. But if you're dealing with lots of functions and procedures, it's much cleaner. </p> http://stackoverflow.com/questions/286946/oracle-default-values/287131#287131 1 Answer by Jim Hudson for Oracle Default Values Jim Hudson 2008-11-13T14:50:31Z 2008-11-13T14:50:31Z <p>You can't assign values to an IN parameter, but you could make them IN/OUT and then set them. That raises a big potential for misuse and confusion, though. </p> <p>So I think you'd do better with a local variable. But you can do it in the declaration. That is,</p> <pre><code>create or replace FUNCTION testFunction ( varNumber IN NUMBER DEFAULT 0 ) RETURN NUMBER AS vFix number := nvl(varNumber,0); BEGIN dbms_output.put_line(vFix); RETURN vFix; END; </code></pre> http://stackoverflow.com/questions/1882073/impact-of-defining-varchar2-column-with-greater-length/1885974#1885974 Comment by Jim Hudson on Impact of defining VARCHAR2 column with greater length Jim Hudson 2009-12-11T14:33:04Z 2009-12-11T14:33:04Z On the PL/SQL issue, the cutoff for where PL/SQL dynamically allocates memory has changed from version to version. For example, in 10g it was increased from &lt;something&gt; to 2000 but it's up to 4000 in 11.1. See <a href="http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28370/tuning.htm#BCGEGEEG" rel="nofollow">download.oracle.com/docs/cd/&hellip;</a> http://stackoverflow.com/questions/1867162/scalability-of-oracle-forms/1867261#1867261 Comment by Jim Hudson on Scalability of Oracle Forms Jim Hudson 2009-12-09T15:15:40Z 2009-12-09T15:15:40Z Yeah, thanks for catching that typo. We're trying to get the WebLogic-based forms working on 64-bit windows, which has been challenging but should help the server handle more sessions once it works. http://stackoverflow.com/questions/1227259/xml-to-oracle-conversion/1227608#1227608 Comment by Jim Hudson on xml to oracle conversion Jim Hudson 2009-08-07T13:39:27Z 2009-08-07T13:39:27Z Yeah, jumping into the middle of the ODTUG site isn't easy. So here's the detailed route: www.odtug.com, click on Tech Resources. In the &quot;search by topic&quot; area click on &quot;PL/SQL&quot;. Enter &quot;Atkins&quot; in the search box and it'll be about the 4th item in the list. http://stackoverflow.com/questions/998055/oracle-loading-a-large-xml-file/1002497#1002497 Comment by Jim Hudson on Oracle: loading a large xml file? Jim Hudson 2009-06-17T14:46:36Z 2009-06-17T14:46:36Z There was actually a good blog entry by Marco Gralike today on shredding in the database, <a href="http://www.liberidu.com/blog/?p=1094" rel="nofollow">liberidu.com/blog/?p=1094</a>