User pkario - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T10:47:38Z http://stackoverflow.com/feeds/user/28207 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1733346/why-sql-indexed-view-always-use-clustered-index/1733365#1733365 0 Answer by pkario for Why Sql Indexed View always use Clustered Index pkario 2009-11-14T05:24:06Z 2009-11-14T05:24:06Z <p>How many records are there in your view?</p> <p>If the result of the join is small then it is most cost efficient to scan the clustered index than seek another.</p> http://stackoverflow.com/questions/1621774/which-programming-language-is-manageable-by-an-11-year-old-kid/1657310#1657310 0 Answer by pkario for Which programming language is manageable by an 11 year old kid? pkario 2009-11-01T14:32:29Z 2009-11-01T14:32:29Z <p>Kids can learn anything, if you can teach it. </p> <p>Do NOT underestimate them. </p> <p>Start with the language you know best and love.</p> <p>I started mine with C (18 years ago) when SHE was 4 years old. </p> <p>She understood pointers before she was 5 and was touch typing before she could write.</p> <p>She is better than me nowadays and sure has a better job and education than I (works for a bank in the City).</p> http://stackoverflow.com/questions/1643349/is-there-any-way-to-find-an-element-in-a-documentfragment 0 Is there any way to find an element in a documentFragment? pkario 2009-10-29T12:24:40Z 2009-10-29T13:33:18Z <pre><code>var oFra = document.createDocumentFragment(); // oFra.[add elements]; document.createElement("div").id="myId"; oFra.getElementById("myId"); //not in FF </code></pre> <p>How can I get "myId" before attaching fragment to document?</p> http://stackoverflow.com/questions/1448863/redirect-to-a-different-page/1448987#1448987 1 Answer by pkario for redirect to a different page pkario 2009-09-19T17:09:43Z 2009-09-19T17:09:43Z <p>Actually you should not. All the browsers make sure you don't.</p> <p>Even if you find a way, rest assured that it will be on every browser's bug list, next day morning.</p> <p>If the user wants to close the window there is nothing you can do. </p> <p>He will.</p> <p>The only thing you can do is ask politely "Are you sure?"</p> http://stackoverflow.com/questions/1420897/compound-primary-key-in-table-type-variable 0 Compound primary key in Table type variable pkario 2009-09-14T11:00:39Z 2009-09-14T12:36:12Z <p>SQL Server 2008:</p> <pre><code>DECLARE @MyTable TABLE( PersonID INT NOT NULL, Person2ID INT NOT NULL, Description NVARCHAR(100), CONSTRAINT PK PRIMARY KEY CLUSTERED (PersonID, Person2ID) ); </code></pre> <p>Gives:</p> <pre><code>Msg 156, Level 15, State 1, Line 5 Incorrect syntax near the keyword 'CONSTRAINT'. </code></pre> <p>Is there any way to have compound Primary key in Table valued variables?</p> http://stackoverflow.com/questions/1254274/how-most-visited-works-in-applications 5 how "most visited" works in applications pkario 2009-08-10T11:00:24Z 2009-08-28T10:06:27Z <p>In the home page of my app, I try to implement something like "most visited websites" that Chrome &amp; Safari have in their home pages. The major diff being that instead of websites the app will show Objects from the DB (Persons,Organizations,Orders, Invoices etc).</p> <p>It should work like <strong>automatic bookmarking</strong>.</p> <p>There is already a "Recently Viewed" table in the DB (InstanceId, UserId, LastVisitDate).</p> <p>I could expand it with (NumberOfVisits) attribute, but that would not permit me to weight more recent visits over old.</p> <p>One idea I'm working on is to weight the NumberOfVisits based on the the LastVisitDate. When the user visits the instance again, I weight down the existing NumberOfVisits before adding the new Visit.</p> <p>Has anyone implemented such a system before? Do you know how Safari &amp; Chrome do it in the home page?</p> http://stackoverflow.com/questions/1254274/how-most-visited-works-in-applications/1265387#1265387 0 Answer by pkario for how "most visited" works in applications pkario 2009-08-12T10:27:43Z 2009-08-28T10:06:27Z <p>Here is the solution as implemented: Added two columns in my LastView table and now it is:</p> <ul> <li>ObjectType</li> <li>ObjectID</li> <li>UserID</li> <li>DateTimeLastView</li> <li>NumberOfVisits (new)</li> <li>NumberOfVisitsNormalized (new-Calculated)</li> </ul> <p>Description:</p> <ul> <li>NumberOfVisitsNormalized is NumberOfVisits multiplied by a factor that gets smaller for older entries. This way new visits are more valuable than old ones.</li> <li>When increasing number of Visits I value an INSERT as 10 SELECTS, an UPDATE as 5 SELECTS.</li> <li>NumberOfVisits=1+NumberOfVisitsNormalized.</li> <li>If a User visits the same page within 10 minutes of last visit, it gets no bonus.</li> <li>If a User visits the same page within 24 hours of last visit, it gets 50% bonus.</li> </ul> <p>That way we have:</p> <ul> <li>Pages last visited</li> <li>Users last seen</li> <li>Favorite pages</li> </ul> <p>with just 6 (5 real+1 calculated) columns, no triggers,UDFs, SPs and fast queries.</p> http://stackoverflow.com/questions/1316148/sql-fast-inserts-with-no-updates 4 SQL fast INSERTs with no UPDATEs pkario 2009-08-22T15:07:24Z 2009-08-22T15:29:29Z <p>We are using a single table for Auditing in a SQL Server 2008 DB.</p> <p>The single table architecture works nicely, is simple to query, accommodates schema changes.</p> <p>But it is a major bottleneck for the entire DB. All INSERTS and UPDATES have to go through the audit table.</p> <p>We already use NOLOCK HINT for SELECT statements.</p> <p>Since there are no UPDATEs to this table, is there any suggestions for improving the throughput of INSERT statements?</p> http://stackoverflow.com/questions/1292394/what-is-the-need-for-the-javascript-function-getutcfullyear 1 What is the need for the javascript function getUTCFullYear()? pkario 2009-08-18T07:47:55Z 2009-08-18T08:11:41Z <p>Is there any real case where getUTCFullYear() differs from getFullYear() in javascript?</p> <p>The same goes for:</p> <p>getUTCMonth() vs getMonth() </p> <p>getUTCDate() vs getDate()</p> <p>Am I missing something here?</p> <p>EDIT:</p> <p>See <a href="http://docs.sun.com/source/816-6408-10/date.htm#1193940" rel="nofollow">getUTCFullYear() documentation</a>.</p> <p><strong>Is there any real case where getUTCFullYear() differs from getFullYear() in javascript?</strong></p> http://stackoverflow.com/questions/1081641/firefox-iframe-history 0 firefox iframe history pkario 2009-07-04T06:18:54Z 2009-07-04T06:18:54Z <p>In a web app we use IFRAME to let users select items for the parent page.</p> <p>The problem is that FIREFOX (3.5) adds a copy of the same (parent) page to history each time IFRAME is opened.</p> <p>The web app is using history.back() to go from parent page to one that called that page.</p> <p>We can fix that by passing the "back" page as parameter from caller to callee.</p> <p>Still BACK button remains broken (the user presses back button but remains in same page).</p> <p>The other problem that is created is that we want some pages out of history. We do not want the user to go <strong>back</strong> to an <strong>INSERT</strong> page.</p> <p>This is easily done with location.replace on the <strong>INSERT</strong> page when finished, but impossible on FIREFOX with many entries of the same <strong>INSERT</strong> page.</p> http://stackoverflow.com/questions/905554/recordset-in-vb6-0/905577#905577 1 Answer by pkario for Recordset in VB6.0 pkario 2009-05-25T06:25:45Z 2009-05-25T06:25:45Z <p>Not exactly what you are looking for, but this is how I do it:</p> <ol> <li>Create a class to encapsulate the recordset ('Customer' class for 'Customer' table)</li> <li>Add your Comment property to the class and not to recordset</li> <li>Add a Validate method to your class. Have it write to your Comment property (I use an Errors Collection)</li> <li>Read the recordset</li> <li>Parse it into a "new Customer"</li> <li>Validate</li> <li>Check the Comment property (or the Errors Collection)</li> </ol> http://stackoverflow.com/questions/896919/restricteduser 4 RESTRICTED_USER pkario 2009-05-22T08:41:58Z 2009-05-22T11:00:01Z <p>Before changing database schema I issue:</p> <pre><code>ALTER DATABASE SET RESTRICTED_USER </code></pre> <p>On completion:</p> <pre><code>ALTER DATABASE SET MULTI_USER </code></pre> <p>I understand that a running transaction will be permitted to continue until completion.</p> <p>Q: Is there any way to wait till all regular users are off the database?</p> <p>Q: Can the regular users issue more transactions? Can they continue working until disconnected from the server?</p> http://stackoverflow.com/questions/397301/how-do-arrays-in-javascript-work-ie-without-a-starting-dimension-size/397343#397343 0 Answer by pkario for How do arrays in JavaScript work ? (ie without a starting dimension size) pkario 2008-12-29T08:49:33Z 2008-12-29T08:49:33Z <p>javascript has no real arrays. Elements are allocated as you define them.</p> <p>It is a flexible tool. You can use the for many purposes but as a general purpose tool is not as efficient as special purpose arrays.</p> http://stackoverflow.com/questions/378331/physical-or-logical-delete-of-database-record/378410#378410 1 Answer by pkario for Physical or Logical Delete of Database Record pkario 2008-12-18T16:31:48Z 2008-12-29T03:00:20Z <p>Logical deletions if are hard on referential integrity.</p> <p>It is the right think to do when there is a temporal aspect of the table data (are valid FROM_DATE - TO_DATE).</p> <p>Otherwise move the data to an Auditing Table and delete the record.</p> <p>On the plus side:</p> <p>It is the easier way to rollback (if at all possible). </p> <p>It is easy to see what was the state at a specific point in time.</p> http://stackoverflow.com/questions/371716/what-datatype-do-you-use-for-enumerations-in-sql-server 0 What datatype do you use for enumerations in SQL Server pkario 2008-12-16T15:54:18Z 2008-12-16T16:27:30Z <p>When we serialize an enum from C# to SQL Server we use a NCHAR(3) datatype with mnemonic values for each value of the enum. That way we can easily read a SELECT qry.</p> <p>How do you save enum to your database?</p> <p>What datatype do you use?</p> http://stackoverflow.com/questions/339931/javascript-memory-leak-cleanup-in-window-unload 1 Javascript memory leak cleanup in window.unload pkario 2008-12-04T08:49:17Z 2008-12-04T09:23:18Z <p>Javascript client side application.</p> <p>Trying to eliminate memory leaks leads to ugly (to say the least) code.</p> <p>I am trying to clean up in window.unload instead on messing up all the code trying to avoid them.</p> <p>We use mostly <code>element.onevent=function(){..};</code> pattern, that results in closure (mostly wanted) and memory leak.</p> <p>We do not use javascript frameworks.</p> <p>Are there any ideas on how to clean up properly on exit?</p> <p>Has anyone do the same or are you trying to avoid them?</p> http://stackoverflow.com/questions/333004/best-cure-for-sore-eyes-during-prolonged-programming/333477#333477 2 Answer by pkario for Best cure for sore eyes during prolonged programming? pkario 2008-12-02T09:39:04Z 2008-12-02T09:39:04Z <p>Here goes: Have a good stable TFT monitor (even better: have two or more). Place them at a reasonable distance (I have mine at 50cm)</p> <p>What you need now is to be able to see at your monitor without eye accommodation. Your eyes when at rest can see clearly objects that are far away. They have to do work to see something that is nearer than infinity (almost everything). You can bring "infinity" at 50cm using reading glasses. You have to take into account any myopia and astigmatism you have.</p> <p>That way you won't have to focus all the time at your screen. It is difficult because there are no 3d clues (it is a flat world there). You should be able to stare at your screen all day long till 200 years old (if that is what you want:)</p> <p>Resume: Use reading glasses (use a VERY good optician). Everything on your monitor should be crystal clear without accommodation. Everything behind your monitor should by hazy.</p> http://stackoverflow.com/questions/202107/good-examples-of-hungarian-notation/327329#327329 3 Answer by pkario for Good examples of Hungarian Notation? pkario 2008-11-29T08:04:24Z 2008-11-30T05:29:11Z <p>Do not use language specific prefixes.</p> <p>We use:</p> <pre> n: Number p: Percentage 1=100% (for interest rates etc) c: Currency s: String d: date e: enumeration o: object (Customer oCustomer=new Customer();) ... </pre> <p>We use the same system for all languages:</p> <pre> SQL C C# Javascript VB6 VB.net ... </pre> <p>It is a life saver. </p> http://stackoverflow.com/questions/323506/sqlserver-2000-compatibility 3 SqlServer 2000 compatibility pkario 2008-11-27T11:20:44Z 2008-11-28T06:47:39Z <p>The developer environment db server is SqlServer 2005 (developer edition)</p> <p>Is there any way to make sure my SQL Queries will run in SqlServer 2000?</p> <p>This database is set to Compatibility level "SQL Server 2000 (80)" but some queries that run without problems in the development system can not run in the Test Server (SqlServer).</p> <p>(The problems seems to be in subqueries)</p> http://stackoverflow.com/questions/323506/sqlserver-2000-compatibility/323845#323845 0 Answer by pkario for SqlServer 2000 compatibility pkario 2008-11-27T14:04:37Z 2008-11-27T14:04:37Z <p>Problem solved:</p> <p>In correlated subqueries you have to (in SQL2000) explicitly define the external field.</p> <p>SQL2005:</p> <pre>SELECT * FROM Loans WHERE EXISTS (SELECT * FROM Collaterals WHERE COLLATERAL_LOAN=LOAN_NUMBER) </pre> <p>SQL2000:</p> <pre>SELECT * FROM Loans WHERE EXISTS (SELECT * FROM Collaterals WHERE COLLATERAL_LOAN=Loans.LOAN_NUMBER) </pre> http://stackoverflow.com/questions/323193/speedup-database-updates 2 SpeedUp Database Updates pkario 2008-11-27T08:11:26Z 2008-11-27T13:00:55Z <p>There is a SqlServer2000 Database we have to update during weekend.</p> <p>It's size is almost 10G.</p> <p>The updates range from Schema changes, primary keys updates to some Million Records updated, corrected or Inserted.</p> <p>The weekend is hardly enough for the job.</p> <p>We set up a dedicated server for the job, turned the Database SINGLE_USER made any optimizations we could think of: drop/recreate indexes, relations etc.</p> <p>Can you propose anything to speedup the process?</p> <p>SQL SERVER 2000 is not negatiable (not my decision). Updates are run through custom made program and not BULK INSERT.</p> <p>EDIT:</p> <p>Schema updates are done by Query analyzer TSQL scripts (one script per Version update)</p> <p>Data updates are done by C# .net 3.5 app.</p> <p>Data come from a bunch of Text files (with many problems) and written to local DB.</p> <p>The computer is not connected to any Network.</p> http://stackoverflow.com/questions/292257/javascript-invalidated-after-dom-manipulation/292259#292259 1 Answer by pkario for Javascript invalidated after dom manipulation pkario 2008-11-15T07:14:27Z 2008-11-15T07:14:27Z <p>Did you insert an element with the same id (duplicate id)?</p> http://stackoverflow.com/questions/281714/doevents-in-a-dll 0 DoEvents In a DLL pkario 2008-11-11T18:14:56Z 2008-11-12T06:59:07Z <p>Do you have any ideas how to call DoEvents from a C# DLL</p> http://stackoverflow.com/questions/266015/css-floats-how-do-i-keep-them-on-one-line/274492#274492 0 Answer by pkario for CSS floats - how do I keep them on one line? pkario 2008-11-08T07:21:16Z 2008-11-08T07:21:16Z <p>Solution 1: <p>display:table-cell (not widely supported) <p>Solution 2: <p>tables</p> <p>(I hate hacks.)</p> http://stackoverflow.com/questions/264508/detecting-clicks-inside-an-iframe-from-outside/264529#264529 1 Answer by pkario for Detecting clicks inside an iframe from outside? pkario 2008-11-05T07:06:29Z 2008-11-05T07:06:29Z <p><p>If it is from another site then the only way I know is to write the information you need to iframe's window.name property. <p><strong>That</strong>, you can read from your main documnent.</p> http://stackoverflow.com/questions/257052/how-to-design-multiple-lookups 1 how to design multiple lookups pkario 2008-11-02T16:57:28Z 2008-11-02T17:17:30Z <ul> <li>The user of an application wants to assign a task to a programmer.</li> <li>The "Edit Task" form is presented to the User. </li> <li>A popup (actually an absolutely positioned div) window comes up with all the programmers to choose from.</li> <li>The programmer is not there so the user asks for a "new programmer" screen. The popup is replaced with a "New programmer" form.</li> <li>The user fill the data, and comes to "Works at" field. </li> <li>A (2nd or 3d) popup comes to the stack with all the "Places" to choose from.</li> </ul> <p>This can go ad infinitum.</p> <p>How do you design your applications, to avoid the infinite stack of lookup/Entry forms?</p> http://stackoverflow.com/questions/232450/applications-using-decimal-versus-double/232502#232502 1 Answer by pkario for Applications using Decimal versus double . . . pkario 2008-10-24T04:50:55Z 2008-10-24T04:50:55Z <p><p>If it is "scientific" measurement (I mean weight, length, area etc) use double. <p>If it is financial, or has anything to do with law (e.g. the area of a property) then use decimal. <p>The hard part is rounding. <p>If the tax is 2.4% do you round in the details or after the sum? <p>Most of the time yo have to do both (AND fix the difs)</p> http://stackoverflow.com/questions/221040/record-level-permissions 1 Record level permissions pkario 2008-10-21T07:23:54Z 2008-10-22T16:37:33Z <p><p>In a database I am designing I have implemented profile based object level security. <p>Each user can view, edit, insert, update database tables according to the profiles (roles) he is a member of. <p>Now there is a need to implement "External Users" who can view only the relevant records and edit some of them (but not the bulk of the database).</p> <p><p>I am working on an "record ownership" model. <p>Are there any ideas on how to restrict the users belonging to an "External Users" profile to see and work with some records of each table, but not all.</p> http://stackoverflow.com/questions/221040/record-level-permissions/226606#226606 0 Answer by pkario for Record level permissions pkario 2008-10-22T16:37:33Z 2008-10-22T16:37:33Z <p><p>I have my first draft. It goes like that: <p>The app is a Project Management/Issue Tracking/Event Management/Collaboration Web app. <p>I created a Role "External User". By default a user in that role </p> <ul> <li>can SELECT FROM Persons <li>can SELECT FROM Units (organizational units-companies-depts etc) <li>can SELECT Projects assigned to him <li>can SELECT Tasks assigned to him <li>can not SELECT any other Projects & Tasks </ul> <p><p>The administrator can create a user group "External Partner" and assign to that some Projects and Products (with Issues) <p>The members of this group can SELECT the assigned Objects.</p> <p><p>It is a complicated solution, but the only one that solves my customers problem (they don't want external partners to have access to all their project database).</p> http://stackoverflow.com/questions/216536/what-is-the-best-practice-for-passing-variables-from-one-html-page-to-another/216564#216564 1 Answer by pkario for What is the best practice for passing variables from one HTML page to another? pkario 2008-10-19T15:47:08Z 2008-10-19T15:47:08Z <p><p>The best method (imho) is to include it in the URL <p>href="http://NewPage.htm?var=value"; <p>encodeUriComponent a string Value</p> http://stackoverflow.com/questions/1643349/is-there-any-way-to-find-an-element-in-a-documentfragment/1643383#1643383 Comment by pkario on Is there any way to find an element in a documentFragment? pkario 2009-10-29T12:54:15Z 2009-10-29T12:54:15Z There are many buttons, textboxes, combos etc in each and every form. I try to stick to the ids and minimize the dom object references where possible. I will attach first and assign events later. http://stackoverflow.com/questions/1643349/is-there-any-way-to-find-an-element-in-a-documentfragment/1643383#1643383 Comment by pkario on Is there any way to find an element in a documentFragment? pkario 2009-10-29T12:34:53Z 2009-10-29T12:34:53Z I was trying to avoid that solution, since i design a dataentry form in the fragment, add the events and attach to document. Works in IE. The reason seems that in IE fragment inherits from document, but in FF inherits from Node (W3C) http://stackoverflow.com/questions/1316148/sql-fast-inserts-with-no-updates/1316190#1316190 Comment by pkario on SQL fast INSERTs with no UPDATEs pkario 2009-08-22T15:46:11Z 2009-08-22T15:46:11Z I am working along these lines. I have an IDENTITY CLUSTERED PRIMARY KEY so that INSERTs are really APPENDs in the last page. 100% FILL FACTOR IS A NICE touch. I am thinking for a monthly maintenance, moving records to a &quot;permanent&quot; history table, so that the main table never grows huge. http://stackoverflow.com/questions/1254274/how-most-visited-works-in-applications/1254363#1254363 Comment by pkario on how "most visited" works in applications pkario 2009-08-10T12:02:50Z 2009-08-10T12:02:50Z Thank you for your (lengthy) contribution. If I go for a AllVisits table, probably it would be more useful to keep a fixed number of visits (let's say 1K) instead of last month. So I have a MostVisited for all Users even if they come back after a month of absence. Chrome has already implemented &quot;Keep on this page&quot; &amp; &quot;Don't show on this page&quot; http://stackoverflow.com/questions/1254274/how-most-visited-works-in-applications Comment by pkario on how "most visited" works in applications pkario 2009-08-10T11:20:32Z 2009-08-10T11:20:32Z I am not thinking about queries. More like a specific recipe, or a specific blog the User regularly visits. Or a specific project the User manages, a Customer the User services. http://stackoverflow.com/questions/1254274/how-most-visited-works-in-applications/1254285#1254285 Comment by pkario on how "most visited" works in applications pkario 2009-08-10T11:15:46Z 2009-08-10T11:15:46Z that would be easy to do if I had a table containing all visits for all users to all object. This is something I would really like to avoid. I keep <i>last</i> visit for all users to all object. That means I do not know the &quot;Number of visits in the last month&quot; http://stackoverflow.com/questions/905554/recordset-in-vb6-0/905577#905577 Comment by pkario on Recordset in VB6.0 pkario 2009-05-25T09:55:39Z 2009-05-25T09:55:39Z You tell me, you don't use classes because you have to write code? Where do you put the methods like &quot;Validate&quot;, &quot;Load&quot;, &quot;Save&quot; or whatever? http://stackoverflow.com/questions/896919/restricteduser/896953#896953 Comment by pkario on RESTRICTED_USER pkario 2009-05-22T09:08:07Z 2009-05-22T09:08:07Z that means the regular users remain connected to the server but have no access to restricted db? http://stackoverflow.com/questions/202107/good-examples-of-hungarian-notation/327329#327329 Comment by pkario on Good examples of Hungarian Notation? pkario 2009-03-20T12:06:38Z 2009-03-20T12:06:38Z We don't use pointers much (if any) anymore. In our line of work use see a lot of interest rates (percentage) and no pointers. The idea though is to use cross language prefixes. It is not the specific prefixes that count. Pick your own. http://stackoverflow.com/questions/371716/what-datatype-do-you-use-for-enumerations-in-sql-server/371748#371748 Comment by pkario on What datatype do you use for enumerations in SQL Server pkario 2008-12-18T07:56:35Z 2008-12-18T07:56:35Z Used to do it like that. Queries are getting hard to understand as the database gets complicated. Resultsets are hard to interpret without a lot of inner joins. Exactly the same reason for using enums and not integers in c# http://stackoverflow.com/questions/339931/javascript-memory-leak-cleanup-in-window-unload/339940#339940 Comment by pkario on Javascript memory leak cleanup in window.unload pkario 2008-12-04T09:07:26Z 2008-12-04T09:07:26Z sorry, no! There are two GC (javascript &amp; DOM). Work independently. If you connect javascript &amp; DOM objects (we do it all the time) leak happens.