User JK - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T05:02:45Zhttp://stackoverflow.com/feeds/user/16253http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1739622/is-there-a-size-limit-for-the-sql-text-in-a-peoplesoft-app-engine-sql-step-action0Is there a size limit for the SQL text in a PeopleSoft App Engine SQL Step/Action?JK2009-11-16T01:36:50Z2009-11-16T01:36:50Z
<p>I'm getting the following error: AeSymResolveStatement [775] ... Meta-SQL error at or near position 34338 in statement (108,512). The SQL statement itself is over 40,000 chars long, hence the question.</p>
<p>The DB is oracle. Running on Tools 8.49.24.</p>
http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/85259#85259197Answer by JK for What's your favorite "programmer" cartoon?JK2008-09-17T16:51:29Z2009-04-19T12:30:02Z<p>I knew it was true. <a href="http://xkcd.com/224/" rel="nofollow" title=""We lost the documentation on quantum mechanics. You'll have to decode the regexes yourself." ">XKCD #224</a></p>
<p><img src="http://imgs.xkcd.com/comics/lisp.jpg" width="640" title="We lost the documentation on quantum mechanics. You'll have to decode the regexes yourself." /> </p>
<p>"We lost the documentation on quantum mechanics. You'll have to decode the regexes yourself."</p>
http://stackoverflow.com/questions/289502/did-you-ever-get-an-unexpected-answer-during-interview/518400#5184002Answer by JK for Did you ever get an unexpected answer during interview?JK2009-02-05T23:03:24Z2009-02-05T23:03:24Z<p>Not really an answer, and a long dead question, but anyway... I was once one of several people interviewing a candidate. It wasn't going very well for him, but not a complete disaster either. At one point during the interview, his phone rang.</p>
<p>At this point, I kind of felt bad for him - he was obviously nervous and now had forgotten to turn off his ringer.</p>
<p>What I didn't expect to happen was for him to TAKE THE CALL, speaking for several minutes. In a foreign language. My coworkers and I looked at each other incredulously.</p>
<p>When he was finished on the phone, he simply hung it up and proceeded with the interview as if nothing out of the ordinary had happened.</p>
<p>He didn't get the job.</p>
http://stackoverflow.com/questions/513445/what-application-have-you-integrated-with-developed-on-that-you-would-intention/513518#5135184Answer by JK for What application have you integrated with/developed on - that you would intentionally leave off your resumeJK2009-02-04T21:49:28Z2009-02-05T03:49:06Z<p>Do languages count? If so COBOL. It's insanely boring and (having it on your resume) makes people think you're old.</p>
http://stackoverflow.com/questions/504508/using-sql-to-search-for-a-set-in-a-one-to-many-relationship/504600#5046001Answer by JK for Using SQL to search for a set in a one-to-many relationshipJK2009-02-02T19:45:17Z2009-02-02T19:53:42Z<p>This is an old sql trick (works in Oracle, at least):</p>
<pre><code>SELECT roleid FROM role_permission t1
WHERE NOT EXISTS (
(SELECT permissionid FROM role_permission t2 WHERE t2.roleid = t1.roleid
MINUS
SELECT permissionid FROM role_permission WHERE roleid = 'Admin')
UNION
(SELECT permissionid FROM role_permission t2 WHERE roleid = 'Admin'
MINUS
SELECT permissionid FROM role_permsission t2 WHERE t2.roleid = t1.roleid)
)
</code></pre>
<p>Also not validated. Red wine always sounds good.</p>
http://stackoverflow.com/questions/287781/what-software-have-you-purchased-to-use-at-work-that-your-company-wouldnt-purch/288082#2880821Answer by JK for What software have you purchased to use at work, that your company wouldn't purchase?JK2008-11-13T20:04:11Z2008-11-13T20:04:11Z<p>UltraEdit. Lifetime license was woth every penny - I use it every day.</p>
http://stackoverflow.com/questions/288007/oracle-sql-optimization-sql-query-taking-very-long-time/288073#288073-1Answer by JK for Oracle SQL Optimization: SQL Query taking very long time JK2008-11-13T20:02:49Z2008-11-13T20:02:49Z<p>Get rid of the DISTINCT.</p>
http://stackoverflow.com/questions/231135/whats-the-cobol-bible/287988#2879882Answer by JK for What's the COBOL "Bible"?JK2008-11-13T19:38:57Z2008-11-13T19:38:57Z<p>I was born and raised on Stern and Stern's <em>Structured Cobol Programming</em>, but I don't know of its biblical significance. (it did teach me COBOL, however.)</p>
http://stackoverflow.com/questions/122069/dealing-with-apathy/122092#1220921Answer by JK for Dealing with ApathyJK2008-09-23T16:24:14Z2008-09-23T16:24:14Z<p>You need to move in new directions and be self-motivaed. It's not going to come from outside of you. Find an old PC lying around and install some flavor of linux. Make it do something useful in your spare time.</p>
<p>Or, take a vacation.</p>
http://stackoverflow.com/questions/119707/what-is-the-biggest-drawback-of-your-favorite-database/122072#1220721Answer by JK for What is the biggest drawback of <your favorite database>?JK2008-09-23T16:19:52Z2008-09-23T16:19:52Z<p><strong>Database</strong> Oracle</p>
<p><strong>Defect</strong> Did not handle long datatype well for too long</p>
<p><strong>Description</strong></p>
<p>Oracle only had the long datatype until 9i (I believe) at which point it was deprecated in favor of the LOBs. There is a ton of code out there, however, which still has longs and all of the related restrictions. The biggest of which was that each table could only have one long column and it had to be at the end of the columns. See <a href="http://arjudba.blogspot.com/2008/06/long-datatype-in-oracle.html" rel="nofollow">here</a> for a more exhaustive list of restricitons on the long. </p>
http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/121516#1215165Answer by JK for What is the one programming skill you have always wanted to master but haven't had time?JK2008-09-23T14:50:58Z2008-09-23T14:50:58Z<p>Embarrassingly, really learning regular expressions.</p>
http://stackoverflow.com/questions/116650/curl-equivalent-in-java5cURL equivalent in JAVAJK2008-09-22T18:34:18Z2008-09-22T21:48:47Z
<p>I am tasked with writing an authentication component for an open source JAVA app. We have an in-house authentication widget that uses https. I have some example php code that accesses the widget which uses cURL to handle the transfer. </p>
<p>My question is whether or not there is a port of cURL to JAVA, or better yet, what base package will get me close enough to handle the task? </p>
<p><strong>Update</strong>:</p>
<p>This is in a nutshell, the code I would like to replicate in JAVA:</p>
<pre><code>$cp = curl_init();
$my_url = "https://" . AUTH_SERVER . "/auth/authenticate.asp?pt1=$uname&pt2=$pass&pt4=full";
curl_setopt($cp, CURLOPT_URL, $my_url);
curl_setopt($cp, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($cp);
curl_close($cp);
</code></pre>
<p><a href="http://stackoverflow.com/questions/116650/curl-equivalent-in-java#116725">Heath</a>, I think you're on the right track, I think I'm going to end up using HttpsURLConnection and then picking out what I need from the response.</p>
http://stackoverflow.com/questions/116354/what-fun-things-do-you-do-to-release-stress-at-the-office/116379#1163794Answer by JK for What fun things do you do to release stress at the office?JK2008-09-22T17:52:57Z2008-09-22T17:52:57Z<p>Mercilessly tease the weakest among us.</p>
http://stackoverflow.com/questions/14155/windows-based-text-editors/115788#1157880Answer by JK for Windows-based Text EditorsJK2008-09-22T16:06:56Z2008-09-22T16:06:56Z<p>Column mode in UltraEdit is fantastic.</p>
http://stackoverflow.com/questions/112028/what-was-the-biggest-lesson-you-learned-in-your-career-as-an-it-professional/115761#1157610Answer by JK for What was the biggest lesson you learned in your career as an IT professional?JK2008-09-22T16:03:25Z2008-09-22T16:03:25Z<p>You can never have enough clarification and detail with project requirements.</p>
http://stackoverflow.com/questions/102265/are-peoplesoft-integration-broker-asynchronous-messages-fired-serially-on-the-rec/115641#1156410Answer by JK for Are PeopleSoft Integration Broker asynchronous messages fired serially on the receiving end?JK2008-09-22T15:43:29Z2008-09-22T15:43:29Z<p>Any luck with Global Support?</p>
http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/84826#84826387Answer by JK for What's your favorite "programmer" cartoon?JK2008-09-17T16:01:36Z2008-09-22T15:30:19Z<p><a href="http://xkcd.com/208/" rel="nofollow" title=""Wait, forgot to escape a space. Wheeeeee[taptaptap]eeeeee.""><img src="http://imgs.xkcd.com/comics/regular_expressions.png" alt="alt text" title=""Wait, forgot to escape a space. Wheeeeee[taptaptap]eeeeee."" /></a></p>
http://stackoverflow.com/questions/32230/tracking-down-where-disk-space-has-gone-on-linux/86217#862170Answer by JK for Tracking down where disk space has gone on Linux?JK2008-09-17T18:37:00Z2008-09-17T18:37:00Z<p>I can't take credit for this, but I found it just yesterday:</p>
<pre><code>$ find <path> -size +10000k -print0 | xargs -0 ls -l
</code></pre>
<p><a href="http://linuxandfriends.com/2008/09/10/how-to-find-large-files-in-linux-using-command-line/" rel="nofollow">link text</a></p>
http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/84729#8472929Answer by JK for What's Your Motto As A Developer/Programmer?JK2008-09-17T15:49:39Z2008-09-17T15:49:39Z<p>“A designer knows he has achieved perfection not when there is nothing left to add, but when there is nothing left to take away.”
—<em>Antoine De Saint-Exupery</em></p>
http://stackoverflow.com/questions/262657/the-coolest-server-names/531417#531417Comment by JK on The Coolest Server NamesJK2009-02-16T17:50:48Z2009-02-16T17:50:48ZRec for Cleveland reference.http://stackoverflow.com/questions/504508/using-sql-to-search-for-a-set-in-a-one-to-many-relationship/504600#504600Comment by JK on Using SQL to search for a set in a one-to-many relationshipJK2009-02-02T20:19:01Z2009-02-02T20:19:01ZThanks. I like Mehrdad's solution as well. The advantage to this is that you don't need to know the number of permissions you are trying to match before hand, only the roleid that you are trying to match. The downsode is that it's fairly opaque.http://stackoverflow.com/questions/288007/oracle-sql-optimization-sql-query-taking-very-long-time/288073#288073Comment by JK on Oracle SQL Optimization: SQL Query taking very long time JK2008-11-14T18:23:28Z2008-11-14T18:23:28ZSee @jlrolin response above.http://stackoverflow.com/questions/102265/are-peoplesoft-integration-broker-asynchronous-messages-fired-serially-on-the-rec/115641#115641Comment by JK on Are PeopleSoft Integration Broker asynchronous messages fired serially on the receiving end?JK2008-09-22T18:55:48Z2008-09-22T18:55:48ZBeen there. Do you know if the financials group or the tools group looked at it?
I'll ask around here, maybe try to get some other folks to join SO.http://stackoverflow.com/questions/102265/are-peoplesoft-integration-broker-asynchronous-messages-fired-serially-on-the-recComment by JK on Are PeopleSoft Integration Broker asynchronous messages fired serially on the receiving end?JK2008-09-20T15:18:25Z2008-09-20T15:18:25ZI'm assuming you opened a case with GSC?http://stackoverflow.com/questions/84556/whats-your-favorite-programmer-cartoon/85259#85259Comment by JK on What's your favorite "programmer" cartoon?JK2008-09-17T16:56:27Z2008-09-17T16:56:27Z"We lost the documentation on quantum mechanics. You'll have to decode the regexes yourself."