User steevc - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T19:28:27Z http://stackoverflow.com/feeds/user/1895 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/15871/getting-developers-to-use-a-wiki 11 Getting developers to use a wiki steevc 2008-08-19T07:57:20Z 2009-10-27T04:47:47Z <p>I work on a complex application where different teams work on their own modules with a degree of overlap. A while back we got a Mediawiki instance set up, partly at my prompting. I have a hard job getting people to actually use it, let alone contribute.</p> <p>I can see a lot of benefit in sharing information. It may at least reduce the times we reinvent the wheel.</p> <p>The wiki is not very structured, but I'm not sure that is a problem as long as you can search for what you need.</p> <p>Any hints?</p> http://stackoverflow.com/questions/1525723/killing-an-oracle-job-10g-specific 1 Killing an Oracle job. 10g specific steevc 2009-10-06T13:51:32Z 2009-10-08T07:17:55Z <p>We're using a job scheduling system that runs on top of DBMS_JOB. It uses a master job to create one-time jobs. We deploy the same set of jobs to all our clients, but can specify which jobs should only run at certain clients.</p> <p>We get occasional problems with a process run by a job hanging. The main cause of this is UTL_TCP not timing out when it does get an expected response. I want to be able to kill those jobs so that they can run again.</p> <p>I'm looking at creating a new job that kill any of these one-time jobs that have been running for longer than a certain time.</p> <p><strong>We're stuck with Oracle 10g for a while yet, so I'm limited to what that can do.</strong></p> <p>There's an article that seems to cover most of this at</p> <p><a href="http://it.toolbox.com/blogs/database-solutions/killing-the-oracle-dbms_job-6498" rel="nofollow">http://it.toolbox.com/blogs/database-solutions/killing-the-oracle-dbms_job-6498</a></p> <p>I have a feeling that this is not going to cover all eventualities, including:</p> <ol> <li>We run can jobs as several different users and a user can only break/remove jobs they created. I believe that I may be able to use DBMS_IJOB to get around that, but I need to get the DBA to let me execute it.</li> <li>We have Oracle RAC systems. I understand 10g limits ALTER SYSTEM KILL SESSION to killing sessions on the current instance. I could arrange for all jobs to run on the same instance, but I've not tried that yet.</li> </ol> <p>Anything else I should consider? Stack Overflow needs a definitive answer on this.</p> http://stackoverflow.com/questions/790744/recommended-key-size-and-type-for-gnupg/1398958#1398958 0 Answer by steevc for Recommended key size and type for GnuPG? steevc 2009-09-09T10:55:39Z 2009-09-09T10:55:39Z <p>GPG can only use RSA for signing, not encryption. The default is DSA/Elgamal 1024/2048. The Elgamal default key length used to be 1024, but someone must have decided that was not secure enough. People on the GPG mailing list say that most people shouldn't need more than 2048.</p> <p>I'm less clear on the various signing algorithms. I know there are issues with SHA-1, but how does this relate to DSA/RSA?</p> <p>I've had the same key for years that uses the above default values. I don't use it much, but am wondering whether generating a new one is justified.</p> http://stackoverflow.com/questions/37586/consuming-web-services-from-oracle-pl-sql 5 Consuming web services from Oracle PL/SQL steevc 2008-09-01T07:54:44Z 2009-03-14T20:51:48Z <p>Our application is interfacing with a lot of web services these days. We have our own package that someone wrote a few years back using UTL_HTTP and it generally works, but needs some hard-coding of the SOAP envelope to work with certain systems. I would like to make it more generic, but lack experience to know how many scenarios I would have to deal with. The variations are in what namespaces need to be declared and the format of the elements. We have to handle both simple calls with a few parameters and those that pass a large amount of data in an encoded string.</p> <p>I know that 10g has UTL_DBWS, but there are not a huge number of use-cases on-line. Is it stable and flexible enough for general use? <a href="http://stanford.edu/dept/itss/docs/oracle/10g/java.101/b12021/callouts.htm" rel="nofollow">Documentation</a></p> http://stackoverflow.com/questions/537723/documentation-of-code-changes-and-source-control-system/629690#629690 0 Answer by steevc for documentation of code changes and source control system steevc 2009-03-10T11:07:51Z 2009-03-10T11:07:51Z <p>My problem with diff is that it tells you what changed, but not why. If a commit includes a lot of files then the commit comment may not detail why each file changed.</p> <p>My experience of version control started with our Oracle PL/SQL code using SourceSafe. We had a change log in each file listing the issue number, developer and comment. Without that it was tricky to see when code had been added as you would have to search through the history to see when it changed.</p> <p>Now we also have C# code with SVN. That provides much easier checking of history, including 'blame' view to see who added blocks of code. You can also see what other files were committed at the same time to see the context.</p> <p>I'm still adapting to the SVN world. Perhaps it can give me adequate views to make change log in the files redundant, but I like to see comments in code that tell me why it as it is. </p> http://stackoverflow.com/questions/19709/if-email-is-not-the-answer-then-what-is 4 If email is not the answer then what is? steevc 2008-08-21T12:22:45Z 2008-11-26T21:08:39Z <p>In my office email is one of the primary means of communication. Developers are spread around the world, so you can't always meet up and time differences mean that phone/VOIP is not always practical.</p> <p>I find email hard to manage. You end up with hundreds/thousands of emails in various threads. You get CC'ed on stuff that is of marginal interest to you. Some emails have a useful lifespan on minutes or hours, but you still have to manually delete them.</p> <p>I'm stuck with Outlook, but gain some benefit from:</p> <ol> <li>Arrange by Conversation. So I can easily see if someone has already replied. I often just delete the earlier messages if I can assume that their content will be duplicated in the later ones. One problem is that my own replies will be in my Sent Items</li> <li>Google Desktop Search. Infinitely quicker than Outlook's</li> </ol> <p>So what are the alternatives for office communication?</p> <ol> <li>IM - Great for ephemeral info and you can tell if the recipient is around. But not generally archived.</li> <li>Twitter/Identi.ca microblogging - Could be used to track history of group communications if you can work around confidentiality and message length</li> <li>Wiki - I like wikis, but getting people to use them can be hard and no good for instant response. A better place for reference information than directly in emails</li> </ol> <p>Something like Gmail/Gtalk with its searchable archive would be an improvement on what we have, but I don't know how this could integrate with 'standards' like Outlook.</p> <p>This has been a stream of consciousness question inspired by [Zen Habits]<a href="http://zenhabits.net/2008/08/12-new-rules-of-working-you-should-embrace-today/" rel="nofollow">http://zenhabits.net/2008/08/12-new-rules-of-working-you-should-embrace-today/</a>.</p> http://stackoverflow.com/questions/226016/importing-extended-ascii-into-oracle 0 Importing extended ASCII into Oracle steevc 2008-10-22T14:36:29Z 2008-10-22T16:18:49Z <p>I have a procedure that imports a binary file containing some strings. The strings can contain extended ASCII, e.g. CHR(224), 'à'. The procedure is taking a RAW and converting the BCD bytes into characters in a string one by one.</p> <p>The problem is that the extended ASCII characters are getting lost. I suspect this is due to their values meaning something else in UTF8.</p> <p>I think what I need is a function that takes an ASCII character index and returns the appropriate UTF8 character.</p> <p>Update: If I happen to know the equivalent Oracle character set for the incoming text can I then convert the raw bytes to UTF8? The source text will always be single byte.</p> http://stackoverflow.com/questions/82047/validating-xml-files-against-schema-in-oracle-pl-sql 0 Validating XML files against schema in Oracle PL/SQL steevc 2008-09-17T11:08:05Z 2008-10-07T14:43:02Z <p>I have a requirement to validate an incoming file against an XSD. Both will be on the server file system.</p> <p>I've looked at dbms_xmlschema, but have had issues getting it to work.</p> <p>Could it be easier to do it with some Java? What's the simplest class I could put in the database?</p> <p>Here's a simple example:</p> <pre><code>DECLARE v_schema_url VARCHAR2(200) := 'http://www.xxx.com/schema.xsd'; v_blob bLOB; v_clob CLOB; v_xml XMLTYPE; BEGIN begin dbms_xmlschema.deleteschema(v_schema_url); exception when others then null; end; dbms_xmlschema.registerSchema(schemaURL =&gt; v_schema_url, schemaDoc =&gt; ' &lt;xs:schema targetNamespace="http://www.xxx.com" xmlns:ns="http://www.xxx.com" xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified" version="3.0"&gt; &lt;xs:element name="something" type="xs:string"/&gt; &lt;/xs:schema&gt;', local =&gt; TRUE); v_xml := XMLTYPE.createxml('&lt;something xmlns="http://www.xx.com" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.xxx.com/schema.xsd"&gt; data &lt;/something&gt;'); IF v_xml.isschemavalid(v_schema_url) = 1 THEN dbms_output.put_line('valid'); ELSE dbms_output.put_line('not valid'); END IF; END; </code></pre> <p>This gets an error:</p> <p>ORA-01031: insufficient privileges ORA-06512: at "XDB.DBMS_XDBZ0", line 275 ORA-06512: at "XDB.DBMS_XDBZ", line 7 ORA-06512: at line 1 ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 3 ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 14 ORA-06512: at line 12</p> http://stackoverflow.com/questions/73751/what-is-the-dual-table-in-oracle/73899#73899 0 Answer by steevc for What is the dual table in Oracle? steevc 2008-09-16T15:57:44Z 2008-09-16T15:57:44Z <p>DUAL is necessary in PL/SQL development for using functions that are only available in SQL</p> <p>e.g.</p> <pre><code>DECLARE x XMLTYPE; BEGIN SELECT xmlelement("hhh", 'stuff') INTO x FROM dual; END; </code></pre> http://stackoverflow.com/questions/42805/hello-world-what-did-your-first-ever-computer-program-do/43398#43398 0 Answer by steevc for Hello world: what did your first ever computer program do ? steevc 2008-09-04T09:24:33Z 2008-09-04T09:24:33Z <p>Well it would have been about 30 years ago when I went to upper school and there was an optional lunchtime computer class run by a maths teacher. We had a 'portable' terminal with acoustic coupler that connected to the local college mini. I remember that a fair few turned up at first, but after a few weeks it was just two of us hacking away on the terminal almost every day. We were writing in Basic and producing lots of thermal printout.</p> <p>I can't remember what the first program would have been, but probably something like Hello World, followed by some simple calculations. ASCII art also featured strongly.</p> <p>Ah, nostalgia.</p> http://stackoverflow.com/questions/308/is-there-a-version-control-system-for-database-structure-changes/37567#37567 1 Answer by steevc for Is there a version control system for database structure changes? steevc 2008-09-01T07:29:33Z 2008-09-01T07:29:33Z <p>In the absence of a VCS for table changes I've been logging them in a wiki. At least then I can see when and why it was changed. It's far from perfect as not everyone is doing it and we have multiple product versions in use, but better than nothing.</p> http://stackoverflow.com/questions/7630/how-do-i-convince-my-boss-to-buy-nice-big-monitors-for-the-developers/20434#20434 0 Answer by steevc for How do I convince my boss to buy nice big monitors for the developers? steevc 2008-08-21T16:23:01Z 2008-08-21T16:23:01Z <p>I was first in my office to get dual screens. At the time that involved scrounging a PCI graphics card from IT and finding a spare CRT. I found that a major improvement over a single screen as you can always see at least two apps. I generally run everything full screen. Having to alt-tab every time I want to read a spec or email would slow me down a lot.</p> <p>Soon after that all our QA staff were given a second screen. Still CRT at that point. Later we were all switched to 19" LCDs.</p> <p>At some point I got a laptop that could run an additional screen and have been working with that ever since. We still have most of our developers using a single screen. Perhaps they just don't see a benefit.</p> <p>The next step would be a bigger screen. When using something like Visual Studio you need maximum screen space to see a decent amount of code plus all the extra windows.</p> <p>I work from home sometimes, but am stuck with an old 19" CRT. I don't have room for two screens, but could probably squeeze in a fairly big LCD. I'll go for something like a 22" when I have the cash. Then at least I could view a couple of apps in reasonably big windows.</p> <p>What resolution do people use on a 30"?</p> http://stackoverflow.com/questions/19709/if-email-is-not-the-answer-then-what-is/20036#20036 2 Answer by steevc for If email is not the answer then what is? steevc 2008-08-21T14:13:32Z 2008-08-21T14:13:32Z <p>I've just realised what the answer is. To have our own Stack Overflow!</p> <p>One issue with most forums is that they are too linear and you cannot see where the important replies are. The SO rating system resolves that.</p> <p>When can we expect to see a shrinkwrapped Stack Overflow on the shelves?</p> http://stackoverflow.com/questions/19709/if-email-is-not-the-answer-then-what-is/19745#19745 0 Answer by steevc for If email is not the answer then what is? steevc 2008-08-21T12:37:19Z 2008-08-21T12:37:19Z <p>@mercutio I had thought about IRC. Having chatrooms for various development topics might 'enhance the collective synergy'. It would depend on out IT to set it up and then need to educate people to use it.</p> <p>Another option is to have a forum. One was set up a few years back, but has been very little used.</p> <p>I feel that a lot of colleagues are stuck in the email/Word mindset. We have at least standardised on Skype for IM, but with no public archive of useful stuff.</p> <p>I have no experience of other 'groupware'.</p> <p>@Chris I like the idea of Google Docs for collaborative writing, but Word is our standard. At least some people use the annotation options. Documents are still written to be printed. That seems archaic in the web age.</p> http://stackoverflow.com/questions/10961/have-you-used-a-wiki-in-your-project-or-group/16440#16440 0 Answer by steevc for Have you used a wiki in your project or group? steevc 2008-08-19T15:51:18Z 2008-08-19T15:51:18Z <p>I've not done much with Sharepoint, but helped instigate a Mediawiki instance at work. Like others here I seem to do 90% of the editing despite evangelising it at every opportunity. I get fed up with having to reverse engineer code to find out things that should be documented. The ability to cross-reference everything is invaluable.</p> <p>I've written some scripts in Oracle PL/SQL that generate pages for our tables and some types of data to automate the documentation.</p> <p>I just discovered the Wikied Greasemonkey script that adds some great editing features. One of the most important is to turn Word text into Mediawiki format. That will save me a lot of time.</p> http://stackoverflow.com/questions/15871/getting-developers-to-use-a-wiki/15885#15885 1 Answer by steevc for Getting developers to use a wiki steevc 2008-08-19T08:11:36Z 2008-08-19T08:11:36Z <p>I have done some selling and even run some training sessions. I think some people are turned off by the lack of WYSIWYG editing and ability to paste formatted text from Word or Outlook. I know there are some tools to work around these, but they are still barriers.</p> <p>There are some areas where the wiki is being used to log certain areas, but people who update those are not doing anything else with it.</p> <p>I will use the wiki to document my specialised area regardless as it acts as a convenient brain extension. When starting a new development I use it as a notepad for ideas that I can expand on as it progresses.</p> <p>It would help if management would give it some vocal support, even if it is not made mandatory.</p> http://stackoverflow.com/questions/6327/what-are-your-programming-exercises/15861#15861 0 Answer by steevc for What are your programming exercises? steevc 2008-08-19T07:49:39Z 2008-08-19T07:49:39Z <p>My standard exercise when learning a new language has been to write a Mandelbrot set app. Done it in BBC Basic, Turbo Pascal and, recently, C# among others. The TP version was the most optimised with all sorts of approximations going on, but then it was running on a 12MHz 286 or something.</p> <p>I worked through some of the Python Challenge a few years back. That was fun.</p> http://stackoverflow.com/questions/1525723/killing-an-oracle-job-10g-specific/1532259#1532259 Comment by steevc on Killing an Oracle job. 10g specific steevc 2009-10-07T15:42:40Z 2009-10-07T15:42:40Z The Oracle documents on UTL_TCP say that timeout is not implemented on write operations. Still not there in 11g. If they fixed that then I might not need to kill jobs. http://stackoverflow.com/questions/1525723/killing-an-oracle-job-10g-specific Comment by steevc on Killing an Oracle job. 10g specific steevc 2009-10-07T15:42:07Z 2009-10-07T15:42:07Z I'm getting help from our DBAs on how I should do this, but it's something we want to run on client systems to automate killing run-away jobs so that our DBA doesn't have to go in there and fix it each time. It's a pretty rare occurrence anyway. http://stackoverflow.com/questions/15871/getting-developers-to-use-a-wiki/577723#577723 Comment by steevc on Getting developers to use a wiki steevc 2009-03-10T10:12:59Z 2009-03-10T10:12:59Z I do a lot of those things already. Our QA and implementation departments are starting to use the wiki, so there's hope. I'd like to see more developers documenting modules they work on. I'll keep doing that if only for my own benefit. http://stackoverflow.com/questions/226016/importing-extended-ascii-into-oracle/226084#226084 Comment by steevc on Importing extended ASCII into Oracle steevc 2008-10-22T16:19:42Z 2008-10-22T16:19:42Z So if I do know the encoding, then how do I convert it? http://stackoverflow.com/questions/59294/in-sql-whats-the-difference-between-countcolumn-and-count/59369#59369 Comment by steevc on In SQL, what's the difference between count(column) and count(*)? steevc 2008-09-12T16:06:48Z 2008-09-12T16:06:48Z Should the group by column and the one being counted be different? otherwise you would get nothing from this query