| bio | website | |
|---|---|---|
| location | Lakewood, CO | |
| age | ||
| visits | member for | 4 years, 7 months |
| seen | 13 hours ago | |
| stats | profile views | 94 |
- former Active Directory admin
- former Oracle Developer/DBA
- Technologist
- Data Architect
- Economist
|
May 10 |
comment |
Self injection with Spring Agree with nvrs, same-class @Transactional proxying is what led me here. "Use AspectJ instead of CGLib" isn't a useful answer when you have a mature codebase. Using @Resource will probably solve my problem but @Autowired would be preferable as that is our standard. |
|
Jan 8 |
comment |
Setting up PostgreSQL ODBC on Windows also note that C:\Windows\System32\odbcad32.exe manages your 64-bit ODBC drivers and DSNs, and C:\Windows\SysWOW64\odbcad32.exe manages your 32-bit ODBC drivers and DSNs |
|
Nov 2 |
comment |
Spring MVC @PathVariable getting truncated This works, but what is the significance of the colon in the regex? |
|
Oct 10 |
answered | Most efficient method to parse multi-joined records within a Search Result in NetSuite |
|
Sep 6 |
comment |
Random select rows via JPA rand() or random() generate a random value for each row so pre-generating a single random value will not work |
|
Sep 4 |
comment |
Inserting NEW.* from a generic trigger using EXECUTE in PL/pgsql if using table name instead of relid, 'select $1' should be 'select $1.*' |
|
Aug 22 |
awarded | Critic |
|
Aug 22 |
comment |
How can I consume a WSDL (SOAP) web service in Python? @ddaa - SOAP is many things but "simple" is not one of them. |
|
Aug 22 |
comment |
How can I consume a WSDL (SOAP) web service in Python? SOAP by hand? Not an efficient use of anyone's time (or sanity), nor what the question-asker was seeking. |
|
Mar 2 |
comment |
Getting excel application process id Have you ever used QueryTable.Refresh()? Seriously, try it. Create a thread or subprocess, launch excel, load a workbook, start a long-running Refresh(), then terminate your thread/process. Instant zombie excel. |
|
Mar 2 |
comment |
How should I log while using multiprocessing in Python? Unfortunately this approach doesn't work on Windows. From docs.python.org/library/multiprocessing.html 16.6.2.12 "Note that on Windows child processes will only inherit the level of the parent process’s logger – any other customization of the logger will not be inherited." Subprocesses won't inherit the handler, and you can't pass it explicitly because it's not pickleable. |
|
Mar 1 |
comment |
Getting excel application process id Yes, you do. Excel processes started through COM are not child processes of your process, they are children of svchost.exe. If Excel is performing a blocking operation such as QueryTable.Refresh(), and your process exits, excel.exe will not die. If you're doing those refreshes in threads or subprocesses, which you might need to terminate, you're doomed to accumulate zombie excel processes, UNLESS you can track their process id's and kill them. |
|
Feb 29 |
comment |
Getting excel application process id Probably downvoted because it doesn't answer the question! If Excel goes out to lunch, which it often does, releasing all your references to it is not going to kill it. You NEED the process id. |
|
Feb 29 |
comment |
How to get the Process Id by excel object in c# Calling Quit() on the application object often does not work, so this is not a very good answer. There is a perfectly good reason for wanting the process id so as to be able to kill Excel reliably when it goes out to lunch. |
|
Feb 27 |
awarded | Commentator |
|
Feb 27 |
comment |
SMTP through Exchange using Integrated Windows Authentication (NTLM) using Python this code seriously saved my bacon! |
|
Sep 21 |
comment |
Hibernate: hbm2ddl.auto=update in production? "Writing SQL upgrades by hand" doesn't take "ages" if you, y'know, know SQL. Doubly so if you built your data model by hand, with knowledge of how an RDBMS works, instead of letting a library do it for you, poorly. |
|
Sep 20 |
comment |
getting SREG data using Zend_Auth and OpenID Only in that I gave up on using Zend. The janrain OpenID library is a little less user friendly, but it A) supports OpenID 2.0 and B) actually works. |
|
Sep 19 |
awarded | Student |
|
Jul 26 |
comment |
Oracle & Active Directory : A love/hate relationship link to oracle forums is broken |