User Matthew Watson - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T16:22:40Z http://stackoverflow.com/feeds/user/3839 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/613913/solaris-9-projects-resource-management 0 Solaris 9 projects (resource management) Matthew Watson 2009-03-05T07:58:19Z 2009-12-01T06:00:03Z <p>I'm trying to get projects working in solaris 9 (SPARC), so I can limit some users memory usage.</p> <p>From what I've read, and from what I recall in solaris 10, I should be able to just</p> <ol> <li>Create a group (prodsupt), and make this the users default group</li> <li>Create a project called "group.prodsupt"</li> <li>limit the resource in the group.</li> </ol> <p>I've done this, however my user still is not getting limited resources</p> <pre><code>&gt; grep prodsupt /etc/group prodsupt::6011: &gt; grep prodsupt /etc/project group.prodsupt:100:Production Support Project:::process.max-address-space=(privileged.16777216.deny) </code></pre> <p>This should limit anyone with the prodsupt as their default, to about 16mb of address space, however, if I login as a user in this group</p> <pre><code>&gt; id -p id=1055(mwatson) gid=6011(prodsupt) projid=100(group.prodsupt) &gt; prctl -n process.max-address-space $$ 3084: zsh process.max-address-space [ lowerable deny no-local-action ] 18446744073709551615 system deny [ max ] </code></pre> <p>Can anyone spot what I'm doing wrong here? </p> http://stackoverflow.com/questions/1810200/overcoming-log-file-sync-by-design 1 overcoming 'log file sync' by design? Matthew Watson 2009-11-27T18:48:11Z 2009-11-29T10:07:01Z <p>Advice/suggestions needed for a bit of application design.</p> <p>I have an application which uses 2 tables, one is a staging table, which many separate processes write to, once a 'group' of processes has finished, another job comes along a aggregates the results together into a final table, then deletes that 'group' from the staging table.</p> <p>The problem that I'm having is that when the staging table is being cleared out, lots of redo is generated and I'm seeing a lot of 'log file sync' waits in the database. This is a shared database with many other applications and this is causing some issues.</p> <p>When applying the aggregate, the rows are reduced to about 1 row in the final table for every 20 rows in the staging table.</p> <p>I'm thinking of getting around this by rather than having a single 'staging' table, I will create a table for each 'group'. Once done, this table can just be dropped, which should result in much less redo.</p> <p>I only have SE, so partitioned tables isn't an option. Also faster disks for the redo probably isn't an option in the short term either.</p> <p>Is this a bad idea? Any better solutions to be offered?</p> <p>Thanks.</p> http://stackoverflow.com/questions/152441/unit-testing-for-pl-sql 6 Unit testing for PL/SQL Matthew Watson 2008-09-30T09:57:21Z 2009-11-27T14:20:41Z <p>Anyone have any experience or tools for unit testing PL/SQL. The best looking tool I've seen for this seems to be Quests Code Tester, but i'm not sure how well that would integration with continuous integration tools or command line testing?</p> http://stackoverflow.com/questions/47387/setting-up-mysql-triggers/47393#47393 7 Answer by Matthew Watson for Setting Up MySQL Triggers Matthew Watson 2008-09-06T11:35:21Z 2009-10-25T02:52:53Z <p>Triggers allow you to perform a function in the database as certain events happen (eg, an insert into a table). </p> <p>I can't comment on mysql specifically.</p> <p>Precaution: Triggers can be very alluring, when you first start using them they seem like a magic bullet to all kinds of problems. But, they make "magic" stuff happen, if you don't know the database inside out, it can seem like really strange things happen (such as inserts into other tables, input data changing, etc). Before implementing things as a trigger I'd seriously consider instead enforcing the use of an API around the schema (preferably in the database, but outside if you can't).</p> <p>Some things I'd still use triggers for</p> <ul> <li>Keeping track of "date_created" and "date_last_edited" fields</li> <li>Inserting "ID"'s (in oracle, where there is no auto id field)</li> <li>Keeping change history</li> </ul> <p>Things you wouldn't want to use triggers for</p> <ul> <li>business rules/logic</li> <li>anything which connects outside of the database (eg a webservice call)</li> <li>Access control</li> <li>Anything which isn't transactional ( anything you do in the trigger MUST be able to rollback with the transaction )</li> </ul> http://stackoverflow.com/questions/1615650/package-level-constants-in-oracle-to-postgres-conversion/1617115#1617115 1 Answer by Matthew Watson for Package Level Constants in Oracle to Postgres Conversion Matthew Watson 2009-10-24T06:05:21Z 2009-10-24T06:05:21Z <p>I'd go with option 1, should be reasonably easy to write a script to automatically do this for you and you then keep the package as close as possible to its original definition.</p> http://stackoverflow.com/questions/56895/proving-sql-query-equivalency 5 Proving SQL query equivalency Matthew Watson 2008-09-11T15:32:14Z 2009-10-20T16:34:40Z <p>How would you go about proving that two queries are functionally equivalent, eg they will always both return the same result set.</p> <p><hr /></p> <p>As I had a specific query in mind when I was doing this, I ended up doing as @dougman suggested, over about 10% of rows the tables concerned and comparing the results, ensuring there was no out of place results.</p> http://stackoverflow.com/questions/1570415/modifying-an-oracle-ref-cursor/1570609#1570609 2 Answer by Matthew Watson for Modifying an Oracle Ref Cursor Matthew Watson 2009-10-15T06:26:01Z 2009-10-15T07:59:20Z <p>Create a "is_encrypted" function which returns if the string is encrypted, then use a case statement to return the decrypted value either via the decrypt function or just straight out of the table.</p> <pre><code>select case when is_encrypted(secret) = 'Y' then decrypt(secret) else secret end as ecrypted_secret from emp </code></pre> <p>Or as suggested in question comments, just change the decrypt function so if its passed a non encrypted string, it just returns the string it was passed.</p> http://stackoverflow.com/questions/152435/code-coverage-for-pl-sql 1 Code coverage for PL/SQL Matthew Watson 2008-09-30T09:55:14Z 2009-10-05T13:22:38Z <p>Does anyone have tools or experience with code coverage for PL/SQL. I believe this is possible using DBMS_PROFILER?</p> http://stackoverflow.com/questions/36848/oracle-server-performance-monitoring-tools 1 Oracle Server performance monitoring tools Matthew Watson 2008-08-31T13:00:32Z 2009-10-02T21:51:42Z <p>What tools would you recommend for monitoring the general health and performance of an oracle database. How do you ensure database issues are picked up and resolved quickly.</p> http://stackoverflow.com/questions/1438405/what-is-bad-in-when-others-then-null-in-pl-sql/1438465#1438465 3 Answer by Matthew Watson for What is bad in "When Others Then Null" in PL/SQL ? Matthew Watson 2009-09-17T12:11:38Z 2009-09-17T12:11:38Z <p>The problem is, that you are catching all exceptions, and then ignoring them. You'll never know when something went wrong.</p> http://stackoverflow.com/questions/1339224/how-do-you-check-for-updates-across-many-tables-in-oracle/1339858#1339858 2 Answer by Matthew Watson for How do you check for updates across many tables in Oracle? Matthew Watson 2009-08-27T09:14:46Z 2009-08-27T09:14:46Z <p>Why not have your logic in a stored procedure, then just call that from the triggers?</p> <p>I'd also suggest you take look at <a href="http://www.oracle-base.com/articles/10g/dbms%5Fchange%5Fnotification%5F10gR2.php" rel="nofollow">change notification</a>, from that sound of it, thats probably what you want more so than just a plain old trigger.</p> <p>Also be careful when calling external resources. Anything you call in a trigger should be transactional, as Oracle may run the trigger several times before your DML is actually completed.</p> http://stackoverflow.com/questions/1309254/how-can-i-keep-oracle-sql-developer-from-closing-the-db-connection/1310129#1310129 0 Answer by Matthew Watson for How can I keep Oracle SQL Developer from closing the DB connection? Matthew Watson 2009-08-21T04:49:30Z 2009-08-21T04:49:30Z <p>This doesn't sound like an issue with SQL developer, cetainly I've never come across it. Are you sure it's not something else, like your network? What happens if you connect from SQL plus from your desktop.</p> http://stackoverflow.com/questions/1299694/oracle-how-to-find-out-if-there-is-a-transaction-pending/1304983#1304983 0 Answer by Matthew Watson for Oracle: How to find out if there is a transaction pending? Matthew Watson 2009-08-20T09:20:56Z 2009-08-20T09:20:56Z <p>This is the query I normally use,</p> <pre><code>select s.sid ,s.serial# ,s.username ,s.machine ,s.status ,s.lockwait ,t.used_ublk ,t.used_urec ,t.start_time from v$transaction t inner join v$session s on t.addr = s.taddr; </code></pre> http://stackoverflow.com/questions/280810/is-perl-worth-it/286380#286380 4 Answer by Matthew Watson for Is Perl worth it? Matthew Watson 2008-11-13T06:34:07Z 2009-08-19T13:35:16Z <p>The only issue with Perl, compared to something like Java, is Perl offers more freedom, its easy to do the "wrong" thing, its harder to throw an inexperienced programmer at a problem and expect them to come up with a nice solution.</p> <p>That being said, there is no reason why you can't do great things in Perl, but if you are new to this road, I'd highly recommend getting everyone in the team a copy of <a href="http://oreilly.com/catalog/9780596001735/" rel="nofollow">Perl Best Practices</a>, and making sure you always run <a href="http://search.cpan.org/perldoc/perlcritic" rel="nofollow"><code>perlcritic</code></a> and <a href="http://search.cpan.org/perldoc/perltidy" rel="nofollow"><code>perltidy</code></a> over your code. This will help to keep everyone writing in a similar fashion.</p> http://stackoverflow.com/questions/47279/are-there-any-good-oracle-podcasts 3 Are there any good oracle podcasts? Matthew Watson 2008-09-06T06:19:13Z 2009-07-22T10:17:09Z <p>Are there any good oracle podcasts around? The only ones I've found is produced by oracle corp, and as such are little more than advertising pieces pushing their technology of the moment.</p> <p>I'm specifically interested in Database technologies.</p> http://stackoverflow.com/questions/39576/best-way-to-do-multi-row-insert-in-oracle/41080#41080 7 Answer by Matthew Watson for Best way to do multi-row insert in Oracle? Matthew Watson 2008-09-03T02:32:46Z 2009-07-02T04:07:15Z <p>Use SQL*Loader. It takes a little setting up, but if this isn't a one off, its worth it.</p> <p><strong>Create Table</strong></p> <pre><code>SQL&gt; create table ldr_test (id number(10) primary key, description varchar2(20)); Table created. SQL&gt; </code></pre> <p><strong>Create CSV</strong></p> <pre><code>oracle-2% cat ldr_test.csv 1,Apple 2,Orange 3,Pear oracle-2% </code></pre> <p><strong>Create Loader Control File</strong></p> <pre><code>oracle-2% cat ldr_test.ctl load data infile 'ldr_test.csv' into table ldr_test fields terminated by "," optionally enclosed by '"' ( id, description ) oracle-2% </code></pre> <p><strong>Run SQL*Loader command</strong></p> <pre><code>oracle-2% sqlldr &lt;username&gt; control=ldr_test.ctl Password: SQL*Loader: Release 9.2.0.5.0 - Production on Wed Sep 3 12:26:46 2008 Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved. Commit point reached - logical record count 3 </code></pre> <p><strong>Confirm insert</strong></p> <pre><code>SQL&gt; select * from ldr_test; ID DESCRIPTION ---------- -------------------- 1 Apple 2 Orange 3 Pear SQL&gt; </code></pre> <p>SQL*Loader has alot of options, and can take pretty much any text file as its input. You can even inline the data in your control file if you want.</p> <p>Here is a page with some more details -> <a href="http://www.orafaq.com/wiki/SQL%2ALoader%5FFAQ" rel="nofollow">SQL Loader</a></p> http://stackoverflow.com/questions/89320/two-phase-commit-shared-transaction 3 Two Phase Commit/Shared Transaction Matthew Watson 2008-09-18T01:56:28Z 2009-06-16T15:20:17Z <p>The scenario is this</p> <p>We have two applications A and B, both which are running in separate database (Oracle 9i ) transactions</p> <p>Application A - inserts some data into the database, then calls Application B Application B - inserts some data into the database, related (via foreign keys) to A's data. Returns an "ID" to Application A Application A - uses ID to insert further data, including the ID from B</p> <p>Now, because these are separate transactions, but both rely on data from each others transactions, we need to commit between the calls to each application. This of course makes it very difficult to rollback if anything goes wrong. </p> <p>How would you approach this problem, with minimal refactoring of the code. Surely this kind of this is a common problem in the SOA world?</p> <p>------ Update --------</p> <p>I have not been able to find anything in Oracle 9i, however Oracle 11g provides <a href="http://www.morganslibrary.org/reference/dbms%5Fxa.html" rel="nofollow">DBMS_XA</a>, which does exactly what I was after.</p> http://stackoverflow.com/questions/593307/exact-placement-for-xsl-fo 0 Exact placement for XSL-FO Matthew Watson 2009-02-27T02:24:38Z 2009-06-09T19:22:39Z <p>I have an item in an XML-FO page ( running through FOP ) when needs exact placement for an OCR. Whenever the page is edited (or an included page) its very difficult to get the OCR line back into place.</p> <p>Is it possible with FOP to specify exact placement. rather than having the item being pushed around by the previous items on the page?</p> http://stackoverflow.com/questions/964898/how-do-i-find-the-standard-siteperl-directory-for-perl 3 How do I find the standard site_perl directory for Perl? Matthew Watson 2009-06-08T13:22:11Z 2009-06-08T23:24:04Z <p>How can I find the standard site_perl (non-arch specific) location? Is it safe to just loop over @INC and find the path ending with "site_perl", or is there a standard way to do this?</p> <p>The reason for trying to find this, is I have a very large project built up from hundreds of individual modules, all with their own Makefile.PL files (pretty much every .pm file has been built as its own CPAN style module). Along with this, each module may have artifacts (templates, .cgi's, etc), in various locations, all which need to be deployed to various locations, nothing is standard. This is the first step in trying to get this under control, basically having a single Makefile which can find and deploy everything, the next step will be getting it in sensible layout in version control.</p> <p>I've spent time trying to do this with standard installation tools, but have had no luck.</p> http://stackoverflow.com/questions/959006/restore-and-recovery-scenario/959875#959875 0 Answer by Matthew Watson for Restore and Recovery Scenario Matthew Watson 2009-06-06T15:00:44Z 2009-06-06T15:00:44Z <p>You haven't said what version of oracle you are using, the version you are using, and the backup strategy you have in place will effect how exactly you recover.</p> <p>You need to read and understand the <a href="http://download.oracle.com/docs/cd/B28359%5F01/backup.111/b28270/toc.htm" rel="nofollow">Backup and Recovery Manual</a></p> <p>If this is actually a production issue, then you need to contact Oracle support right now, this isn't the time to make mistakes or learn on the job.</p> http://stackoverflow.com/questions/942844/how-do-i-automatically-reset-a-sequences-value-to-0-every-year-in-oracle-10g/942868#942868 1 Answer by Matthew Watson for How do I automatically reset a sequence's value to 0 every year in Oracle 10g? Matthew Watson 2009-06-03T02:58:11Z 2009-06-03T03:23:55Z <p>I'm not sure there is a good way to do it, this isn't really what sequences are designed for. they are just purely incrementing unique numbers.</p> <p>2 thoughts come to mind.</p> <ol> <li>At 12am on the first, reset the sequence, this is hard, because you need to make sure you beat any code. </li> <li>Create a sequence for each year, perhaps even have it in your code to be able to create the sequence, then dynamically call the correct sequence for the year.</li> </ol> <p>I'd tend to favor option 2, as its not trying to do anything fancy and is always going to work without fail, any options trying to manipulate the sequence itself are bound to bite you.</p> http://stackoverflow.com/questions/940814/oracle-throwing-ora-16198-on-database-switch-over/942603#942603 0 Answer by Matthew Watson for Oracle throwing ORA-16198 on database switch over Matthew Watson 2009-06-03T00:44:15Z 2009-06-03T00:44:15Z <p>is this a production issue, or are you just working in a test environment? If its production... talk to oracle support.</p> http://stackoverflow.com/questions/937366/physical-database-design-for-email-notification-reminders/937821#937821 0 Answer by Matthew Watson for physical database design for email notification reminders Matthew Watson 2009-06-02T03:38:10Z 2009-06-02T03:38:10Z <p>The way I've done it in the past, is simply to have an expiry date for the service, you could also have a renewal period (eg 3,6,12).</p> <p>Simply run a nightly job using whatever scheduling services your language provider to find all customers who are going to expire in 2 weeks, 3 days, 1 days time. </p> <p>The main issue with this is if the job fails to run for some reason. to work around this, you can keep a log of what notifications they have been sent, so you just find all customers, who are going to expire within 2 weeks who have not been sent the 2 week/3day/1day notifcations.</p> http://stackoverflow.com/questions/937360/best-free-way-to-store-20-million-rows-a-day/937444#937444 0 Answer by Matthew Watson for Best free way to store 20 million rows a day? Matthew Watson 2009-06-02T00:31:42Z 2009-06-02T00:31:42Z <p>I haven't looked into them in mysql, but this sounds like a perfect application for <a href="http://dev.mysql.com/tech-resources/articles/mysql%5F5.1%5Fpartitions.html" rel="nofollow">table partitions</a></p> http://stackoverflow.com/questions/926933/oracle-vs-hypersonic-sql/930979#930979 0 Answer by Matthew Watson for Oracle vs. Hypersonic SQL Matthew Watson 2009-05-31T00:55:19Z 2009-05-31T00:55:19Z <p>If you can, you can set your NLS_DATE_FORMAT in Oracle session, that way you do not need to use the TO_DATE function, oracle will do this for you behind the scenes.</p> <pre><code>SQL&gt; select value from v$nls_parameters where parameter = 'NLS_DATE_FORMAT'; VALUE ---------------------------------------------------------------- DD/MM/YYYY SQL&gt; create table nls_date_test ( id number(10) , date_entered date ); Table created. SQL&gt; insert into nls_date_test values ( 1 , '31/05/2009' ); 1 row created. SQL&gt; insert into nls_date_test values ( 2 , '30/05/2009' ); 1 row created. SQL&gt; select * from nls_date_test where date_entered = '2009-09-09'; select * from nls_date_test where date_entered = '2009-09-09' * ERROR at line 1: ORA-01861: literal does not match format string SQL&gt; alter session set nls_date_format = 'YYYY-MM-DD'; Session altered. SQL&gt; select * from nls_date_test where date_entered = '2009-05-30'; ID DATE_ENTER ---------- ---------- 2 2009-05-30 SQL&gt; select value from v$nls_parameters where parameter = 'NLS_DATE_FORMAT'; VALUE ---------------------------------------------------------------- YYYY-MM-DD SQL&gt; </code></pre> http://stackoverflow.com/questions/904975/how-can-i-find-the-source-location-of-a-print-statement-in-perl 7 How can I find the source location of a print statement in Perl? Matthew Watson 2009-05-25T00:39:44Z 2009-05-26T13:00:25Z <p>How can I find the source location of a print statement in Perl?</p> <pre><code>#!/usr/bin/perl foo(); bar(); sub foo { print "foo\n"; } sub bar { print "bar\n"; } </code></pre> <p>The output being:</p> <pre><code>&gt;perl test.pl foo bar </code></pre> <p>I'd like to somehow find be able to see (or something like)</p> <pre><code>&gt;perl test.pl main::foo&gt; foo main::bar&gt; bar </code></pre> <p>The reason for this is I'm trying to track down some rouge output, and cannot find its location in a large code base.</p> http://stackoverflow.com/questions/893118/oracle-hierarchical-query-how-to-include-top-level-parent/893217#893217 2 Answer by Matthew Watson for Oracle Hierarchical query: how to include top-level parent Matthew Watson 2009-05-21T14:30:17Z 2009-05-21T14:30:17Z <p>You need to do the hierarchy the other way around, from the root to the leaves.</p> <pre><code>select level, empid, parentid from usertable start with empid = 17839 connect by empid != 17839 and prior empid = parentid LEVEL EMPID PARENTID ---------------------- ---------------------- ---------------------- 1 17839 17839 2 9555 17839 3 258 9555 4 50 258 4 rows selected </code></pre> http://stackoverflow.com/questions/891458/abort-a-pl-sql-program/891552#891552 5 Answer by Matthew Watson for Abort a PL/SQL program Matthew Watson 2009-05-21T05:50:11Z 2009-05-21T05:50:11Z <p>You can use RETURN</p> <pre><code>MWATSON@&gt; set serveroutput on MWATSON@&gt; !cat test.sql BEGIN IF 1 = 1 THEN DBMS_OUTPUT.PUT_LINE('ABOUT TO EXIT'); RETURN; END IF; DBMS_OUTPUT.PUT_LINE('DID NOT EXIT'); END; MWATSON@&gt; @test 8 / ABOUT TO EXIT PL/SQL procedure successfully completed. MWATSON@&gt; </code></pre> http://stackoverflow.com/questions/283061/pl-sql-compilation-fails-with-no-error-message 2 PL/SQL compilation fails with no error message Matthew Watson 2008-11-12T04:36:47Z 2009-05-20T02:12:46Z <p>My installation of APEX has come pear shaped on a Oracle 9.2.0.5.0 instance, all the packages are invalid.</p> <p>I've tried recompiling everything with DBMS_UTILITY.compile_schema, but still all the packages are invalid. So, tried recompiling individual packages,</p> <pre><code>SQL&gt; ALTER PACKAGE FLOWS_020000.WWV_FLOW_QUERY COMPILE BODY; Warning: Package Body altered with compilation errors. SQL&gt; show err No errors. SQL&gt; SQL&gt; ALTER PACKAGE FLOWS_020000.WWV_FLOW_QUERY COMPILE; Warning: Package altered with compilation errors. SQL&gt; show err No errors. SQL&gt; </code></pre> <p>nothing in the alter log for it..</p> <p>How can I find what the error is? shouldn't "show err" give it to me?</p> http://stackoverflow.com/questions/872770/query-sql-server-from-oracle-force-metadata-refresh/873714#873714 1 Answer by Matthew Watson for Query SQL Server from Oracle - force metadata refresh Matthew Watson 2009-05-17T01:38:25Z 2009-05-17T01:38:25Z <p>This sounds like an issue with TOAD, not oracle. What happens if you do it in SQL*Plus?</p> http://stackoverflow.com/questions/1810200/overcoming-log-file-sync-by-design/1814941#1814941 Comment by Matthew Watson on overcoming 'log file sync' by design? Matthew Watson 2009-11-29T12:53:21Z 2009-11-29T12:53:21Z Partitioned table would be ideal, however thats not an option. However, what i'm doing is essentially &quot;poor mans partitioning&quot;. I never query outside of a &quot;group&quot; so there really isn't any need to have all rows accessible within a single query. http://stackoverflow.com/questions/1810200/overcoming-log-file-sync-by-design/1813162#1813162 Comment by Matthew Watson on overcoming 'log file sync' by design? Matthew Watson 2009-11-29T12:51:50Z 2009-11-29T12:51:50Z Yes, its definitely not due to excessive commits, this process does a single commit. Turning off this process massively reduces the redo. I have implemented the solution in the question, and it has greatly reduced the amount of redo and log file sync waits. http://stackoverflow.com/questions/1506950/atomic-compare-and-swap-in-a-database/1507024#1507024 Comment by Matthew Watson on atomic compare and swap in a database Matthew Watson 2009-10-02T05:20:45Z 2009-10-02T05:20:45Z Note, doing this doesn't stop another session reading that row, UNLESS that other session is also using the &quot;for update&quot; clause. http://stackoverflow.com/questions/1438405/what-is-bad-in-when-others-then-null-in-pl-sql/1438465#1438465 Comment by Matthew Watson on What is bad in "When Others Then Null" in PL/SQL ? Matthew Watson 2009-09-18T11:26:39Z 2009-09-18T11:26:39Z @darreljnz: and then one day you'll be scratching your head over why something is failing, and have go adding debug code, or run through the debugger to find the place where its failing. There may be very limited cases, I would suspect its more like 999/1000 than 9/10 though. http://stackoverflow.com/questions/1438405/what-is-bad-in-when-others-then-null-in-pl-sql/1438465#1438465 Comment by Matthew Watson on What is bad in "When Others Then Null" in PL/SQL ? Matthew Watson 2009-09-17T12:40:40Z 2009-09-17T12:40:40Z No, its bad to ever use it. at the VERY least, your when others clause should log the exception somewhere. but most likely you should log and raise the exception http://stackoverflow.com/questions/1378133/why-are-oracle-table-column-index-names-limited-to-30-characters/1378365#1378365 Comment by Matthew Watson on Why are Oracle table/column/index names limited to 30 characters? Matthew Watson 2009-09-04T12:59:24Z 2009-09-04T12:59:24Z Not just millions of lines of DBA written code, but plenty of oracle internal code no doubt too. This topic came up in a session with steven feuerstein and he said he didn't think they would ever change it. http://stackoverflow.com/questions/193020/how-do-i-use-constants-from-a-perl-module/193031#193031 Comment by Matthew Watson on How do I use constants from a Perl module? Matthew Watson 2009-06-12T05:29:43Z 2009-06-12T05:29:43Z please explain why is using 'import' better? http://stackoverflow.com/questions/964898/how-do-i-find-the-standard-siteperl-directory-for-perl Comment by Matthew Watson on How do I find the standard site_perl directory for Perl? Matthew Watson 2009-06-08T23:48:09Z 2009-06-08T23:48:09Z nothing is missing I don't think, I was just sleeping :) http://stackoverflow.com/questions/964898/how-do-i-find-the-standard-siteperl-directory-for-perl/964941#964941 Comment by Matthew Watson on How do I find the standard site_perl directory for Perl? Matthew Watson 2009-06-08T13:36:38Z 2009-06-08T13:36:38Z Nope, I'm trying to find where to install a specific module. I have a high level of control over the installation targets, but cannot at this stage change @INC, nor due to the complexity can I use MakeMaker/etc. http://stackoverflow.com/questions/942844/how-do-i-automatically-reset-a-sequences-value-to-0-every-year-in-oracle-10g/942869#942869 Comment by Matthew Watson on How do I automatically reset a sequence's value to 0 every year in Oracle 10g? Matthew Watson 2009-06-03T22:19:02Z 2009-06-03T22:19:02Z @spencer7563 - That is something that the OP needs to know if they are going to implement this solution. If the op is silly enough to just take this code and drop it in the middle of an application then suddenly they have potential for corrupt data. http://stackoverflow.com/questions/942844/how-do-i-automatically-reset-a-sequences-value-to-0-every-year-in-oracle-10g/942869#942869 Comment by Matthew Watson on How do I automatically reset a sequence's value to 0 every year in Oracle 10g? Matthew Watson 2009-06-03T08:13:11Z 2009-06-03T08:13:11Z Sorry, I meant DDL of course. http://stackoverflow.com/questions/942844/how-do-i-automatically-reset-a-sequences-value-to-0-every-year-in-oracle-10g/942869#942869 Comment by Matthew Watson on How do I automatically reset a sequence's value to 0 every year in Oracle 10g? Matthew Watson 2009-06-03T05:50:43Z 2009-06-03T05:50:43Z CAREFUL!! Doing DML will do an implicate commit.. if you need to rollback your transaction, you wont be able to after running through this. http://stackoverflow.com/questions/940513/oracle-optimizing-query-involving-date-calculation/941072#941072 Comment by Matthew Watson on Oracle optimizing query involving date calculation Matthew Watson 2009-06-03T01:14:08Z 2009-06-03T01:14:08Z optimizer_index_cost_adj - watch out adjusting this, according to jonathan lewis you really shouldn't need to change this if you are gathering system stats, my own testing has backed this up. If you change this value at the database level, it will likely effect many queries, not just this one. http://stackoverflow.com/questions/934461/ora-12704-character-set-mismatch-in-query Comment by Matthew Watson on ORA-12704: character set mismatch in query Matthew Watson 2009-06-01T12:15:39Z 2009-06-01T12:15:39Z Where are you getting this error, is it in SQL*Plus or some other Database tool, or in a language client (eg, jdbc, etc) http://stackoverflow.com/questions/920707/importing-3954275-insert-statements-into-oracle-10g/920721#920721 Comment by Matthew Watson on Importing 3954275 Insert statements into Oracle 10g Matthew Watson 2009-05-28T15:28:22Z 2009-05-28T15:28:22Z That will commit after every statement, and pretty much kill performance.