User Brian - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T10:59:50Zhttp://stackoverflow.com/feeds/user/700http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1815911/why-the-jmeter-not-work/1816222#18162221Answer by Brian for why the jmeter not work ?Brian2009-11-29T18:01:06Z2009-11-29T20:31:52Z<ol>
<li>Does your JMeter test contain an HTTP cookie manager?</li>
</ol>
http://stackoverflow.com/questions/1816155/java-nullpointerexception-when-i-call-a-method-on-a-custom-class/1816168#18161680Answer by Brian for Java NullPointerException When I call a method on a custom class Brian2009-11-29T17:44:24Z2009-11-29T17:44:24Z<p>p at </p>
<pre><code>p.play();
</code></pre>
<p>is null. You never create it. The only instances of Player being initialized are the ones your adding to your ArrayList collection. </p>
http://stackoverflow.com/questions/1791276/ojb-oracle-xe-sql-debug-display-problem/1791383#17913830Answer by Brian for OJB / Oracle XE sql debug-display problemBrian2009-11-24T16:53:05Z2009-11-24T16:53:05Z<p>One quick and dirty way is to look in the provided database views (v$sql_bind_capture and v$sqlarea). In the SQL below, I just added a like clause to match the sql statement you have above, you will then get a row for each bind variable and it's value. To target a very specific SQL statement you want the sql_id for your query.</p>
<pre><code>SELECT a.sql_text, b.NAME, b.POSITION, b.datatype_string, b.value_string
FROM v$sql_bind_capture b, v$sqlarea b
WHERE b.sql_id = a.sql_id
and a.sql_text like '%UPPER(A0.DOC_TYP_NM) LIKE :1%'
</code></pre>
<p>Output (without the SQL the result would look look something like this):</p>
<pre><code>"NAME","POSITION","DATATYPE_STRING","VALUE_STRING"
":B1","2","NUMBER","1001"
</code></pre>
http://stackoverflow.com/questions/1631032/oc4j-orion-application-xml-elements-and-attributes-mapped-to-deployment-plan-p/1709989#17099891Answer by Brian for OC4J orion-application.xml - elements and attributes mapped to deployment plan propertiesBrian2009-11-10T18:06:37Z2009-11-12T01:27:52Z<p>If your trying to bind a war file to a specific address (e.g. <a href="http://application-server.com/myapp/" rel="nofollow">http://application-server.com/myapp/</a>
- you can specify that in application.xml. No need to use orion-application.xml for that. orion-application.xml is usually used for non j2ee spec things like jazn settings - compiler and library instructions, jmx, ejb compile instructions, etc..). The closest thing I can guess at from your question is you can specify the </p>
<pre><code><web-module id>
</code></pre>
<p>in orion-application.xml. Which looks like this:</p>
<pre><code><web-module id="my-app" path="myapp.war" />
</code></pre>
<p>But I don't think that is what your after. I think you just want to know in application.xml. Like:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE application PUBLIC '-//Sun Microsystems, Inc.//DTD J2EE Application 1.3//EN' 'http://java.sun.com/dtd/application_1_3.dtd'>
<application>
<display-name>My Application</display-name>
<description>My Really Awesome Application</description>
<module>
<web>
<web-uri>myapp.war</web-uri>
<context-root>/myapp</context-root>
</web>
</module>
</application>
</code></pre>
http://stackoverflow.com/questions/1690404/how-to-drop-all-user-tables/1690454#16904541Answer by Brian for How to drop all user tables?Brian2009-11-06T21:07:04Z2009-11-06T21:07:04Z<p>The simplest way is to drop the user that owns the objects with the cascade command.</p>
<pre><code>DROP USER username CASCADE
</code></pre>
http://stackoverflow.com/questions/1659329/ibatis-mapping-for-oracle-cursor/1659389#16593891Answer by Brian for iBatis mapping for oracle cursorBrian2009-11-02T04:11:18Z2009-11-02T04:11:18Z<p>Returning a Boolean type is <a href="http://www.oracle.com/technology/tech/java/sqlj%5Fjdbc/htdocs/jdbc%5Ffaq.html#34%5F05" rel="nofollow">not supported by Oracle JDBC</a>. Or more specifically, it can't be used in any result set in Oracle (there is a Boolean that can be used in PL/SQL, but you can't return it in a ref cursor or declare a column of being type 'Boolean'. </p>
<p>It sounds like you are saying that your ref cursor contains boolean? If yes, you will need to return 'Y' or 'N' or something similar. Please consider posting the source/signature of the stored procedure - that will help with the answer.</p>
<p><a href="http://www.oracle.com/technology/tech/java/sqlj%5Fjdbc/htdocs/jdbc%5Ffaq.html#34%5F05" rel="nofollow">http://www.oracle.com/technology/tech/java/sqlj%5Fjdbc/htdocs/jdbc%5Ffaq.html#34%5F05</a></p>
<p>Tom Kyte's traditionally cheeky <a href="http://asktom.oracle.com/pls/asktom/f?p=100:11%3A0%3A%3A%3A%3AP11%5FQUESTION%5FID:6263249199595" rel="nofollow">response</a>:
You Asked</p>
<blockquote>
<p>Here's a real short one for you Tom:</p>
<p>Why doesn't Oracle RDBMS have a
boolean datatype? </p>
<p>and we said...</p>
<p>since ..., flag char(1) check (flag in
( 'Y', 'N' )), ...,</p>
<p>serves the same purpose, requires the
same amount of space and does the same
thing - I guess we feel this is a
feature we can let them have that we
really don't need.</p>
<p>I mean - what do you get back from a
column in "access" that is a boolean?
TRUE / FALSE. We'll give you Y/N --
if you would like TRUE/FALSE, we can
accomplish that easily with
DECODE(flag,'Y','TRUE','N','FALSE')</p>
</blockquote>
http://stackoverflow.com/questions/1634458/can-i-use-a-single-war-file-in-multiple-environments-should-i/1634561#16345610Answer by Brian for Can I use a single war file in multiple environments? Should I?Brian2009-10-28T00:41:15Z2009-10-28T00:47:16Z<p>I prefer the one EAR or one WAR approach. There is something re-assuring and often required from a security standpoint about taking the exact same EAR that was just tested and moving it directly into the next state (test > Production). </p>
<p>There are also many options besides properties files provided by the container. Often the container has a nice UI to maintain those values and resources when you are dead and gone. </p>
<p>There are countless examples of using a database backed <a href="http://java.sun.com/javase/6/docs/api/java/util/ResourceBundle.html" rel="nofollow">ResourceBundle</a>. </p>
<p>For example, the Spring framework has several mechanisms to make that happen without much effort. Starting with <a href="http://static.springsource.org/spring/docs/2.0.x/api/org/springframework/beans/factory/config/PropertyPlaceholderConfigurer.html" rel="nofollow">PropertyPlaceholderConfigurer</a></p>
http://stackoverflow.com/questions/1604608/how-do-i-unlock-an-oracle-users-account-from-java/1604634#16046340Answer by Brian for How do I unlock an Oracle user's account from Java?Brian2009-10-22T01:50:56Z2009-10-22T02:10:26Z<p>I would be curious to see if this resolves the issue:</p>
<p>stmt.execute("BEGIN EXECUTE IMMEDIATE 'ALTER USER SCOTT ACCOUNT UNLOCK'; END;");</p>
http://stackoverflow.com/questions/1484854/web-xml-servlet-mapping-for-wildcard-requests/1484914#14849141Answer by Brian for web.xml servlet mapping for wildcard requestsBrian2009-09-28T00:31:59Z2009-10-20T18:50:01Z<p>I think your goal is a bit confusing and brittle. However, to answer your question, try a welcome file entry for the <a href="http://your-domain.com/" rel="nofollow">http://your-domain.com/</a> request.</p>
<pre><code><welcome-file-list>
<welcome-file>/test2.jsp</welcome-file>
</welcome-file-list>
</code></pre>
<p>It is most common to then have test2.jsp perform a redirect or forward to some other 'controller' in your application. That way your MVC is always fired even on <a href="http://your-domain.com/" rel="nofollow">http://your-domain.com/</a> requests.</p>
<p>If you agree with me on that, then your welcome file should be index.jsp (to follow common conventions). The code in index.jsp is then a one-liner redirect to a 'welcome' servlet.</p>
http://stackoverflow.com/questions/1507295/how-to-answer-what-are-your-strengths-and-what-are-your-weakness-question-during/1576041#15760411Answer by Brian for How to answer what are your strengths and what are your weakness question during Interview ?Brian2009-10-16T01:38:48Z2009-10-16T01:38:48Z<p>You should consider listening to manager-tool's <a href="http://www.manager-tools.com/2007/01/how-to-handle-the-interview-weakness-question" rel="nofollow">podcast</a> on how to handle this interview question. Great advice.</p>
http://stackoverflow.com/questions/424839/what-were-the-main-disadvantages-of-cgi-bin-based-web-development3What were the main disadvantages of CGI-BIN based web development?Brian2009-01-08T16:08:49Z2009-09-23T09:10:41Z
<p>I was fortunate enough to not do any cgi-bin .cgi based web development. But generally those who have do not seem to 'miss' those days. </p>
<p>A project I recently joined has a performance issue when dealing with the pages that need to communicate to a legacy system that has a CGI-BIN based API. That system is COGNOS 7. </p>
<p>The feedback I received to date is that 'COGNOS is slow' but others have reported great success with COGNOS, I am thinking it has more to do with the access via CGI-BIN and not the performance of COGNOS in and of itself.</p>
<p>All that said what are the main issues that made CGI-BIN based web development non-performant, difficult, etc...</p>
http://stackoverflow.com/questions/1378593/get-a-list-of-dates-between-two-dates-using-a-function/1378664#13786640Answer by Brian for Get a list of dates between two dates using a functionBrian2009-09-04T11:23:48Z2009-09-04T11:23:48Z<p>I'm an oracle guy, but I believe MS SQL Server has support for the connect by clause:</p>
<pre><code>select sysdate + level
from dual
connect by level <= 10 ;
</code></pre>
<p>The output is:</p>
<pre><code>SYSDATE+LEVEL
05-SEP-09
06-SEP-09
07-SEP-09
08-SEP-09
09-SEP-09
10-SEP-09
11-SEP-09
12-SEP-09
13-SEP-09
14-SEP-09
</code></pre>
<p>Dual is just a 'dummy' table that comes with oracle (it contains 1 row and the word 'dummy' as the value of the single column). </p>
http://stackoverflow.com/questions/899858/returning-csv-file-from-servlet-using-servletoutputstream-over-https-in-internet0Returning CSV file from Servlet using ServletOutputStream over HTTPS in Internet ExplorerBrian2009-05-22T20:32:13Z2009-08-26T11:08:22Z
<p>I have a Servlet which is returning a csv file that is 'working' over HTTP in both internet explorer and firefox. When I execute the same Servlet over HTTPS only firefox continues to download the csv file over HTTPS. I don't think this is necessarily an Internet 6 or 7 issue described <a href="http://support.microsoft.com/kb/812935" rel="nofollow">on MSDN</a> :</p>
<p>The message is:</p>
<blockquote>
<p>Internet Explorer cannot download
data.csv from mydomain.com Internet
Explorer was not able to open this
Internet site. The requested site is
either unavailable or cannot be found.
Please try again later.</p>
</blockquote>
<p>Please note that the site is still 'up' after this message and you can continue to browse the site, its just the download of the CSV that prompts this message. I have been able to access similar files over https on IE from other j2ee applications so I believe it is our code. <strong>Should we not be closing the bufferedOutputStream?</strong> </p>
<p>The code is:</p>
<pre><code>public class DownloadServlet extends HttpServlet {
public void doGet(HttpServletRequest request,
HttpServletResponse response) throws ServletException,
IOException {
ServletOutputStream out = null;
ByteArrayInputStream byteArrayInputStream = null;
BufferedOutputStream bufferedOutputStream = null;
try {
response.setContentType("text/csv");
String disposition = "attachment; fileName=data.csv";
response.setHeader("Content-Disposition", disposition);
out = response.getOutputStream();
byte[] blobData = dao.getCSV();
//setup the input as the blob to write out to the client
byteArrayInputStream = new ByteArrayInputStream(blobData);
bufferedOutputStream = new BufferedOutputStream(out);
int length = blobData.length;
response.setContentLength(length);
//byte[] buff = new byte[length];
byte[] buff = new byte[(1024 * 1024) * 2];
//now lets shove the data down
int bytesRead;
// Simple read/write loop.
while (-1 !=
(bytesRead = byteArrayInputStream.read(buff, 0, buff.length))) {
bufferedOutputStream.write(buff, 0, bytesRead);
}
out.flush();
out.close();
} catch (Exception e) {
System.err.println(e); throw e;
} finally {
if (out != null)
out.close();
if (byteArrayInputStream != null) {
byteArrayInputStream.close();
}
if (bufferedOutputStream != null) {
bufferedOutputStream.close();
}
}
}
</code></pre>
http://stackoverflow.com/questions/64649/how-do-i-get-the-unix-find-command-to-print-out-the-file-size-with-the-file-name3How do I get the unix find command to print out the file size with the file name?Brian2008-09-15T16:53:13Z2009-08-21T01:58:11Z
<p>If I issue the find command as follows: </p>
<pre><code>$find . -name *.ear
</code></pre>
<p>It prints out:</p>
<pre><code>./dir1/dir2/earFile1.ear
./dir1/dir2/earFile2.ear
./dir1/dir3/earFile1.ear
</code></pre>
<p>What I want to 'print' to the command line is the name and the size:</p>
<pre><code>./dir1/dir2/earFile1.ear 5000 KB
./dir1/dir2/earFile2.ear 5400 KB
./dir1/dir3/earFile1.ear 5400 KB
</code></pre>
http://stackoverflow.com/questions/230407/what-is-the-unix-command-to-see-how-much-disk-space-there-is-and-how-much-is-rema4What is the unix command to see how much disk space there is and how much is remaining?Brian2008-10-23T16:26:24Z2009-08-18T02:50:54Z
<p>I'm looking for the equivalent of right clicking on the drive in windows and seeing the disk space used and remaining info.</p>
http://stackoverflow.com/questions/347238/what-are-the-advantages-to-each-approach-for-mapping-application-end-users-to-da6What are the advantages to each approach for mapping application end users to database users?Brian2008-12-07T04:46:28Z2009-08-13T11:47:15Z
<p>There seems to be three common approaches for mapping an application end user to a database user. </p>
<ol>
<li><strong>One to One Mapping:</strong> Each Application user (bob, nancy and fred) also get a corresponding database user account (bob nancy and fred).</li>
<li><strong>N to M mapping:</strong> Each application user is mapped to a database user that represents their role. bob and nancy are mapped to the 'clerk' database user while fred is mapped to the 'manager' database user.</li>
<li><strong>N to 1 mapping:</strong> Each application user is mapped to a single database user (app_user) and identity is only managed at the application tier.</li>
</ol>
<p>It seems that #3 is the most common in web application development. Why is there not a greater emphasis on the other two options?</p>
<p>Oracle encourages techniques like #2 using its proxy authentication features for the following reason:</p>
<p><strong>Limited trust model</strong>-controlling the users on whose behalf middle tiers can connect, and the roles the middle tiers can assume for the user</p>
<p><strong>Scalability</strong>-by supporting lightweight user sessions and eliminating the overhead of re-authenticating clients</p>
<p><strong>Accountability</strong>, by preserving the identity of the real user through to the database, and enabling auditing of actions taken on behalf of the real user</p>
http://stackoverflow.com/questions/1263287/getting-total-number-of-records-while-fetching-limited-set-oracle/1264111#12641111Answer by Brian for Getting total number of records while fetching limited set - OracleBrian2009-08-12T03:46:27Z2009-08-12T03:46:27Z<pre><code>SELECT rn, total_rows, x.OWNER, x.object_name, x.object_type
FROM (SELECT COUNT (*) OVER (PARTITION BY owner) AS TOTAL_ROWS,
ROW_NUMBER () OVER (ORDER BY 1) AS rn, uo.*
FROM all_objects uo
WHERE owner = 'CSEIS') x
WHERE rn BETWEEN 6 AND 10
RN TOTAL_ROWS OWNER OBJECT_NAME OBJECT_TYPE
6 1262 CSEIS CG$BDS_MODIFICATION_TYPES TRIGGER
7 1262 CSEIS CG$AUS_MODIFICATION_TYPES TRIGGER
8 1262 CSEIS CG$BDR_MODIFICATION_TYPES TRIGGER
9 1262 CSEIS CG$ADS_MODIFICATION_TYPES TRIGGER
10 1262 CSEIS CG$BIS_LANGUAGES TRIGGER
</code></pre>
http://stackoverflow.com/questions/1241512/cursor-is-closed-error-when-trying-to-execute-an-oracle-sp-using-jdbc/1241613#12416131Answer by Brian for "Cursor is closed" error - when trying to execute an Oracle SP using JDBCBrian2009-08-06T21:30:44Z2009-08-06T21:30:44Z<p>The client calling the stored procedure is responsible for closing the cursor. Please remove the code:
CLOSE test_OUT;</p>
<p>The client closes it. In this case the client is the JDBC program that calls the stored procedure. </p>
http://stackoverflow.com/questions/1229575/passing-date-parameters-to-oracle-query-in-ssrs/1230832#12308320Answer by Brian for Passing date parameters to Oracle Query in SSRSBrian2009-08-05T02:05:58Z2009-08-05T02:05:58Z<p>If you insist on having one parameter (:myDate), using a with clause can make the process a bit cleaner. I'm not familar with the syntax you have in your example (i.e. the 'Date' like casting in the query), below is a SQL only implementation.</p>
<pre><code>with
select TRUNC(TO_DATE(:mydate, 'yyyy-mm-dd')) p_date from dual as parameters
select t.*
from
myTable t,
parameters
where
trunc(t.date) between parameters.p_date and parameters.p_date + 1
</code></pre>
http://stackoverflow.com/questions/15514/is-there-anyway-to-disable-the-client-side-validation-for-dojo-date-text-box0Is there anyway to disable the client-side validation for dojo date text box?Brian2008-08-19T01:51:46Z2009-07-28T03:31:20Z
<p>In my example below I'm using a dijit.form.DateTextBox.</p>
<pre><code><input type="text" name="startDate" dojoType="dijit.form.DateTextBox" constraints="{datePattern:'MM/dd/yyyy'}" value='<c:out value="${sessionScope.adminMessageForm.startDate}"/>' />
</code></pre>
<p>So for example, if the user starts to enter "asdf" into the date the field turns yellow and a popup error message appears saying "The value entered is not valid." Even if I remove the constraints="{datePattern:'MM/dd/yyyy'}" it still validates. </p>
<p>Without going into details as to why, I would like to be able keep the dojoType and still prevent validation in particular circumstances.</p>
http://stackoverflow.com/questions/1081297/what-is-an-effective-way-to-track-identify-and-report-every-error-message-rai1What is an effective way to track, identify and report every 'error message' raised by your application?Brian2009-07-04T01:37:44Z2009-07-27T02:52:39Z
<p>In case management and workflow systems this seems to come up a lot. The need to provide a comprehensive list of each error message in the 'system' and provide its possible cause(s) and corrective action(s). Especially in cases where the help desk may be outsourced to a 3rd party and they need a set of scripts to follow for any and all error messages that a user can encounter.</p>
<p>One site that tries to listall of Oracle's error codes is ora-code.com</p>
http://stackoverflow.com/questions/337432/looking-for-a-regular-expression-to-identify-hard-coded-magic-numbers-in-source-c2Looking for a regular expression to identify hard coded magic numbers in source codeBrian2008-12-03T15:07:06Z2009-07-26T01:33:22Z
<p>A frequent issue in code reviews is whether a numeric value should be hard-coded in the code or not. Does anyone know of a nice regular expression that can catch 'magic numbers' in code like:</p>
<pre><code>int overDue = 30;
Money fee = new Money(5.25D);
</code></pre>
<p>without also getting a ton of false positives like for loop initialization code?</p>
<pre><code>for (int i = 0; i < array.length; i++) {
}
</code></pre>
http://stackoverflow.com/questions/1163319/java-secure-session/1180797#11807970Answer by Brian for Java secure session Brian2009-07-25T00:32:36Z2009-07-25T00:32:36Z<p>Your still on the server while you invalidate the session.</p>
<pre><code>//get stuff out of session you want before invalidating it.
currentSession = request.getSession(true);
UserProfile userProfile = (UserProfile) currentSession.getAttribute("userProfile");
//now invalidate it
currentSession.invalidate();
//get new session and stuff the data back in
HttpSession newSession = request.getSession(true);
newSession.setAttribute("userProfile", userProfile);
</code></pre>
http://stackoverflow.com/questions/1163615/java-library-to-check-whether-a-string-contains-a-number-without-exceptions/1166372#11663720Answer by Brian for Java library to check whether a String contains a number *without* exceptionsBrian2009-07-22T16:05:34Z2009-07-22T16:05:34Z<p>I would avoid re-inventing this method and go with Apache Commons. If your using Spring, Struts or many other commonly used java libraries, they often have Apache commons included. You will want the commons-lang.jar file. Here is the method in <a href="http://commons.apache.org/lang/api-release/org/apache/commons/lang/math/NumberUtils.html#isNumber%28java.lang.String%29" rel="nofollow">NumberUtils</a> you would want:</p>
<pre><code>isNumber[1]
public static boolean isNumber(java.lang.String str)
Checks whether the String a valid Java number.
Valid numbers include hexadecimal marked with the 0x qualifier, scientific notation and numbers marked with a type qualifier (e.g. 123L).
Null and empty String will return false.
Parameters:
str - the String to check
Returns:
true if the string is a correctly formatted number
</code></pre>
http://stackoverflow.com/questions/1161011/how-can-i-receive-windows-filesystem-events-in-java/1161049#11610495Answer by Brian for How can I receive Windows filesystem events in Java?Brian2009-07-21T18:55:12Z2009-07-21T18:55:12Z<p>I think this is one of the key features of Java 7 when it is more available. Example code from Sun's <a href="http://blogs.sun.com/thejavatutorials/entry/watching%5Fa%5Fdirectory%5Ffor%5Fchanges" rel="nofollow">blog on Java 7:</a></p>
<p>import static java.nio.file.StandardWatchEventKind.*;</p>
<pre><code>Path dir = ...;
try {
WatchKey key = dir.register(watcher, ENTRY_CREATE, ENTRY_DELETE, ENTRY_MODIFY);
} catch (IOException x) {
System.err.println(x);
}
</code></pre>
http://stackoverflow.com/questions/1138436/can-i-regenerate-my-own-session-id-in-servlet/1156679#11566790Answer by Brian for Can i regenerate my own session id in servlet?Brian2009-07-21T00:17:19Z2009-07-21T00:17:19Z<p>Invalidate the current session and the get a new session:</p>
<pre><code>//invalidate the current session
request.getSession().invalidate();
/*
get another session and get the ID (getSession()) will create a session if one does not exist
*/
request.getSession().getId();
</code></pre>
http://stackoverflow.com/questions/1144703/what-should-the-penalty-response-for-missing-a-deadline-be/1146424#11464240Answer by Brian for What should the penalty/response for missing a deadline be?Brian2009-07-18T01:34:12Z2009-07-18T01:34:12Z<p>"Who does what by when" is a question that each project team member must provide a professional commitment/response to in any profession. As far as when a deadline is missed use that evidence to improve the estimating process and ask the individual to make a new commitment. this assumes, that their was in fact a commitment made to the previous deadline. A great series on 'Who does what by when' is available at <a href="http://www.manager-tools.com/2009/01/horstmans-law-project-management-part-1" rel="nofollow">manager-tools</a>.</p>
<p>Also, I would recommend that you distinguish between Estimates, Targets and Commitments. And manage the 'gap' or the risk between the estimate <--- gap ---> commitment. <a href="http://rads.stackoverflow.com/amzn/click/0735605351" rel="nofollow">Look at Software Estimation: Demystifying the Black Art.</a></p>
http://stackoverflow.com/questions/1146153/copying-files-from-one-directory-to-another-in-java/1146221#11462210Answer by Brian for Copying files from one directory to another in JavaBrian2009-07-18T00:03:04Z2009-07-18T00:03:04Z<p>The example below from <a href="http://www.java-tips.org/java-se-tips/java.io/how-to-copy-a-directory-from-one-location-to-another-loc.html" rel="nofollow">Java Tips</a> is rather straight forward. I have since switched to Groovy for operations dealing with the file system - much easier and elegant. But here is the Java Tips one I used in the past. It lacks the robust exception handling that is required to make it fool-proof. </p>
<pre><code> public void copyDirectory(File sourceLocation , File targetLocation)
throws IOException {
if (sourceLocation.isDirectory()) {
if (!targetLocation.exists()) {
targetLocation.mkdir();
}
String[] children = sourceLocation.list();
for (int i=0; i<children.length; i++) {
copyDirectory(new File(sourceLocation, children[i]),
new File(targetLocation, children[i]));
}
} else {
InputStream in = new FileInputStream(sourceLocation);
OutputStream out = new FileOutputStream(targetLocation);
// Copy the bits from instream to outstream
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
in.close();
out.close();
}
}
</code></pre>
http://stackoverflow.com/questions/1126416/how-do-i-unit-test-this-pl-sql-procedure-using-utplsql/1129040#11290401Answer by Brian for How do I unit test this PL/SQL procedure? (using utplsql)Brian2009-07-15T02:05:36Z2009-07-15T02:05:36Z<p>A couple of suggestions.</p>
<p>Use SQL%ROWCOUNT:</p>
<pre><code>BEGIN
UPDATE NIGHT_SHIFT
Set SOME_DUMB_FIELD = evening_shift_employees.employee;
v_rows_processed := SQL%ROWCOUNT;
dbms_output.put_line('There were '||v_rows_processed||' rows updated');
END;
</code></pre>
<p>Don't Use When Others (why do you want to lose the stack trace).Just use Exceptions, you will be relying on the caller to check the contents of the ERRBUF.</p>
<pre><code>begin
insert into t values ( 1 );
exception when others then
log_error;
raise;
end;
</code></pre>
<p>log_error implementation looks like:</p>
<pre><code>create or replace procedure log_error
as
pragma autonomous_transaction;
l_whence varchar2(1024);
l_msg varchar2(1020) default sqlerrm;
l_code number default sqlcode;
begin
l_whence := whence;
insert into error_table
( timestamp, whence, msg, code )
values
( sysdate, whence, l_msg, l_code );
commit;
exception
when others then
rollback;
raise;
end;
</code></pre>
<p>Consider not using any pl/sql. on the surface the update appears completely 'doable' without any cursor. Perhaps an updateable inline view:</p>
<pre><code>update (
select e.sal as emp_sal, e.comm as emp_comm,
ns.sal as ns_sal, ns.sal/2 as ns_comm
from employees e, night_shift ns
where e.deptno = ns.deptno
)
set emp_sal = ns_sal, emp_comm = ns_comm
</code></pre>
http://stackoverflow.com/questions/226905/does-the-internet-explorer-web-developer-toolbar-work-with-popups2Does the Internet explorer web developer toolbar work with popups?Brian2008-10-22T18:02:53Z2009-07-10T22:38:20Z
<p>I cannot get the internet explorer web developer tool bar to work with a pop-up, it won't render at the bottom of the pop-up. Any suggestions? </p>
http://stackoverflow.com/questions/1709810/why-is-eclipse-trying-to-copy-my-svn-folders-from-src-to-bin-and-how-can-i-makeComment by Brian on Why is eclipse trying to copy my .svn folders from src to bin, and how can I make it stop?Brian2009-11-10T17:50:07Z2009-11-10T17:50:07ZIs this helpful? <a href="http://stackoverflow.com/questions/225375/in-eclipse-how-can-i-exclude-some-files-maybe-based-on-the-svn-extension-or-fi" rel="nofollow" title="in eclipse how can i exclude some files maybe based on the svn extension or fi">stackoverflow.com/questions/225375/…</a>http://stackoverflow.com/questions/1575923/hibernate-is-rounding-my-doubleComment by Brian on Hibernate is rounding my double ?Brian2009-10-16T01:24:50Z2009-10-16T01:24:50ZYou haven't really given enough details on the hibernate side. The mapping can specify precision and scale. for example:
<property name="amount" precision="12" scale="2"/>http://stackoverflow.com/questions/1352028/java-basics-static-methodComment by Brian on java basics static methodBrian2009-08-29T19:39:35Z2009-08-29T19:39:35ZWhen learning java, one of your first encounters with static concepts is the use of System.out.println(). It is an interesting bit of code, in particular System and System.out; let alone the implementations of println().http://stackoverflow.com/questions/899858/returning-csv-file-from-servlet-using-servletoutputstream-over-https-in-internet/1333953#1333953Comment by Brian on Returning CSV file from Servlet using ServletOutputStream over HTTPS in Internet ExplorerBrian2009-08-26T21:55:30Z2009-08-26T21:55:30ZAgreed & thanks for the follow-up. Another post-processing product "Oracle Web Cache" was adding the headers. I had to work with the server group in charge to prevent Oracle Web Cache from applying those header values.http://stackoverflow.com/questions/1228827/resultset-getblob-exception/1228885#1228885Comment by Brian on ResultSet.getBlob() ExceptionBrian2009-08-05T02:08:31Z2009-08-05T02:08:31ZThe single jar files are ojdbc5.jar (JDK 5) or ojdbc6.jar (JDK 6).http://stackoverflow.com/questions/1128869/how-would-you-code-this-the-so-announcement-barComment by Brian on How would you code this: The SO Announcement barBrian2009-07-15T01:22:03Z2009-07-15T01:22:03ZI would think the more interesting code is not the client side code; but rather the approach to communicating the fact that the 'teacher badge' has been earned.http://stackoverflow.com/questions/134602/just-how-free-is-adobe-flex-exactly/136579#136579Comment by Brian on Just how free is Adobe Flex exactly?Brian2009-07-13T21:36:57Z2009-07-13T21:36:57ZAdobe Flex Builder looks to be in the $200 range.
<a href="http://www.amazon.com/Adobe-38044406-Flex-Builder-3-0/dp/B0014A4G5U/ref=sr_1_1?ie=UTF8&s=software&qid=1247520943&sr=1-1" rel="nofollow">amazon.com/Adobe-38044406-Flex-Builder-3-0/dp/…</a>http://stackoverflow.com/questions/1111707/what-is-the-difference-between-a-hash-join-and-a-merge-join-oracle-rdmbsComment by Brian on What is the difference between a hash join and a merge join (Oracle RDMBS )?Brian2009-07-10T20:21:10Z2009-07-10T20:21:10Z<a href="http://download.oracle.com/docs/cd/B28359_01/server.111/b28274/optimops.htm#i76073" rel="nofollow">download.oracle.com/docs/cd/…</a>http://stackoverflow.com/questions/840966/what-is-an-elegant-way-to-return-a-readable-file-size-of-a-file-stored-in-an-or/841088#841088Comment by Brian on What is an elegant way to return a readable 'file size' of a file stored in an oracle blob column using SQL?Brian2009-07-09T03:21:13Z2009-07-09T03:21:13ZI should have emphasized the 'readable' part. I ended up using a WITH clause to establish my constants and then arbitrarily decided that KB and MB variations would be sufficient for my immediate one report need.http://stackoverflow.com/questions/1017936/how-to-determine-oraclehome-from-pl-sql/1018055#1018055Comment by Brian on How to determine ORACLE_HOME from PL/SQL?Brian2009-07-06T01:57:57Z2009-07-06T01:57:57ZHave you considered using a DIRECTORY?
CREATE OR REPLACE DIRECTORY APP_ORACLE_HOME AS '/u01/oracle/10.1.2';http://stackoverflow.com/questions/1081297/what-is-an-effective-way-to-track-identify-and-report-every-error-message-raiComment by Brian on What is an effective way to track, identify and report every 'error message' raised by your application?Brian2009-07-04T12:38:48Z2009-07-04T12:38:48ZORA-00237 error-code is just an example. One site that tries to list them all of Oracle's error codes is <a href="http://ora-code.com/" rel="nofollow">ora-code.com</a>.
If your business logic was in Java or C# and you had a similar need to identify all possible business logic errors/warnings how would you go about from a technical standpoint. In addition, how do you 'mandate' this in your development process without creating an undue burden on the team? Example problem domains would be software like a loan application, Corporate Tax Preparation application, Determining Eligibility for an entitlement program etc...http://stackoverflow.com/questions/1081234/java-date-insert-into-database/1081260#1081260Comment by Brian on Java Date - Insert into databaseBrian2009-07-04T01:27:42Z2009-07-04T01:27:42ZOh well, code does not format in comments :-).http://stackoverflow.com/questions/1081234/java-date-insert-into-database/1081260#1081260Comment by Brian on Java Date - Insert into databaseBrian2009-07-04T01:26:58Z2009-07-04T01:26:58ZCaution: SimpleDateFormat is not Thread safe. Make a simple wrapper of your own which is Thread safe.
public class ThreadSafeSimpleDateFormat {
private DateFormat df;
public ThreadSafeSimpleDateFormat(String format) {
this.df = new SimpleDateFormat(format);
}
public synchronized String format(Date date) {
return df.format(date);
}
public synchronized Date parse(String string) throws ParseException {
return df.parse(string);
}
}http://stackoverflow.com/questions/1060545/does-oracle-support-server-side-scrollable-cursors-via-jdbcComment by Brian on Does Oracle support Server-Side Scrollable Cursors via JDBC??Brian2009-06-30T14:16:05Z2009-06-30T14:16:05ZI gave an example of getting the 'total rows' in a resultset and the result set itself in the same SQL query in Oracle here:
<a href="http://stackoverflow.com/questions/2840/paging-sql-server-2005-results/11352#11352" rel="nofollow" title="paging sql server 2005 results">stackoverflow.com/questions/2840/…</a>
http://stackoverflow.com/questions/1045460/how-to-use-html-anchors-as-a-table-of-contents-in-email/1045485#1045485Comment by Brian on How to use HTML anchors as a table of contents in email?Brian2009-06-25T18:56:25Z2009-06-25T18:56:25ZThis is not the issue; I did go ahead and put both in, but that does not fix the 'email client' scenario. As far as w3c and anchor tags using id: <a href="http://www.w3.org/TR/REC-html40/struct/links.html#h-12.2.3" rel="nofollow">w3.org/TR/REC-html40/…</a>