User Pascal - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T23:50:52Zhttp://stackoverflow.com/feeds/user/1311http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/16447/select-query-on-2-tables-on-different-database-servers2Select Query on 2 tables, on different database serversPascal2008-08-19T15:53:19Z2009-10-22T04:24:55Z
<p>I am trying to generate a report by querying 2 databases (Sybase) in classic ASP.</p>
<p>I have created 2 connection strings:<br></p>
<blockquote>
<p>connA for databaseA<br>
connB for databaseB</p>
</blockquote>
<p>Both databases are present on the same server (don't know if this matters)<br></p>
<p>Queries:</p>
<blockquote>
<p>q1 = SELECT column1 INTO #temp FROM databaseA..table1 WHERE xyz="A"<br>
q2 = SELECT columnA,columnB,...,columnZ FROM table2 a #temp b WHERE b.column1=a.columnB</p>
</blockquote>
<p>followed by:</p>
<blockquote>
<p>response.Write(rstsql) <br>
set rstSQL = CreateObject("ADODB.Recordset")<br>
rstSQL.Open q1, connA<br>
rstSQL.Open q2, connB</p>
</blockquote>
<p>When I try to open up this page in a browser, I get error message:</p>
<blockquote>
<p>Microsoft OLE DB Provider for ODBC Drivers error '80040e37'</p>
<p>[DataDirect][ODBC Sybase Wire Protocol driver][SQL Server]#temp not found. Specify owner.objectname or use sp<em>help to check whether the object exists (sp</em>help may produce lots of output). </p>
</blockquote>
<p>Could anyone please help me understand what the problem is and help me fix it?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/11135/how-to-run-remote-shell-scripts-from-asp-pages0How to run remote shell scripts from ASP pages?Pascal2008-08-14T14:42:50Z2009-10-22T04:24:21Z
<p>I need to create and ASP page (not .NET, yes I know its ancient), which should run remote shell scripts on a UNIX server and then capture the output into variables in VBScript within the page itself.</p>
<p>I have never done ASP or VBScipt before. I have tried to google this stuff, but all I find are references to remote server side scripting, nothing concrete. </p>
<p>I could really use
1. An elementary example of how this could be done.
2. Any other better alternatives to achieve this in a secure manner.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/44509/single-sign-on-across-multiple-domains4Single Sign On across multiple domainsPascal2008-09-04T19:06:23Z2009-09-20T19:50:49Z
<p>Our company has multiple domains set up with one website hosted on each of the domains. At this time, each domain has its own authentication which is done via cookies. </p>
<p>When someone logged on to one domain needs to access anything from the other, the user needs to log in again using different credentials on the other website, located on the other domain. </p>
<p>I was thinking of moving towards single sign on (SSO), so that this hassle can be eliminated. I would appreciate any ideas on how this could be achieved, as I do not have any experience in this regard.</p>
<p>Thanks.</p>
<p><strong>Edit:</strong>
The websites are mix of internet (external) and intranet (internal-used within the company) sites.</p>
http://stackoverflow.com/questions/11145/drawing-library-for-ruby4Drawing Library for RubyPascal2008-08-14T14:51:28Z2008-12-23T13:51:52Z
<p>I am trying to code a flowchart generator for a language using Ruby. </p>
<p>I wanted to know if there were any libraries that I could use to draw various shapes for the various flowchart elements and write out text to those shapes. </p>
<p>I would really prefer not having to write code for drawing basic shapes, if I can help it. If someone could point me to some reference documentation with examples of using that library, it would be great.</p>
<p>Thanks!
<hr>
<b>@Mike:</b> <br>
Thanks for your pointers and insightful commentary. I appreciate it very much.</p>
http://stackoverflow.com/questions/202243/custom-date-time-formatting-in-sql-server3Custom Date/Time formatting in SQL ServerPascal2008-10-14T18:20:24Z2008-10-14T19:35:15Z
<p>I am trying to write a stored procedure which selects columns from a table and adds 2 extra columns to the ResultSet. These 2 extra columns are the result of conversions on a field in the table which is a Datetime field.</p>
<p>The Datetime format field has the following format 'YYYY-MM-DD HH:MM:SS.S'</p>
<p>The 2 additional fields which should be in the following format:</p>
<ol>
<li>DDMMM</li>
<li>HHMMT, where T is 'A' for a.m. and 'P' for p.m.</li>
</ol>
<p>Example: If the data in the field was '2008-10-12 13:19:12.0' then the extracted fields should contain:</p>
<ol>
<li>12OCT</li>
<li>0119P</li>
</ol>
<p>I have tried using CONVERT string formats, but none of the formats match the output I want to get. I am thinking along the lines of extracting the field data via CONVERT and then using REPLACE, but I surely need some help here, as I am no sure.</p>
<p>Could anyone well versed in stored procedures help me out here?
Thanks!</p>
http://stackoverflow.com/questions/23592/how-do-i-search-content-within-audio-files-streams3How do I search content, within audio files/streams?Pascal2008-08-22T21:46:03Z2008-09-23T04:50:42Z
<p>I have always wondered how many different search techniques existed, for searching text, for searching images and even for videos.</p>
<p>However, I have never come across a solution that searched for content within audio files. <br></p>
<p><strong>For example:</strong> Let us assume that I have about 200 podcasts downloaded to my PC in the form of mp3, wav and ogg files. They are all named generically say podcast1.mp3, podcast2.mp3, etc. So, it is not possible to know what the content is, without actually hearing them. Lets say that, I am interested in finding out, which the podcasts talk about 'game programming'. I want the results to be shown as:</p>
<ul>
<li>Podcast1.mp3 - 3 result(s) at time index(es) - 0:16:21, 0:43:45, 1:12:31</li>
<li>Podcast21.ogg - 1 result(s) at time index(es) - 0:12:01</li>
</ul>
<p><strong>So my questions:</strong></p>
<ul>
<li>How could one approach this problem?</li>
<li>Are there are suitable algorithms developed to do something like this? </li>
</ul>
<p>One idea the cropped up in my mind was that, one could use a 'speech-to-text' software to get transcripts along with time indexes for each of the audio files, then parse the transcript to get the output.</p>
<p>I was considering this as one of my hobby projects.
Thanks!</p>
http://stackoverflow.com/questions/95727/how-to-convert-floats-to-human-readable-fractions/95873#958731Answer by Pascal for How to convert floats to human-readable fractions?Pascal2008-09-18T19:13:35Z2008-09-18T19:13:35Z<p>You can do this in any programming language using the following steps:</p>
<ol>
<li>Multiply and Divide by 10^x where x is the power of 10 required to make sure that the number has no decimal places remaining.
Example: Multiply 0.33 by 10^2 = 100 to make it 33 and divide it by the same to get 33/100</li>
<li>Reduce the numerator and the denominator of the resulting fraction by factorization, till you can no longer obtain integers from the result.</li>
<li>The resulting reduced fraction should be your answer.</li>
</ol>
<p>Example:
0.2
=0.2 x 10^1/10^1
=2/10
=1/5</p>
<p>So, that can be read as '1 part out of 5'</p>
http://stackoverflow.com/questions/12294/any-good-tools-for-creating-timelines4Any good tools for creating timelines?Pascal2008-08-15T14:32:52Z2008-09-16T20:08:22Z
<p>I need to create a historical timeline starting from 1600's to the present day. I also need to have some way of showing events on the timeline so that they do not appear cluttered when many events are close together.</p>
<p>I have tried using Visio 2007 as well as Excel 2007 Radar Charts, but I could not get the results I wanted. the timeline templates in Visio are not great and using Radar charts in Excel leads to cluttered data.</p>
<p>Are there any other tools or techniques I could use to create these?</p>
<p><b>@Darren:</b><br>
The first link looks great. Thanks! The second link did not work in Firefox and was rendered as ASCII. It opened up fine in IE.<br>
And yes, this is for the end users. So I want it to look as presentable as possible, if you know what I mean. <br>
Thanks again!</p>
http://stackoverflow.com/questions/58640/great-programming-quotes/59268#5926887Answer by Pascal for Great programming quotesPascal2008-09-12T15:20:52Z2008-09-12T15:20:52Z<p>My favorites:</p>
<blockquote>
<p>"Computer science education cannot make anybody an expert programmer any more than studying brushes and pigment can make somebody an expert painter."</p>
</blockquote>
<p>-- Eric Raymond</p>
<blockquote>
<p>"To iterate is human, to recurse divine."</p>
</blockquote>
<p>-- L. Peter Deutsch</p>
<blockquote>
<p>"C++ : Where friends have access to your private members."</p>
</blockquote>
<p>-- Gavin Russell Baker</p>
http://stackoverflow.com/questions/56087/does-ruby-have-real-multithreading/57368#573681Answer by Pascal for Does ruby have real multithreading?Pascal2008-09-11T19:10:36Z2008-09-11T19:10:36Z<p>If you really need parallelism in Ruby for a Production level system (where you cannot employ a beta) processes are probably a better alternative. <br>
But, it is most definitely worth trying threads under JRuby first.</p>
<p>Also if you are interested in future of threading under Ruby, you might find this <a href="http://www.infoq.com/news/2007/05/ruby-threading-futures" rel="nofollow">article</a> useful.</p>
http://stackoverflow.com/questions/49870/i-understand-threading-in-theory-but-not-in-practice-in-net/49902#499022Answer by Pascal for I understand threading in theory but not in practice in .netPascal2008-09-08T15:09:44Z2008-09-08T15:09:44Z<p>A good web-resource to learn about multi-threading in .NET:</p>
<ul>
<li><a href="http://www.yoda.arachsys.com/csharp/threads/index.shtml" rel="nofollow">HTML version</a>.</li>
<li><a href="http://www.yoda.arachsys.com/csharp/threads/printable.shtml" rel="nofollow">Printable version</a></li>
<li><a href="http://www.yoda.arachsys.com/csharp/threads/resources.shtml" rel="nofollow">Further resources - (including examples)</a></li>
</ul>
http://stackoverflow.com/questions/44509/single-sign-on-across-multiple-domains/44572#445720Answer by Pascal for Single Sign On across multiple domainsPascal2008-09-04T19:29:54Z2008-09-04T19:29:54Z<p>@Thomas:</p>
<p>Ah, I see what you mean now. Thanks for the clarification.</p>
<p>@erickson:</p>
<p>The websites are mix of internet (external) and intranet (internal-used within the company) sites. Sorry, I missed this point. I will update the question accordingly.</p>
http://stackoverflow.com/questions/44509/single-sign-on-across-multiple-domains/44535#445350Answer by Pascal for Single Sign On across multiple domainsPascal2008-09-04T19:18:02Z2008-09-04T19:18:02Z<p>@SQLMenace, @Mike and @Neall:</p>
<p>Thank you for your input, I will look into each of those and see if your suggested solution fits my requirements.</p>
<p>@Thomas:</p>
<p>I am sorry, but I did not quite understand what you proposed. Could you please elaborate on your idea?</p>
http://stackoverflow.com/questions/42489/how-to-implement-a-related-degree-measure-algorithm/42598#425980Answer by Pascal for How to implement a "related" degree measure algorithm?Pascal2008-09-03T21:08:20Z2008-09-03T21:08:20Z<p><a href="http://beta.stackoverflow.com/questions/42489/how-to-implement-a-related-degree-measure-algorithm#42545" rel="nofollow">@marcio</a></p>
<p>Sorry, I am not aware of any direct API reference that I could suggest here and I have never worked with Lucene.</p>
<p>However, I am aware that Google Desktop uses a Query API to rank and suggest the relevant search results. More information on the API can be found <a href="http://code.google.com/apis/desktop/docs/queryapi.html" rel="nofollow">here</a>.</p>
<p>Perhaps others could chime in and guide you. </p>
http://stackoverflow.com/questions/42489/how-to-implement-a-related-degree-measure-algorithm/42532#425323Answer by Pascal for How to implement a "related" degree measure algorithm?Pascal2008-09-03T20:39:45Z2008-09-03T20:39:45Z<p>One such way to implement such an algorithm would involve ranking the questions as per a heuristic function which assigns a 'relevance' weight factor using the following steps:</p>
<ol>
<li>Apply a noise filter to the 'New' question to remove words that are common across a large number of objects such as: 'the', 'and', 'or', etc.</li>
<li>Get the number of words contained in the 'New' question which match the words the set of questions already posted on the website. [A]</li>
<li>Get the number of tag matches between the words in the 'New' question and the available. [B]</li>
<li>Compute the 'relevance weight' based on [A] and [B] as 'x[A] + y[B]', where x and y are weight multipliers (Assign a higher weight multiplier to [B] as tagging is more relevant than simple word search)</li>
<li>Get the top 5 questions which have the highest 'relevance weight'.</li>
</ol>
<p>The heuristic might require tweaking to get optimal results, but it should work.</p>
http://stackoverflow.com/questions/42460/custom-titlebars-chrome-in-a-winforms-app/42481#42481-2Answer by Pascal for Custom titlebars/chrome in a WinForms appPascal2008-09-03T20:17:03Z2008-09-03T20:17:03Z<p>Nope, I am afraid, there is no other easy way of doing this. </p>
<p>You are on the right track. You will need to create a custom Winform and then proceed as illustrated in this <a href="http://codemaverick.blogspot.com/2007/02/creating-custom-winforms-in-net-20-yes.html" rel="nofollow">example</a>.</p>
http://stackoverflow.com/questions/42437/best-way-to-handle-input-from-a-keyboard-wedge/42463#424630Answer by Pascal for Best way to handle input from a keyboard "wedge"Pascal2008-09-03T20:07:05Z2008-09-03T20:07:05Z<p>I second <a href="http://beta.stackoverflow.com/questions/42437/best-way-to-handle-input-from-a-keyboard-wedge#42448" rel="nofollow">@jttraino's idea</a>. </p>
<p>It is the way to go for bar scan/code readers and other such devices that are plug and play (PnP). I have used the same technique to configure a couple of 1D and 2D bar code scanners in my previous assignment.</p>
http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/32763#327630Answer by Pascal for What "already invented" algorithm did you invent?Pascal2008-08-28T16:41:51Z2008-08-28T16:41:51Z<ul>
<li><a href="http://en.wikipedia.org/wiki/Booth%27s_multiplication_algorithm" rel="nofollow">Booth's Algorithm</a> - for a topic called 'Computer Organization' at school</li>
<li><a href="http://en.wikipedia.org/wiki/Ant_colony_optimization" rel="nofollow">Ant Colony Optimization</a> - for my Graduate studies in AI</li>
</ul>
http://stackoverflow.com/questions/30152/how-does-winxps-send-to-compressed-zipped-folder-decide-what-to-include-in-z/30298#302980Answer by Pascal for How does WinXP's "Send to Compressed (zipped) Folder" decide what to include in zip file?Pascal2008-08-27T14:36:56Z2008-08-27T14:36:56Z<p>@<a href="http://beta.stackoverflow.com/questions/30152/how-does-winxps-send-to-compressed-zipped-folder-decide-what-to-include-in-zip#30204" rel="nofollow">Ishmaeel</a> <br>
Very interesting information. I never knew that. thanks!</p>
http://stackoverflow.com/questions/26771/rewarding-code-projects-for-complete-beginners/26835#268352Answer by Pascal for Rewarding code projects for *complete* beginnersPascal2008-08-25T20:42:56Z2008-08-25T20:42:56Z<p>Some good rewarding projects, in terms of what you can learn and which are quite scalable in terms of complexity, features are:</p>
<ul>
<li>Games</li>
<li>A travel and transportation reservation/booking system</li>
<li>Encyclopedia or a Dictionary of terms, articles</li>
<li>Conversion Calculators (Currency, Units, etc.)</li>
</ul>
<p>The key is to pick a project simple enough, so that some of its features are immediately apparent, when you look at the project title. And when really given a thought, will reveal more features that you can add to it. </p>
<p>The project should have enough difficulty to so that its features seem just beyond the beginner's reach, thereby motivating him to learn something new all the time.</p>
http://stackoverflow.com/questions/26183/screenshot-taking-tools/26191#261910Answer by Pascal for Screenshot Taking ToolsPascal2008-08-25T15:09:14Z2008-08-25T15:09:14Z<p><a href="http://www.visoracle.com/download/free/screenshot_.html" rel="nofollow">Here</a> you go.</p>
http://stackoverflow.com/questions/26094/most-efficient-implementation-of-a-large-number-class/26133#261337Answer by Pascal for Most efficient implementation of a large number classPascal2008-08-25T14:37:16Z2008-08-25T14:37:16Z<p>There are 2 solutions to your problem:</p>
<ul>
<li><p><strong>Easy way:</strong>
Use an external library such as '<a href="http://gmplib.org/" rel="nofollow">The GNU MP Bignum Library</a> and forget about implementation details.</p></li>
<li><p><strong>Hard way:</strong>
Design your own class/structure containing multiple higher order datatypes like double or int64 variables and define basic math operations for them using operator overloading (in C++) or via methods named add, subtract, multiply, shift, etc. (in JAVA and other OO languages). </p></li>
</ul>
<p>Let me know if you need any further help. I have done this a couple of times in the past.</p>
http://stackoverflow.com/questions/18104/standalone-tools-for-debugging-stored-procedures1Standalone tools for debugging stored proceduresPascal2008-08-20T14:29:51Z2008-08-24T19:54:38Z
<p>I was looking for a good free debugger for STP (Stored Procedures) as I need to make changes to a few of them as a part of my recent project. The stored procedures are stored in independent '.sql' files and not in the code.</p>
<p>A debugger would speed things up quite a it in my case. Could anyone recommend any tools that can be used for this?</p>
http://stackoverflow.com/questions/18803/is-uml-practical/18839#1883915Answer by Pascal for Is UML practical?Pascal2008-08-20T21:04:43Z2008-08-23T16:18:58Z<p>In a sufficiently complex system there are some places where some UML is considered useful. </p>
<p>The useful diagrams for a system, vary by applicability. But the most widely used ones are State Diagrams, Activity Diagrams and Sequence Diagram.</p>
<p>There are many enterprises who swear by them and many who outright reject them as an utter waste of time and effort. </p>
<p>Its best not to go overboard and think whats best for the project you are on and pick the stuff that is applicable and makes sense.</p>
http://stackoverflow.com/questions/23592/how-do-i-search-content-within-audio-files-streams/23686#236860Answer by Pascal for How do I search content, within audio files/streams?Pascal2008-08-22T22:42:53Z2008-08-22T22:42:53Z<p>@Anders:</p>
<p>Thanks for the link to Shazam. I was not aware of anyone who did this.</p>
http://stackoverflow.com/questions/23569/calculating-distance-between-2-cities/23615#236150Answer by Pascal for Calculating Distance Between 2 CitiesPascal2008-08-22T22:00:12Z2008-08-22T22:00:12Z<p>It is better to use a look-up table for obtaining the distance between two cities. </p>
<p>This makes sense because
* The Formula to calculate the distance ais quite computationally intensive..
* Distance between cities is unlikely to change.</p>
<p>So unless you needs are very specific (like terrain mapping from a satellite or some or topography algorithm or something else), you should really just save the list of cities and distances between them, into a table and look it up as needed.</p>
http://stackoverflow.com/questions/23166/whats-a-good-beginning-text-on-functional-programming/23185#231850Answer by Pascal for What's a good beginning text on functional programming?Pascal2008-08-22T18:55:08Z2008-08-22T18:55:08Z<p>Haskell is a very good functional programming language for beginners. Someone had asked about good resources for Haskell, so I will point you <a href="http://beta.stackoverflow.com/questions/16918/beginners-guide-to-haskell#16951" rel="nofollow">there</a>.</p>
<p>If you are looking for a good book on Functional Programming, I would recommend "Functional Programming: Practice and Theory" by Bruce J. Maclennan. <br>
It is however required that you brush up on your Set Theory and Logic before giving it a read. It includes examples in LISP, Haskell and other languages.</p>
http://stackoverflow.com/questions/23031/when-to-test/23168#231681Answer by Pascal for When to test?Pascal2008-08-22T18:46:55Z2008-08-22T18:46:55Z<p>A good key to remember is </p>
<blockquote>
<p>"Test early, test often and test again, when you think you are done"</p>
</blockquote>
http://stackoverflow.com/questions/21165/how-do-you-go-about-finding-jobs/21199#211991Answer by Pascal for How do you go about finding jobs?Pascal2008-08-21T21:08:14Z2008-08-21T21:08:14Z<p>Once you have been in the industry for a while, your contacts and recommendations from your peers and colleagues go a long way in helping you find the position you are looking for.</p>
<p>Besides this, job listings on specialized programming sites are quite useful too in picking interesting jobs on the market.</p>
<p>Examples:</p>
<ul>
<li><a href="http://forum.beyond3d.com/forumdisplay.php?f=49" rel="nofollow">Beyond3D forum for jobs in the graphics industry </li>
<li>Joel's Job board</a> for programming positions</li>
</ul>
http://stackoverflow.com/questions/18936/good-cheat-sheets/18948#1894819Answer by Pascal for Good Cheat Sheets?Pascal2008-08-20T21:59:36Z2008-08-20T21:59:36Z<p>A <a href="http://whatis.techtarget.com/definition/0,,sid9_gci826135,00.html" rel="nofollow">massive list</a> of all the cheat sheets you would ever need.</p>
http://stackoverflow.com/questions/202243/custom-date-time-formatting-in-sql-server/202343#202343Comment by Pascal on Custom Date/Time formatting in SQL ServerPascal2008-10-14T19:22:48Z2008-10-14T19:22:48ZYes, you are absolutely right and I echo your sentiments here, but there are people above me who want this thing to be handled in the sp. Otherwise, I probably wouldn't be asking this question. :)http://stackoverflow.com/questions/202243/custom-date-time-formatting-in-sql-server/202288#202288Comment by Pascal on Custom Date/Time formatting in SQL ServerPascal2008-10-14T18:54:15Z2008-10-14T18:54:15ZThanks for your pointers and handy function reference. It should come in handy!http://stackoverflow.com/questions/202243/custom-date-time-formatting-in-sql-server/202284#202284Comment by Pascal on Custom Date/Time formatting in SQL ServerPascal2008-10-14T18:52:46Z2008-10-14T18:52:46ZThanks for your answer. Helped me a lot!
I used format 106, instead of 13 for the 1st part.
Is it possible to do a left hand side zero padding for format 2 (time), if the time reported is something like 924P.http://stackoverflow.com/questions/202243/custom-date-time-formatting-in-sql-serverComment by Pascal on Custom Date/Time formatting in SQL ServerPascal2008-10-14T18:50:08Z2008-10-14T18:50:08ZYou are correct, I am going to do this repeatedly.