User ninesided - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T11:49:42Z http://stackoverflow.com/feeds/user/1030 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1771314/in-perforce-command-line-how-to-diff-a-file-reopened-for-add/1771436#1771436 4 Answer by ninesided for In Perforce command line, how to diff a file reopened for add? ninesided 2009-11-20T15:59:06Z 2009-11-20T15:59:06Z <p>Sadly, you're on the money here, you'd need to use a third party diff tool to do this because, as you rightly pointed out, until you've submitted the initial integration to the depot, it doesn't have a copy against which to diff. If you go down this route you'd obviously not be able to access files directly in the depot though, you'd need to have both files on the client PC and specify their paths explicity.</p> http://stackoverflow.com/questions/1740536/check-if-a-site-exists-with-php/1740559#1740559 0 Answer by ninesided for check if a site exists with PHP ninesided 2009-11-16T07:08:30Z 2009-11-16T07:08:30Z <p>Whilst firing off an HTTP request will tell you if a site exists, it doesn't tell you whether the domain has been registered but is not currently in use. If this is something that you'd need to be able to do, you need to use a <a href="http://en.wikipedia.org/wiki/Whois" rel="nofollow">WHOIS</a> service to check whether the domain is registered or not.</p> http://stackoverflow.com/questions/19963/whats-the-best-way-of-diffing-crystal-reports 3 What's the best way of diffing Crystal Reports? ninesided 2008-08-21T13:56:06Z 2009-11-13T12:59:24Z <p>If you have two versions of the same report (.rpt) and you want to establish what the exact differences are, what is the best way to go about this? I've seen some commercial tools to do this, but I'm not too interested in forking out cash for something that should be relatively straight forward. Can I hook into the Crystal API and simply list all of the properties of every field or something? Please someone tell me that there's an Open Source project somewhere that does this... @:-)</p> <p>@Kogus, wouldn't diffing the outputs as text hide any formatting differences?</p> <p>@ladoucep, I don't seem to be able to export the report <em>without</em> data.</p> http://stackoverflow.com/questions/1722242/adding-a-watermark-to-a-jtextarea/1722294#1722294 6 Answer by ninesided for Adding a watermark to a JTextArea ninesided 2009-11-12T13:47:21Z 2009-11-13T08:08:10Z <p>I suspect that you'd need to subclass <code>JTextArea</code> and override the <code>paintComponent()</code> method, drawing your background image first and calling <code>super.paintComponent()</code> to render the text:</p> <pre><code>public void paintComponent (Graphics g) { g.drawImage(watermark, 0, 0, this); super.paintComponent(g); } </code></pre> <p><strong><em>edit:</strong> as pointed out by <a href="http://stackoverflow.com/questions/1722242/adding-a-watermark-to-a-jtextarea/1723944#1723944">camickr</a>, a <code>JTextArea</code> is opaque, so your subclass will need to change this by calling <code>setOpaque(false)</code>.</em></p> http://stackoverflow.com/questions/1723878/how-to-join-attributes-in-sql-select-statement/1723916#1723916 3 Answer by ninesided for How to join attributes in sql select statement? ninesided 2009-11-12T17:22:27Z 2009-11-12T17:22:27Z <p>I believe the ANSI standard concatenation operator is: ||</p> <pre><code>SELECT id, name ||' ' || surname || ' ' || age AS info FROM users </code></pre> http://stackoverflow.com/questions/1722299/return-a-default-row-in-sql/1722372#1722372 2 Answer by ninesided for return a default row in sql ninesided 2009-11-12T14:00:27Z 2009-11-12T14:00:27Z <p>I suspect that it would be cleaner to have the process that the writes the ASCII file write the default data if no rows are returned rather than getting Oracle to do it. If the query that you're using is expensive, you'd significantly increase that cost if you fudge it to return a default row as ammoQ and David Oniell have done.</p> http://stackoverflow.com/questions/1722006/ways-to-add-invisible-components-into-jpanel/1722039#1722039 -1 Answer by ninesided for ways to add invisible components into JPanel ? ninesided 2009-11-12T13:01:22Z 2009-11-12T13:01:22Z <p>My first question would be "why are you using a GridBayLayout?", have you looked at the alternatives, like <a href="http://java.sun.com/javase/6/docs/api/javax/swing/GroupLayout.html" rel="nofollow">GroupLayout</a>?</p> http://stackoverflow.com/questions/7884/testing-for-inequality-in-t-sql 8 Testing for inequality in T-SQL ninesided 2008-08-11T15:56:42Z 2009-11-10T05:41:54Z <p>I've just come across this in a WHERE clause:</p> <pre><code>AND NOT (t.id = @id) </code></pre> <p>How does this compare with:</p> <pre><code>AND t.id != @id </code></pre> <p>I'd always write the latter myself, but clearly someone else thinks differently. Is one going to perform any better than the other? I know that using != in the former is going to bust any hopes for using an index that I might have had, but <em>surely</em> the latter will suffer the same problem?</p> http://stackoverflow.com/questions/1548400/how-do-i-make-my-java-application-identify-itself-to-oracle-on-connection 2 How do I make my Java application identify itself to Oracle on connection? ninesided 2009-10-10T16:32:49Z 2009-10-23T11:14:38Z <p>When my application connects to an Oracle database I want to be able to see by looking at the active sessions in the database that it is connected. Currently it identifies itself as "JDBC Thin Client" because that's the driver that I'm using, but other Java based applications that I have are somehow able to set this value to something more meaningful, like "SQL Developer". I thought it was a property of the <code>Connection</code> or the <code>OracleDataSource</code>, but I've not managed to find one that does the trick. Is this possible? In case it matters, I'm using Java 1.5, with Oracle 10g and the 10g thin driver.</p> http://stackoverflow.com/questions/1604608/how-do-i-unlock-an-oracle-users-account-from-java 1 How do I unlock an Oracle user's account from Java? ninesided 2009-10-22T01:42:31Z 2009-10-22T15:29:29Z <p>I'm trying to figure out why my application is unable to unlock a user's Oracle account successfully. Here's a snippet from my code:</p> <pre><code>OracleDataSource ods = new oracle.jdbc.pool.OracleDataSource(); Properties props = new Properties(); props.put("user", "sys"); props.put("password", "sys"); props.put("internal_logon", "sysdba"); ods.setConnectionProperties(props); ods.setURL("jdbc:oracle:thin:@localhost:1523:TEST_DB"); Connection conn = ods.getConnection(); Statement stmt = conn.createStatement(); stmt.execute("ALTER USER SCOTT ACCOUNT UNLOCK"); stmt.close(); </code></pre> <p>At no point does it raise an <code>SQLException</code> or report any problems, but the user's account doesn't actually get unlocked. Am I missing something obvious here or is there some cunning way of getting this to work?</p> http://stackoverflow.com/questions/1574565/oracle-how-can-i-select-records-only-from-yesterday/1574653#1574653 0 Answer by ninesided for Oracle: How can I select records ONLY from yesterday? ninesided 2009-10-15T19:52:35Z 2009-10-15T19:52:35Z <p>If you don't support future dated transactions then something like this might work:</p> <pre><code>AND oh.tran_date &gt;= trunc(sysdate-1) </code></pre> http://stackoverflow.com/questions/1547666/how-do-i-get-a-list-of-locked-users-in-an-oracle-database 0 How do I get a list of locked users in an Oracle database? ninesided 2009-10-10T11:05:57Z 2009-10-10T11:22:10Z <p>I want to be able to list all of the users in a given database along with an icon that determines whether they are locked or not. The problem I'm having is querying the "locked" status for a given user, I though it might have been on <code>all_users</code> but it isn't. Can anyone point me in the right direction?</p> http://stackoverflow.com/questions/1547666/how-do-i-get-a-list-of-locked-users-in-an-oracle-database/1547703#1547703 2 Answer by ninesided for How do I get a list of locked users in an Oracle database? ninesided 2009-10-10T11:22:10Z 2009-10-10T11:22:10Z <p>Found it!</p> <pre><code>SELECT username, account_status FROM dba_users; </code></pre> http://stackoverflow.com/questions/297392/how-do-i-find-out-when-a-stored-procedure-was-last-modified-or-compiled 4 How do I find out when a stored procedure was last modified or compiled? ninesided 2008-11-17T23:48:21Z 2009-10-07T00:43:26Z <p>I think the question title pretty much says it all, I'm preferably looking for a PL/SQL query to accomplish this, but other options might be useful too.</p> http://stackoverflow.com/questions/297465/how-do-you-programatically-identify-a-stored-procedures-dependencies 2 How do you programatically identify a stored procedure's dependencies? ninesided 2008-11-18T00:29:01Z 2009-10-07T00:39:52Z <p>Is it possible to write a PL/SQL query to identify a complete list of a stored procedures dependencies? I'm only interested in identifying other stored procedures and I'd prefer not to limit the depth of nesting that it gets too either. For example, if A calls B, which calls C, which calls D, I'd want B, C and D reported as dependencies for A.</p> http://stackoverflow.com/questions/728137/what-is-the-best-way-to-model-user-defined-hierarchical-relationships-in-a-databa 1 What is the best way to model user defined hierarchical relationships in a database? ninesided 2009-04-08T00:53:19Z 2009-09-09T20:25:23Z <p>Essentially, I want the user to be able to define a hierarchical model, but then I need to allow the user to store data within their defined model. Does this make sense? So the users will be able to create new "unit types" to be organised in a hierarchical way and decide how units of these types are allowed to be organised. A simple example: in my hypothetical interface a user creates three unit types, trunk, branch and leaf. The user then defines the relationships between them. A leaf can exist at any point in the hierarchy, a branch must have a trunk as a parent. The user can then creates instances of these unit types (as units) and can organise them according the rules defined in their model... is there a good way of doing this in the database?</p> http://stackoverflow.com/questions/823730/how-do-i-query-the-value-of-a-server-option-in-sybase 0 How do I query the value of a server option in Sybase? ninesided 2009-05-05T07:21:21Z 2009-08-31T13:25:59Z <p>For example, if I wanted to know the current value of the <code>quoted_identifier</code> server option, is there a query that can give me this information?</p> http://stackoverflow.com/questions/1231805/what-would-you-do-to-avoid-conflicting-data-in-this-database-schema/1231861#1231861 2 Answer by ninesided for What would you do to avoid conflicting data in this database schema? ninesided 2009-08-05T08:24:37Z 2009-08-05T08:24:37Z <p>I'd go with with the latter, having one or more tables that define the allowable relationships between entities.</p> http://stackoverflow.com/questions/1204942/can-i-get-file-path-from-swing-to-explorer/1204971#1204971 1 Answer by ninesided for Can I get file path from Swing to explorer ninesided 2009-07-30T07:27:17Z 2009-07-30T07:40:37Z <p>Java's DnD support does allow you to drag things out of a Java application into a native one, but I think that it's limited to text and only alows target components which will accept text, like the address bar in a browser.</p> <p>If the explorer address bar does not accept text from a drag and drop, you could always add a menu option to your application to "Open in Explorer" which just launches a new Explorer process with the file path as a parameter.</p> http://stackoverflow.com/questions/285680/representing-monetary-values-in-java/285707#285707 13 Answer by ninesided for Representing Monetary Values in Java ninesided 2008-11-12T22:57:18Z 2009-07-16T13:11:09Z <p><code>BigDecimal</code> all the way. I've heard of some folks creating their own <code>Cash</code> or <code>Money</code> classes which encapsulate a cash value with the currency, but under the skin it's still a <code>BigDecimal</code>, probably with <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/math/BigDecimal.html#ROUND%5FHALF%5FEVEN" rel="nofollow"><code>BigDecimal.ROUND_HALF_EVEN</code></a> rounding.</p> <p><strong>Edit:</strong> As Don mentions in <a href="http://stackoverflow.com/questions/285680/representing-monetary-values-in-java#286228">his answer</a>, there are open sourced projects like <a href="http://timeandmoney.sourceforge.net/" rel="nofollow">timeandmoney</a>, and whilst I applaud them for trying to prevent developers from having to reinvent the wheel, I just don't have enough confidence in a pre-alpha library to use it in a production environment. Besides, if you dig around under the hood, you'll see <a href="http://timeandmoney.svn.sourceforge.net/viewvc/timeandmoney/timeandmoney/trunk/src/main/java/com/domainlanguage/money/Money.java?view=markup" rel="nofollow">they use <code>BigDecimal</code> too</a>.</p> http://stackoverflow.com/questions/1103367/what-is-the-single-most-effective-thing-you-have-done-to-improve-your-soft-skills/1103476#1103476 1 Answer by ninesided for What is the single most effective thing you have done to improve your soft skills? ninesided 2009-07-09T12:17:48Z 2009-07-09T12:26:22Z <p>The best way to improve your soft skills is to <em>use</em> your soft skills. Put on a lunch time seminar for your fellow work mates. Nothing too scary, just pick a technology that you think could be introduced in house to make things work more efficiently, put together a five minute presentation and set some time aside for questions and discussion afterwards. You might even start a trend, one day a week a different person can talk about something that interests them.</p> http://stackoverflow.com/questions/1066900/dynamic-automatic-text-inserting/1079973#1079973 1 Answer by ninesided for Dynamic Automatic Text Inserting ninesided 2009-07-03T16:03:22Z 2009-07-03T16:03:22Z <p>I guess there are two approaches to take here, macros at the text editor level (most decent text editors support the notion of macros, but some are better than others) and then macros at the OS-level. Either way, if you can write a chunk of code in your language of choice that outputs the text that you want, you should be able to hook it up to key-stroke. My personal preference would be to use a text editor that supports this kind of thing out-of-the-box, so to speak, like <a href="http://jedit.org/" rel="nofollow">JEdit</a> or <a href="http://www.e-texteditor.com/" rel="nofollow">E-Text Editor</a>. If you want to go down the OS-level route, you could investigate something like <a href="http://www.autohotkey.com" rel="nofollow">AutoHotkey</a>.</p> http://stackoverflow.com/questions/1069235/powerbuilder-11-5-version-control/1069265#1069265 2 Answer by ninesided for PowerBuilder 11.5 & Version Control ninesided 2009-07-01T13:57:48Z 2009-07-01T13:57:48Z <p>We currently use <a href="http://www.perforce.com" rel="nofollow">Perforce</a> and it's <a href="http://www.perforce.com/perforce/products/p4scc.html" rel="nofollow">P4SCC</a> plugin, which works very well. In fact, I'm sure I read somewhere that the guys at Sybase who <em>write</em> PowerBuilder, actually use Perforce themselves.</p> http://stackoverflow.com/questions/1068356/jtextarea-alignment/1068396#1068396 1 Answer by ninesided for JTextArea alignment ninesided 2009-07-01T10:32:16Z 2009-07-01T10:32:16Z <p>This depends on the <a href="http://java.sun.com/javase/6/docs/api/java/awt/LayoutManager.html" rel="nofollow"><code>LayoutManager</code></a> that your <code>JPanel</code> uses, not the <code>JTextArea</code> itself. Unless you specify a <code>LayoutManager</code> when creating your <code>JPanel</code>, it will be using <a href="http://java.sun.com/javase/6/docs/api/java/awt/FlowLayout.html" rel="nofollow"><code>FlowLayout</code></a>. </p> http://stackoverflow.com/questions/724083/unix-newlines-to-windows-newlines-on-windows/724118#724118 1 Answer by ninesided for Unix newlines to windows newlines (on Windows) ninesided 2009-04-07T04:13:04Z 2009-06-24T12:02:34Z <p>If Cygwin isn't for you, there are numerous standalone executables for unix2dos under Windows if you Google around, or you could write one yourself, see my similar (opposite direction for conversion) question <a href="http://stackoverflow.com/questions/313178/whats-the-best-way-of-doing-dos2unix-on-a-500k-line-file-in-windows">here</a>.</p> http://stackoverflow.com/questions/12144/application-configuration-files 8 Application configuration files ninesided 2008-08-15T11:19:51Z 2009-06-22T11:41:07Z <p>OK, so I don't want to start a holy-war here, but we're in the process of trying to consolidate the way we handle our application configuration files and we're struggling to make a descision on the best approach to take. At the moment, every application we distribute is using it's own ad-hoc configuration files, whether it's property files (ini style), XML or JSON (internal use only at the moment!).</p> <p>Most of our code is Java at the moment, so we've been looking at <a href="http://commons.apache.org/configuration/" rel="nofollow" title="Nini">Apache Commons Config</a>, but we've found it to be quite verbose. We've also looked at <a href="http://xmlbeans.apache.org/" rel="nofollow" title="Apple Developer Connection">XMLBeans</a>, but it seems like a lot of faffing around. I also feel as though I'm being pushed towards XML as a format, but my clients and colleagues are apprehensive about trying something else. I can understand it from the client's perspective, everybody's heard of XML, but at the end of the day, shouldn't be using the right tool for the job?</p> <p>What formats and libraries are people using in production systems these days, is anyone else trying to avoid the <a href="http://www.codinghorror.com/blog/archives/001114.html" rel="nofollow">angle bracket tax</a>?</p> <p><em>Edit: really needs to be a cross platform solution: Linux, Windows, Solaris etc. and the choice of library used to interface with configuration files is just as important as the choice of format</em></p> http://stackoverflow.com/questions/1021557/how-to-unzip-a-file-using-the-command-line/1021578#1021578 3 Answer by ninesided for How to unzip a file using the command line? ninesided 2009-06-20T13:08:56Z 2009-06-20T13:08:56Z <p><a href="http://www.7-zip.org/download.html" rel="nofollow">7-Zip</a>, it's open source, free and supports a wide range of formats.</p> http://stackoverflow.com/questions/14577/how-do-i-avoid-using-cursors-in-sybase-t-sql 1 How do I avoid using cursors in Sybase (T-SQL)? ninesided 2008-08-18T13:24:55Z 2009-06-12T17:51:56Z <p>Imagine the scene, you're updating some legacy Sybase code and come across a cursor. The stored procedure builds up a result set in a #temporary table which is all ready to be returned except that one of columns isn't terribly human readable, it's an alphanumeric code.</p> <p>What we need to do, is figure out the possible distinct values of this code, call another stored procedure to cross reference these discreet values and then update the result set with the newly deciphered values:</p> <pre><code>declare c_lookup_codes for select distinct lookup_code from #workinprogress while(1=1) begin fetch c_lookup_codes into @lookup_code if @@sqlstatus&lt;&gt;0 begin break end exec proc_code_xref @lookup_code @xref_code OUTPUT update #workinprogress set xref = @xref_code where lookup_code = @lookup_code end </code></pre> <p>Now then, whilst this may give some folks palpitations, it does work. My question is, how best would one avoid this kind of thing?</p> <p><em>NB: for the purposes of this example you can also imagine that the result set is in the region of 500k rows and that there are 100 distinct values of look</em>up<em>code and finally, that it is not possible to have a table with the xref values in as the logic in proc</em>code<em>xref is too arcane.</em></p> http://stackoverflow.com/questions/307942/how-do-i-conditionally-create-a-table-in-sybase-tsql 2 How do I conditionally create a table in Sybase (TSQL)? ninesided 2008-11-21T05:15:09Z 2009-06-12T17:23:15Z <p>OK, so Sybase (12.5.4) will let me do the following to DROP a table if it already exists:</p> <pre><code>IF EXISTS ( SELECT 1 FROM sysobjects WHERE name = 'a_table' AND type = 'U' ) DROP TABLE a_table GO </code></pre> <p>But if I try to do the same with table creation, I always get warned that the table already exists, because it went ahead and tried to create my table and ignored the conditional statement. Just try running the following statement twice, you'll see what I mean:</p> <pre><code>IF NOT EXISTS ( SELECT 1 FROM sysobjects WHERE name = 'a_table' AND type = 'U' ) CREATE TABLE a_table ( col1 int not null, col2 int null ) GO </code></pre> <p>Running the above produces the following error:</p> <blockquote> <p>*SQL Server Error on (localhost) Error:2714 at Line:7 Message:There is already an object named 'a_table' in the database.*</p> </blockquote> <p>What's the deal with that?!</p> http://stackoverflow.com/questions/9019/best-method-for-varchar-date-validation-in-sybase-t-sql 0 Best method for varchar date validation in Sybase (T-SQL)? ninesided 2008-08-12T16:22:14Z 2009-06-12T17:16:27Z <p>I have a stored procedure which takes as its parameter a <em>varchar</em> which needs to be cast as a <em>datetime</em> for later use:</p> <pre><code>SET @the_date = CAST(@date_string AS DATETIME) </code></pre> <p>I'm expecting the date string to be supplied in the format "DD-MON-YYYY", but in an effort to code defensively, if for some reason it can't be cast successfully, I want to default to the system date and continue. In PL/SQL I could use exception handling to achieve this and I could do this fairly easily with regular expressions too, but the limited pattern matching supported out of the box by Sybase doesn't let me do this and I can't rely on third party libraries or extensions. Is there a simple way of doing this in T-SQL?</p> <p><em>NB: using Sybase ASE 12.5.3, there is no ISDATE function</em></p> http://stackoverflow.com/questions/19963/whats-the-best-way-of-diffing-crystal-reports/1729083#1729083 Comment by ninesided on What's the best way of diffing Crystal Reports? ninesided 2009-11-16T07:15:46Z 2009-11-16T07:15:46Z this does sound pretty handy, is it something you'd be happy to put up in a GitHub repository or something? http://stackoverflow.com/questions/1722242/adding-a-watermark-to-a-jtextarea/1723944#1723944 Comment by ninesided on Adding a watermark to a JTextArea ninesided 2009-11-13T08:04:47Z 2009-11-13T08:04:47Z you can just setOpaque(false) and that solves that little problem. http://stackoverflow.com/questions/1722299/return-a-default-row-in-sql/1722761#1722761 Comment by ninesided on return a default row in sql ninesided 2009-11-12T17:09:37Z 2009-11-12T17:09:37Z nice, I've never seen that before http://stackoverflow.com/questions/1722006/ways-to-add-invisible-components-into-jpanel/1722039#1722039 Comment by ninesided on ways to add invisible components into JPanel ? ninesided 2009-11-12T13:23:42Z 2009-11-12T13:23:42Z Sun has an excellent example: <a href="http://java.sun.com/docs/books/tutorial/uiswing/layout/groupExample.html" rel="nofollow">java.sun.com/docs/books/&hellip;</a> http://stackoverflow.com/questions/1722006/ways-to-add-invisible-components-into-jpanel/1722039#1722039 Comment by ninesided on ways to add invisible components into JPanel ? ninesided 2009-11-12T13:11:11Z 2009-11-12T13:11:11Z I disagree completely, GroupLayout and SpringLayout were both written with GUI builders in mind but are both significantly easier to work with than GridBagLayout when hand coding. If I could -1 your -1, I would. http://stackoverflow.com/questions/1604608/how-do-i-unlock-an-oracle-users-account-from-java/1605199#1605199 Comment by ninesided on How do I unlock an Oracle user's account from Java? ninesided 2009-10-22T07:10:15Z 2009-10-22T07:10:15Z Thanks for the advice. The statement works perfectly in SQL*Plus, I have checked the connection details for the database dozens of time and it is definitely the correct database and there are no other processes that could make this change other than the one I'm trying to test. http://stackoverflow.com/questions/1604608/how-do-i-unlock-an-oracle-users-account-from-java Comment by ninesided on How do I unlock an Oracle user's account from Java? ninesided 2009-10-22T07:08:06Z 2009-10-22T07:08:06Z Oracle 10g, statement works perfectly in SQL*Plus. http://stackoverflow.com/questions/1604608/how-do-i-unlock-an-oracle-users-account-from-java/1605465#1605465 Comment by ninesided on How do I unlock an Oracle user's account from Java? ninesided 2009-10-22T07:03:58Z 2009-10-22T07:03:58Z I agree wholeheartedly, unfortunately I have a specific requirement which necessitates this approach. The application is intended as a simple support tool and will only ever be able to lock/unlock a user account and change a user's password. http://stackoverflow.com/questions/1604608/how-do-i-unlock-an-oracle-users-account-from-java/1605026#1605026 Comment by ninesided on How do I unlock an Oracle user's account from Java? ninesided 2009-10-22T06:59:52Z 2009-10-22T06:59:52Z a commit is not required for an ALTER USER http://stackoverflow.com/questions/1604608/how-do-i-unlock-an-oracle-users-account-from-java/1604836#1604836 Comment by ninesided on How do I unlock an Oracle user's account from Java? ninesided 2009-10-22T06:59:16Z 2009-10-22T06:59:16Z I thought you might have been on to something here, but it makes no difference... http://stackoverflow.com/questions/1604608/how-do-i-unlock-an-oracle-users-account-from-java/1604634#1604634 Comment by ninesided on How do I unlock an Oracle user's account from Java? ninesided 2009-10-22T02:20:45Z 2009-10-22T02:20:45Z Sadly not. It runs, but doesn't affect the account status change. http://stackoverflow.com/questions/578305/create-a-java-file-object-or-equivalent-using-a-byte-array-in-memory-without-a/578335#578335 Comment by ninesided on Create a Java File object (or equivalent) using a byte array in memory (without a physical file) ninesided 2009-10-16T11:14:51Z 2009-10-16T11:14:51Z also works perfectly with 'addAttachment' http://stackoverflow.com/questions/1574565/oracle-how-can-i-select-records-only-from-yesterday/1574574#1574574 Comment by ninesided on Oracle: How can I select records ONLY from yesterday? ninesided 2009-10-15T19:46:34Z 2009-10-15T19:46:34Z If, as I presume, there's an index on tran_date on which this query relies, calling a funtion on the indexed column like this will decimate the performance of the query. http://stackoverflow.com/questions/1238041/massive-mysql-query Comment by ninesided on Massive MySQL Query ninesided 2009-08-06T10:16:42Z 2009-08-06T10:16:42Z the first question I feel compelled to ask is why you're storing the date as a bigint? http://stackoverflow.com/questions/1231805/what-would-you-do-to-avoid-conflicting-data-in-this-database-schema/1231856#1231856 Comment by ninesided on What would you do to avoid conflicting data in this database schema? ninesided 2009-08-05T08:25:50Z 2009-08-05T08:25:50Z I think the point is that without some means of recording what is or isn't allowable in the database, the trigger can't determine whether data which is valid actually makes sense.