User El Cristoir - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T19:44:59Z http://stackoverflow.com/feeds/user/5827 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1911149/passing-arbitrary-number-of-parameters-to-an-oracle-function-in-perl 3 Passing arbitrary number of parameters to an Oracle function in perl El Cristoir 2009-12-15T23:13:50Z 2009-12-16T00:21:19Z <p>Take an existing piece of perl code which calls an Oracle function with two params;</p> <pre><code>my $func = $dbh-&gt;prepare (q { BEGIN :result := myStoredProc(value1 =&gt; :Param1, value2 =&gt; :Param2); END; } ); $func-&gt;bind_param(":Param1", $opt_a); $func-&gt;bind_param(":Param2", $opt_b); $func-&gt;bind_param_inout(":result", \$result, 20); $func-&gt;execute(); </code></pre> <p>If I now want to extend this functionality to allow any stored procedure to be called (with the name being passed as a parameter to the perl script I suppose).</p> <p>Is it then possible to pass an arbitrary number of parameters to the function call?</p> <p>Perl is by no means my strong point, so I've no idea how difficult a problem this is.</p> <p>The part that I think presents the problem here is the actual SQL;</p> <pre><code>BEGIN :result := myStoredProc(value1 =&gt; :Param1, value2 =&gt; :Param2); END; </code></pre> <p>I'm not really sure how this code could be adapted to take any number of params.</p> <p>If anyone has any experience with this, I'd really appreciate any help you could give.</p> <p>Thanks</p> http://stackoverflow.com/questions/197097/oracle-10g-utlmail-package 1 Oracle 10g - UTL_MAIL package El Cristoir 2008-10-13T09:31:37Z 2009-11-13T10:31:45Z <p>Hi everyone,</p> <p>I'm having a bit of trouble with the UTL_MAIL package in Oracle 10g, and was wondering if anyone had any solutions?</p> <p>I connect to my DB as SYSMAN and load the following two scripts;</p> <p><strong>@C:\oracle\product\10.2.0\db_1\rdbms\admin\utlmail.sql</strong></p> <p><strong>@C:\oracle\product\10.2.0\db_1\rdbms\admin\prvtmail.plb</strong></p> <p>I set up the SMTP server;</p> <p><strong>ALTER SYSTEM SET smtp_out_server='mymailserver.fake:25' SCOPE=BOTH;</strong></p> <p>I grant the user the required permission;</p> <p><strong>GRANT execute ON utl_mail TO MYUSER;</strong></p> <p>But then if I connect to the "MYTABLESPACE" (where MYUSER exists), I get the following error if I make reference to UTL_MAIL.SEND;</p> <p><strong>PLS-00201: identifier 'UTL_MAIL.SEND' must be declared</strong></p> <p>If I prefix it with SYSMAN though (SYSMAN.UTL_MAIL.SEND), it works, but I don't want to do this as this procedure that contains this call has no knowledge of the tablespace which installed the scripts.</p> <p>Is there a way to install these scripts so that they are accessible universally, and do not require the SYSMAN prefix to execute?</p> <p>Cheers,</p> <p>Chris</p> http://stackoverflow.com/questions/1716667/webclient-problem-with-url-which-ends-with-a-period 1 WebClient problem with URL which ends with a period El Cristoir 2009-11-11T17:12:43Z 2009-11-11T19:42:35Z <p>I'm running the following code;</p> <pre><code>using (WebClient wc = new WebClient()) { string page = wc.DownloadString(URL); ... } </code></pre> <p>To access the URL of a share price website, <a href="http://www.shareprice.co.uk" rel="nofollow">http://www.shareprice.co.uk</a></p> <p>If you append a company's symbol name onto the end of the URL, then a page is returned which I parse to get the latest price info etc.</p> <p>e.g.</p> <p><a href="http://www.shareprice.co.uk/VOD" rel="nofollow">http://www.shareprice.co.uk/VOD</a></p> <p><a href="http://www.shareprice.co.uk/TW" rel="nofollow">http://www.shareprice.co.uk/TW</a>.</p> <p>Now, my problem is that some symbols end in periods, as in the second example there. For some unknown reason, the code above has a problem retrieving these sorts of URLs.</p> <p>There is no run-time error, but a page is returned back which reports "Symbol could not be found" from the website itself, indicating that something is happening to the period on the end of the URL in between the call to DownloadString and the actual HTTP request.</p> <p>Does anyone have any idea what might be causing this, and how to fix it?</p> <p>Thanks</p> http://stackoverflow.com/questions/1422664/deploying-files-to-remote-machines 1 Deploying files to remote machines El Cristoir 2009-09-14T16:40:34Z 2009-09-14T17:11:30Z <p>I need to deploy a set of configuration files to a hundred or more Windows hosts. </p> <p>I have the IP addresses, the user name and password, and the location on the remote machines into which the files should be copied - and was wondering if there was anything in the .NET framework that would let me utilise all that info to move these files?</p> http://stackoverflow.com/questions/177752/continue-keyword-in-oracle-10g-pl-sql 2 'CONTINUE' keyword in Oracle 10g PL/SQL El Cristoir 2008-10-07T09:28:43Z 2009-09-04T16:37:36Z <p>Hi everyone,</p> <p>I'm migrating a TSQL stored procedure to PL/SQL and have encountered a problem - the lack of a CONTINUE keyword in Oracle 10g.</p> <p>I've read that Oracle 11g has this as a new feature, but upgrading is not an option unfortunately.</p> <p>Is there any alternative to CONTINUE in 10g? I don't believe it's practical to restructure the logic of the SP as a work-around, because I have an outer loop, an IF, then a nested IF, then the CONTINUE at the end of a statement block within that IF.</p> <p>Any help would be greatly appreciated, cheers.</p> http://stackoverflow.com/questions/304960/detecting-if-an-oracle-database-is-installed 2 Detecting if an Oracle Database is Installed El Cristoir 2008-11-20T11:01:46Z 2009-08-29T10:11:20Z <p>Hi all,</p> <p>I was wondering if there was a way to tell if an instance of Oracle on a system has a database installed or not?</p> <p>This is for an installation script, and I need to verify that there is an actual database in place before proceeding with the loading of my own tablespace onto that database. Has anyone tackled this problem before?</p> <p>Cheers</p> http://stackoverflow.com/questions/768799/checking-a-device-driver-in-windows-server-2003-with-snmp 0 Checking a Device Driver in Windows Server 2003 with SNMP El Cristoir 2009-04-20T15:32:34Z 2009-04-26T06:12:57Z <p>Hi all,</p> <p>I'm interested in checking the status of a video card on a remote machine running Windows Server 2003 and was wondering if this was possible to do via SNMP?</p> <p>In particular, I was wondering if the SNMP services expose whether or not a particular device driver is loaded?</p> <p>Cheers</p> http://stackoverflow.com/questions/781293/parsing-large-text-files-in-real-time-java 1 Parsing Large Text Files in Real-time (Java) El Cristoir 2009-04-23T11:23:26Z 2009-04-23T14:26:20Z <p>Hi all,</p> <p>I'm interested in parsing a fairly large text file in Java (1.6.x) and was wondering what approach(es) would be considered best practice?</p> <p>The file will probably be about 1Mb in size, and will consist of thousands of entries along the lines of;</p> <pre><code>Entry { property1=value1 property2=value2 ... } </code></pre> <p>etc.</p> <p>My first instinct is to use regular expressions, but I have no prior experience of using Java in a production environment, and so am unsure how powerful the java.util.regex classes are.</p> <p>To clarify a bit, my application is going to be a web app (JSP) which parses the file in question and displays the various values it retrieves. There is only ever the one file which gets parsed (it resides in a 3rd party directory on the host).</p> <p>The app will have a fairly low usage (maybe only a handful of users using it a couple of times a day), but it is vital that when they do use it, the information is retrieved as quickly as possible.</p> <p>Also, are there any precautions to take around loading the file into memory every time it is parsed?</p> <p>Can anyone recommend an approach to take here?</p> <p>Thanks</p> http://stackoverflow.com/questions/771868/problem-compiling-platform-sdk-program 1 Problem compiling Platform SDK program El Cristoir 2009-04-21T09:51:06Z 2009-04-21T09:56:48Z <p>Hi all,</p> <p>I'm trying to compile the example from here;</p> <p><a href="http://msdn.microsoft.com/en-us/library/ms682619" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms682619</a>(VS.85).aspx</p> <p>I've installed the Platform SDK, but I'm getting these errors;</p> <pre><code>Error 1 error LNK2019: unresolved external symbol _GetDeviceDriverBaseNameW@12 referenced in function _main DriverChecker.obj DriverChecker Error 2 error LNK2019: unresolved external symbol _EnumDeviceDrivers@12 referenced in function _main DriverChecker.obj DriverChecker Error 3 fatal error LNK1120: 2 unresolved externals C:\Files\Projects\VS2008\DriverChecker\Debug\DriverChecker.exe DriverChecker </code></pre> <p>Anyone any idea how to get this compiling correctly?</p> http://stackoverflow.com/questions/767783/how-can-i-check-if-a-windows-device-driver-is-loaded-using-perl 1 How can I check if a Windows device driver is loaded using Perl? El Cristoir 2009-04-20T10:54:55Z 2009-04-20T17:34:47Z <p>I was wondering how I could check if a device driver is loaded using Perl? The operating system is Windows Server 2003, and I'm interested in seeing if the driver for a particular video card is loaded correctly or not.</p> http://stackoverflow.com/questions/768792/checking-a-device-driver-in-windows-server-2003-with-snmp 0 Checking a Device Driver in Windows Server 2003 with SNMP El Cristoir 2009-04-20T15:31:30Z 2009-04-20T15:38:43Z <p>Hi all,</p> <p>I'm interested in checking the status of a video card on a remote machine running Windows Server 2003 and was wondering if this was possible to do via SNMP?</p> <p>Cheers</p> http://stackoverflow.com/questions/751100/checking-if-a-particular-device-driver-is-loaded 0 Checking if a particular device driver is loaded El Cristoir 2009-04-15T10:39:52Z 2009-04-15T10:44:30Z <p>I'm trying to work out if I can check if a particular video card device driver is loaded in Windows Server 2003 using C++. Can anyone give me pointers on how I might achieve this?</p> <p>Thanks</p> http://stackoverflow.com/questions/629501/how-to-enlarge-image-to-normal-size-in-asp-net-2-0/629515#629515 0 Answer by El Cristoir for How to enlarge image to normal size in ASP.NET 2.0 El Cristoir 2009-03-10T10:01:47Z 2009-03-10T10:01:47Z <p>Check out this example of a modal popup;</p> <p><a href="http://www.asp.net/ajax/ajaxcontroltoolkit/samples/modalpopup/modalpopup.aspx" rel="nofollow">http://www.asp.net/ajax/ajaxcontroltoolkit/samples/modalpopup/modalpopup.aspx</a></p> http://stackoverflow.com/questions/610169/setting-a-property-on-a-control-before-createchildcontrols-is-called 0 Setting a Property on a Control before CreateChildControls is called El Cristoir 2009-03-04T11:30:19Z 2009-03-05T14:16:28Z <p>I'm trying to set a property on a custom web control before the control's CreateChildControls method is called. The reason being, a lot of logic is performed in there that depends on the value of the property in question. I can set the property directly with an explicit value in HTML and it is picked up in time, but that's no use to me because it needs to be based on a server-side variable.</p> <p>The tricky bit is, that the EnsureChildControls method is being called from the getter of a "CONTENTS" property of the control which corresponds to tags within the ASPX file. e.g.;</p> <pre><code>&lt;myControl&gt; &lt;content&gt; ... &lt;/content&gt; &lt;/myControl&gt; </code></pre> <p>As far as I know, this in turn triggers the overridden CreateChildControls method, and the logic is executed without the correct value for the property I'm trying to set.</p> <p>What I'm trying to work out is, where in the ASP.NET life-cycle of my page can I set my property so that it is set before .NET accesses the getter of the "CONTENT" property of of my control?</p> <p>I've tried OnPreInit on the parent page, but that still is being hit AFTER CreateChildControls on the control. I also don't want to alter the control itself, because it's a generic control and I don't want to special case it for this particular case.</p> <p>Anyone got any ideas where I can set my property value so it's picked up in the order I'm trying to achieve?</p> http://stackoverflow.com/questions/606984/setting-a-checkbox-by-using-ischecked-expression 1 Setting a checkbox by using <%# isChecked %> expression El Cristoir 2009-03-03T16:02:06Z 2009-03-03T17:15:11Z <p>Here is a simplified example of what I am trying to achieve;</p> <pre><code>&lt;asp:CheckBox runat="server" Checked="&lt;%# this.isChecked %&gt;" id="myCheckBox" /&gt; </code></pre> <p>Then in my code behind;</p> <pre><code>public partial class _Default : System.Web.UI.Page { bool _isChecked = true; public string isChecked { get { return _isChecked.ToString(); } } protected void Page_Load(object sender, EventArgs e) { } } </code></pre> <p>I am aware that, in this case, I can simply use myCheckBox.Checked = true, but I'm just using this example for illustration purposes. The real control is a custom one, but I'm not having any luck getting this approach to work. It just seems to ignore the value I'm supplying.</p> <p>Is it valid to use &lt;%# this.isChecked %> in this manner?</p> <p><strong>EDIT:</strong></p> <p>Sorry, I wrote this in a hurry and realise that it's not really clear that I intended "checkbox" to just be an example. I'm just trying to get a server-side bool into any particular attribute of the ASP control, not necessarily the "checked" attribute of the checkbox control.</p> <p><strong>EDIT 2:</strong> Updated my example to use string property rather than boolean field, but it is reporting the following error in my ASPX file now;</p> <blockquote> <p>Cannot convert type 'string' to 'bool'</p> </blockquote> http://stackoverflow.com/questions/602836/select-distinct-in-dataviews-rowfilter 0 SELECT DISTINCT in DataView's RowFilter El Cristoir 2009-03-02T15:53:28Z 2009-03-02T16:30:57Z <p>I'm trying to narrow down the rows that are in my DataView based on a relation with another table, and the RowFilter I'm using is as follows;</p> <pre><code>dv = new DataView(myDS.myTable, "id IN (SELECT DISTINCT parentID FROM myOtherTable)", "name asc", DataViewRowState.CurrentRows); </code></pre> <p>"myTable" and "myOther" table are related via myTable.ID and myOtherTable.parentID, and so the idea is that the DataView should only contain rows from "myTable" which have corresponding child rows in "myOtherTable".</p> <p>Unfortunately, I'm getting this error;</p> <blockquote> <p>Syntax error: Missing operand after 'DISTINCT' operator.</p> </blockquote> <p>The SQL is fine as far as I am aware, so I'm wondering is there some limitation on using the DISTINCT keyword as part of RowFilter's SQL? Anyone have any idea?</p> http://stackoverflow.com/questions/553158/visual-studio-why-do-aspx-files-take-so-much-longer-to-load-than-aspx-cs-file 4 Visual Studio - Why do .ASPX files take so much longer to load than .ASPX.CS files? El Cristoir 2009-02-16T12:26:53Z 2009-02-28T14:56:50Z <p>Hi all,</p> <p>This may be a stupid question, but it's something that bugs me on a regular basis, so no harm in asking here I guess.</p> <p>What exactly is Visual Studio doing when I open up an .ASPX file and it takes a good 4-5 seconds longer than if I was just opening the code behind file (.ASPX.CS).</p> <p>I've noticed this happening with VS 2003, 2005 and 2008, and on a newly built machine too, so it's not an issue of my dev machine being too slow.</p> <p>It seems to only happen when opening any .ASPX file for the first time in a particular session though. Is there some processing going on that I can disable to get rid of this delay?</p> <p>Cheers</p> http://stackoverflow.com/questions/237719/most-frustrating-programming-style-youve-encountered/582624#582624 32 Answer by El Cristoir for Most frustrating programming style you've encountered El Cristoir 2009-02-24T17:12:57Z 2009-02-24T17:12:57Z <p>I found this the other day in work when trawling through our source control. I think it's one of the most creative uses of the switch syntax I've ever seen;</p> <pre><code>bool flag; // snip switch(flag) { case true: { // Do something } break; default: { // Do something else } break; } </code></pre> http://stackoverflow.com/questions/582122/c-linkedlist-how-to-remove-all-nodes-after-specified-node/582253#582253 0 Answer by El Cristoir for C# - LinkedList - How to remove all nodes after specified node? El Cristoir 2009-02-24T15:47:00Z 2009-02-24T15:47:00Z <p>The first idea that springs to mind is to set Node.Next.Previous = null (if it's a doubly-linked list) and then Node.Next = null.</p> <p>Unfortunately, because LinkedListNode.Next and LinkedListNode.Previous are read-only properties in the .NET implementation of Linked List, I think you may have to implement your own structure to achieve this functionality.</p> <p>But as others have said, that should be easy enough. There are plenty of resources you can use as a starting point if you just Google for "linked lists C#".</p> http://stackoverflow.com/questions/566082/coding-standards-and-line-length/566168#566168 4 Answer by El Cristoir for Coding standards and line length El Cristoir 2009-02-19T16:46:09Z 2009-02-19T16:46:09Z <p>An unusual indentation style that I found myself easing into when doing a lot of SQL work was;</p> <pre><code>INSERT INTO someTable ( id, name, age, address1, address2, ) VALUES ( 2, 'Bob' 25, '12 Fake Street', 'The Moon' ) </code></pre> <p>I actually find it much easier to read than any other layout for long parameter lists.</p> http://stackoverflow.com/questions/565107/what-would-you-choose-extremely-high-salary-or-work-satisfaction/565170#565170 0 Answer by El Cristoir for What would you choose? Extremely high salary or work satisfaction? El Cristoir 2009-02-19T12:46:56Z 2009-02-19T12:46:56Z <p>I wish I had the luxury of such a choice in the first place :)</p> http://stackoverflow.com/questions/564920/what-is-the-difference-between-notx-y-and-x-y-in-an-sql-query/565105#565105 1 Answer by El Cristoir for What is the difference between NOT(x > y) and (x < y) in an SQL query? El Cristoir 2009-02-19T12:34:18Z 2009-02-19T12:34:18Z <p>Disregarding the anything SQL-specific here, but from a logic point of view, the negation of &lt; is >= (likewise, the negation of > is &lt;=), so (x > y) and !(x &lt; y) are not equivalent.</p> <p>This is plain to see when you use a simple example like "What is not less than Y?". The answer being "Y and everything above it";</p> <p>!(x &lt; y) == (x >= y)</p> http://stackoverflow.com/questions/556203/how-can-a-static-class-derive-from-an-object/556234#556234 3 Answer by El Cristoir for How can a static class derive from an object? El Cristoir 2009-02-17T10:30:51Z 2009-02-17T10:30:51Z <p>Taken from <a href="http://msdn.microsoft.com/en-us/library/79b3xss3" rel="nofollow">http://msdn.microsoft.com/en-us/library/79b3xss3</a>(VS.80).aspx</p> <blockquote> <p>The main features of a static class are:</p> <p>They only contain static members.</p> <p>They cannot be instantiated.</p> <p>They are sealed.</p> <p>They cannot contain Instance Constructors (C# Programming Guide).</p> </blockquote> <p>So, inheriting from a non-static class violates the first feature of static classes on this list by introducing non-static members to your static class.</p> http://stackoverflow.com/questions/536108/using-html-for-listbox-items 0 Using HTML for Listbox items El Cristoir 2009-02-11T09:36:33Z 2009-02-11T14:52:21Z <p>Hello everyone,</p> <p>I was wondering if there was a way of using HTML for the content of my ASP:Listbox items instead of plain text? The reason I ask is because I'd like to do some extra formatting on each item in the list. Not just font changes, but perhaps icons alongside the text or table rows to divide up each list item.</p> <p>I'm vaguely aware that there may be a JavaScript solution to this problem, but I'm not having much luck with it, so if anyone can offer any suggestions or pointers that'd be great.</p> <p>Edit: I should clarify that my target platform is .NET 2.0 and IE6.</p> http://stackoverflow.com/questions/536108/using-html-for-listbox-items/536227#536227 0 Answer by El Cristoir for Using HTML for Listbox items El Cristoir 2009-02-11T10:20:31Z 2009-02-11T10:26:13Z <p>Peter, that's very close to what I'm after. I've done this in my .NET app;</p> <pre><code>itemToAdd.Attributes.Add("style", "padding-left: 20px; background: url(" + image + ".gif) no-repeat left center;"); </code></pre> <p>This works exactly as expected in FF3, but in IE the images are not displayed for some reason. Does anyone know of any issues surrounding the use of the background CSS element in IE? </p> http://stackoverflow.com/questions/506865/image-to-pixels/506910#506910 3 Answer by El Cristoir for Image to pixels El Cristoir 2009-02-03T12:28:01Z 2009-02-03T12:28:01Z <p>This is from an old project of mine. I haven't tested it in a while and it only works for greyscale images, but it should put you on the right path;</p> <pre><code>public static float[][] GetImageAsArray(BufferedImage image) { float[][]imageArray = null; try { Raster rast = image.getRaster(); int imgWidth = image.getWidth(); int imgHeight = image.getHeight(); imageArray = new float[imgWidth][imgHeight]; for(int i=0;i&lt;imgWidth;i++) { for(int j=0;j&lt;imgHeight;j++) { imageArray[i][j] = rast.getSample(i,j,0); } } } catch(IOException e) { // Error handling } return imageArray; } </code></pre> http://stackoverflow.com/questions/496058/how-do-you-explain-the-concept-of-programming-to-someone-who-has-no-clue-what-i/496404#496404 3 Answer by El Cristoir for How do you explain the concept of "Programming" to someone who has no clue what it is? El Cristoir 2009-01-30T17:25:33Z 2009-01-30T17:25:33Z <p>I would say the best way to explain it is to just be straightforward with it and not try to fudge an analogy into your explanation.</p> <p>"Code is the set of instructions that tell a computer what to do." does the trick for me!</p> http://stackoverflow.com/questions/483596/masking-an-external-url/483722#483722 1 Answer by El Cristoir for Masking an external URL El Cristoir 2009-01-27T14:58:41Z 2009-01-27T14:58:41Z <p>I had a similar problem myself a while ago and did something along these lines (C# .NET 2.0);</p> <pre><code> public void StreamURLContents(string URL) { WebRequest req = WebRequest.Create(URL); using (HttpWebResponse resp = (HttpWebResponse)req.GetResponse()) using (Stream dataStream = resp.GetResponseStream()) using (StreamReader reader = new StreamReader(dataStream)) { string currentLine = reader.ReadLine(); while (currentLine != null) { Response.Write(currentLine); currentLine = reader.ReadLine(); } } } </code></pre> <p>You would have to tailor the writing of the HTML to suit your particular application obviously, and you'd break all of the relative links in the target site (image URLs, CSS links etc.), but if you're only after simple text HTML and want your web app to grab it server-side, then this is a good way to go.</p> http://stackoverflow.com/questions/359732/why-is-it-considered-a-bad-practice-to-omit-curly-braces/360011#360011 2 Answer by El Cristoir for Why is it considered a bad practice to omit curly braces? El Cristoir 2008-12-11T16:40:24Z 2008-12-11T16:40:24Z <p>I'm a strong believer in writing tidy and concise code, but I would always use curly braces. I find that they are a convenient way of quickly seeing the scope in which a particular line of code exists. There is no ambiguity, it's just explicitly set out in front of you.</p> <p>Some may say it is a case of preference, but I find the logical flow of a program much easier to follow if it is internally consistent, and I don't believe that it is consistent to write one IF statement like this;</p> <pre><code>if(x &lt; y) x = y; else y = x; </code></pre> <p>And another like this;</p> <pre><code>if(x &lt; y) { x = y; x++; } else { y = x; y++; } </code></pre> <p>I prefer to just pick one general style and stick with it :)</p> http://stackoverflow.com/questions/325503/pl-sql-fetching-from-a-cursor-that-is-passed-between-two-functions 1 PL/SQL: Fetching from a Cursor that is passed between two functions El Cristoir 2008-11-28T11:06:28Z 2008-12-01T10:03:38Z <p>Hi everyone,</p> <p>I have a quick question about fetching results from a weakly typed cursor and was wondering if anyone had come across this problem before?</p> <p>My set up is as follows;</p> <p>Inner function;</p> <pre><code>create or replace FUNCTION A_CURSOR_TEST_INNER ( varCursor OUT SYS_REFCURSOR ) RETURN NUMBER AS varStatus NUMBER; BEGIN OPEN varCursor FOR SELECT docid FROM DOCUMENT_TABLE; RETURN 0; END; </code></pre> <p>Calling function;</p> <pre><code>create or replace FUNCTION A_CURSOR_TEST_OUTER ( varCursor OUT SYS_REFCURSOR ) RETURN NUMBER AS varStatus NUMBER; BEGIN varStatus := A_CURSOR_TEST_INNER(varCursor =&gt; varCursor); RETURN 0; END; </code></pre> <p>Test harness code;</p> <pre><code>DECLARE varCursor SYS_REFCURSOR; v_Return NUMBER; BEGIN v_Return := A_CURSOR_TEST_OUTER(varCursor =&gt; varCursor); DECLARE docid_ NUMBER; BEGIN IF(varCursor %ISOPEN) THEN LOOP FETCH varCursor INTO docid_ ; EXIT WHEN varCursor %NOTFOUND; DBMS_OUTPUT.PUT_LINE(' docid_:' || docid_ ); END LOOP; CLOSE varCursor ; END IF; END; END; </code></pre> <p>The error I get if I run my test harness code is;</p> <blockquote> <p>ORA-06504: PL/SQL: Return types of Result Set variables or query do not match</p> </blockquote> <p>I'm not really sure what is causing this to occur. The error is happening in my test code, but I've used this exact same method hundreds of times before and not encountered this problem. The only difference now being, that the cursor is being passed back up through two functions instead of just one.</p> <p>Does anyone have any idea what the problem might be here? I've Googled around for it and all I can find are suggestions to strongly type the cursors, which is not an option for me unfortunately.</p> <p>Thanks for any help anyone can give, cheers.</p> http://stackoverflow.com/questions/1911149/passing-arbitrary-number-of-parameters-to-an-oracle-function-in-perl/1911397#1911397 Comment by El Cristoir on Passing arbitrary number of parameters to an Oracle function in perl El Cristoir 2009-12-16T14:28:01Z 2009-12-16T14:28:01Z Great, thanks for the sample code. Much appreciated. http://stackoverflow.com/questions/1716667/webclient-problem-with-url-which-ends-with-a-period/1717513#1717513 Comment by El Cristoir on WebClient problem with URL which ends with a period El Cristoir 2009-11-12T10:32:28Z 2009-11-12T10:32:28Z Perfect. This solution worked greated, thanks a lot Sean. http://stackoverflow.com/questions/1716667/webclient-problem-with-url-which-ends-with-a-period Comment by El Cristoir on WebClient problem with URL which ends with a period El Cristoir 2009-11-11T17:20:29Z 2009-11-11T17:20:29Z It's a 3rd party site, I've no association with them at all - this is just a small hobby project I'm working on. I should probably have clarified, if you type an address with a period on the end into a browser, it works fine. Hence the question on here, as I presume it must be a .NET issue. http://stackoverflow.com/questions/1422664/deploying-files-to-remote-machines/1422734#1422734 Comment by El Cristoir on Deploying files to remote machines El Cristoir 2009-09-16T10:18:38Z 2009-09-16T10:18:38Z Yeah the CSV was valid. It actually turned out to be an unrelated network issue - the hosts were inaccessible from my dev machine, so the mapping to T: was producing the error above. Got it working now. Thanks for your help. http://stackoverflow.com/questions/1422664/deploying-files-to-remote-machines/1422734#1422734 Comment by El Cristoir on Deploying files to remote machines El Cristoir 2009-09-14T17:33:08Z 2009-09-14T17:33:08Z This looks like what I'm after. I've never used Powershell before, and I'm getting the following error from your example; Copy-Item : Cannot find drive. A drive with the name 't' does not exist. Any ideas what might be causing that? Cheers http://stackoverflow.com/questions/1422664/deploying-files-to-remote-machines Comment by El Cristoir on Deploying files to remote machines El Cristoir 2009-09-14T16:53:41Z 2009-09-14T16:53:41Z The remote machines are running Windows Server 2003 Standard Edition SP1, and all have Remote Desktop enabled. I'm not sure about FTP, but I don't think so. http://stackoverflow.com/questions/781293/parsing-large-text-files-in-real-time-java/781571#781571 Comment by El Cristoir on Parsing Large Text Files in Real-time (Java) El Cristoir 2009-04-23T13:31:55Z 2009-04-23T13:31:55Z Fair enough - that's actually something I was wondering as well - if I had over-egged this problem in my head. I think I'll do as you say and see how I get on. If performance turns out to be an issue then I can come back and look at the options suggested by other answers. Cheers. http://stackoverflow.com/questions/781293/parsing-large-text-files-in-real-time-java Comment by El Cristoir on Parsing Large Text Files in Real-time (Java) El Cristoir 2009-04-23T12:49:14Z 2009-04-23T12:49:14Z I mean quickly - I want a request to be sent from the web UI to the server, which will signal that it should parse the file and return the results (into whatever sort of data structure is appropriate) and then process them for display in the UI. http://stackoverflow.com/questions/781293/parsing-large-text-files-in-real-time-java/781412#781412 Comment by El Cristoir on Parsing Large Text Files in Real-time (Java) El Cristoir 2009-04-23T12:40:51Z 2009-04-23T12:40:51Z It's the same file that is getting parsed all the time - edited the post to clarify that. http://stackoverflow.com/questions/781293/parsing-large-text-files-in-real-time-java/781303#781303 Comment by El Cristoir on Parsing Large Text Files in Real-time (Java) El Cristoir 2009-04-23T11:37:25Z 2009-04-23T11:37:25Z It's a 3rd party log file, I have no control over the format unfortunately. http://stackoverflow.com/questions/767783/how-can-i-check-if-a-windows-device-driver-is-loaded-using-perl Comment by El Cristoir on How can I check if a Windows device driver is loaded using Perl? El Cristoir 2009-04-20T12:14:02Z 2009-04-20T12:14:02Z Sorry, updated now! http://stackoverflow.com/questions/751100/checking-if-a-particular-device-driver-is-loaded/751111#751111 Comment by El Cristoir on Checking if a particular device driver is loaded El Cristoir 2009-04-16T08:36:08Z 2009-04-16T08:36:08Z Sorry, the other one isn't working either - should have included that too; error LNK2019: unresolved external symbol _GetDeviceDriverBaseNameW@12 referenced in function _main error LNK2019: unresolved external symbol _EnumDeviceDrivers@12 referenced in function _main http://stackoverflow.com/questions/751100/checking-if-a-particular-device-driver-is-loaded/751111#751111 Comment by El Cristoir on Checking if a particular device driver is loaded El Cristoir 2009-04-15T14:30:42Z 2009-04-15T14:30:42Z Hi Neil, I'm getting the following error when trying to compile the example you linked to; Error 1 error LNK2019: unresolved external symbol _GetDeviceDriverBaseNameW@12 referenced in function _main DriverChecker.obj DriverChecker Any idea what might be causing this? http://stackoverflow.com/questions/751100/checking-if-a-particular-device-driver-is-loaded/751111#751111 Comment by El Cristoir on Checking if a particular device driver is loaded El Cristoir 2009-04-15T11:00:43Z 2009-04-15T11:00:43Z Thanks for the link - quick question though, where do I get psapi.h from? http://stackoverflow.com/questions/610169/setting-a-property-on-a-control-before-createchildcontrols-is-called/614935#614935 Comment by El Cristoir on Setting a Property on a Control before CreateChildControls is called El Cristoir 2009-03-05T15:38:15Z 2009-03-05T15:38:15Z Very helpful answer, thanks.