User pkario - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T10:47:38Zhttp://stackoverflow.com/feeds/user/28207http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1733346/why-sql-indexed-view-always-use-clustered-index/1733365#17333650Answer by pkario for Why Sql Indexed View always use Clustered Indexpkario2009-11-14T05:24:06Z2009-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#16573100Answer by pkario for Which programming language is manageable by an 11 year old kid?pkario2009-11-01T14:32:29Z2009-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-documentfragment0Is there any way to find an element in a documentFragment?pkario2009-10-29T12:24:40Z2009-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#14489871Answer by pkario for redirect to a different pagepkario2009-09-19T17:09:43Z2009-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-variable0Compound primary key in Table type variablepkario2009-09-14T11:00:39Z2009-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-applications5how "most visited" works in applicationspkario2009-08-10T11:00:24Z2009-08-28T10:06:27Z
<p>In the home page of my app, I try to implement something like "most visited websites" that Chrome & 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 & Chrome do it in the home page?</p>
http://stackoverflow.com/questions/1254274/how-most-visited-works-in-applications/1265387#12653870Answer by pkario for how "most visited" works in applicationspkario2009-08-12T10:27:43Z2009-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-updates4SQL fast INSERTs with no UPDATEspkario2009-08-22T15:07:24Z2009-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-getutcfullyear1What is the need for the javascript function getUTCFullYear()?pkario2009-08-18T07:47:55Z2009-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-history0firefox iframe historypkario2009-07-04T06:18:54Z2009-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#9055771Answer by pkario for Recordset in VB6.0pkario2009-05-25T06:25:45Z2009-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/restricteduser4RESTRICTED_USER pkario2009-05-22T08:41:58Z2009-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#3973430Answer by pkario for How do arrays in JavaScript work ? (ie without a starting dimension size)pkario2008-12-29T08:49:33Z2008-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#3784101Answer by pkario for Physical or Logical Delete of Database Recordpkario2008-12-18T16:31:48Z2008-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-server0What datatype do you use for enumerations in SQL Serverpkario2008-12-16T15:54:18Z2008-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-unload1Javascript memory leak cleanup in window.unloadpkario2008-12-04T08:49:17Z2008-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#3334772Answer by pkario for Best cure for sore eyes during prolonged programming?pkario2008-12-02T09:39:04Z2008-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#3273293Answer by pkario for Good examples of Hungarian Notation?pkario2008-11-29T08:04:24Z2008-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-compatibility3SqlServer 2000 compatibilitypkario2008-11-27T11:20:44Z2008-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#3238450Answer by pkario for SqlServer 2000 compatibilitypkario2008-11-27T14:04:37Z2008-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-updates2SpeedUp Database Updatespkario2008-11-27T08:11:26Z2008-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#2922591Answer by pkario for Javascript invalidated after dom manipulationpkario2008-11-15T07:14:27Z2008-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-dll0DoEvents In a DLLpkario2008-11-11T18:14:56Z2008-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#2744920Answer by pkario for CSS floats - how do I keep them on one line?pkario2008-11-08T07:21:16Z2008-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#2645291Answer by pkario for Detecting clicks inside an iframe from outside?pkario2008-11-05T07:06:29Z2008-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-lookups1how to design multiple lookups pkario2008-11-02T16:57:28Z2008-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#2325021Answer by pkario for Applications using Decimal versus double . . . pkario2008-10-24T04:50:55Z2008-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-permissions1Record level permissionspkario2008-10-21T07:23:54Z2008-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#2266060Answer by pkario for Record level permissionspkario2008-10-22T16:37:33Z2008-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#2165641Answer by pkario for What is the best practice for passing variables from one HTML page to another?pkario2008-10-19T15:47:08Z2008-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#1643383Comment by pkario on Is there any way to find an element in a documentFragment?pkario2009-10-29T12:54:15Z2009-10-29T12:54:15ZThere 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#1643383Comment by pkario on Is there any way to find an element in a documentFragment?pkario2009-10-29T12:34:53Z2009-10-29T12:34:53ZI 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#1316190Comment by pkario on SQL fast INSERTs with no UPDATEspkario2009-08-22T15:46:11Z2009-08-22T15:46:11ZI 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 "permanent" history table, so that the main table never grows huge.http://stackoverflow.com/questions/1254274/how-most-visited-works-in-applications/1254363#1254363Comment by pkario on how "most visited" works in applicationspkario2009-08-10T12:02:50Z2009-08-10T12:02:50ZThank 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 "Keep on this page" & "Don't show on this page"http://stackoverflow.com/questions/1254274/how-most-visited-works-in-applicationsComment by pkario on how "most visited" works in applicationspkario2009-08-10T11:20:32Z2009-08-10T11:20:32ZI 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#1254285Comment by pkario on how "most visited" works in applicationspkario2009-08-10T11:15:46Z2009-08-10T11:15:46Zthat 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 "Number of visits in the last month"http://stackoverflow.com/questions/905554/recordset-in-vb6-0/905577#905577Comment by pkario on Recordset in VB6.0pkario2009-05-25T09:55:39Z2009-05-25T09:55:39ZYou tell me, you don't use classes because you have to write code?
Where do you put the methods like "Validate", "Load", "Save" or whatever?http://stackoverflow.com/questions/896919/restricteduser/896953#896953Comment by pkario on RESTRICTED_USER pkario2009-05-22T09:08:07Z2009-05-22T09:08:07Zthat 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#327329Comment by pkario on Good examples of Hungarian Notation?pkario2009-03-20T12:06:38Z2009-03-20T12:06:38ZWe 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#371748Comment by pkario on What datatype do you use for enumerations in SQL Serverpkario2008-12-18T07:56:35Z2008-12-18T07:56:35ZUsed 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#339940Comment by pkario on Javascript memory leak cleanup in window.unloadpkario2008-12-04T09:07:26Z2008-12-04T09:07:26Zsorry, no!
There are two GC (javascript & DOM). Work independently.
If you connect javascript & DOM objects (we do it all the time) leak happens.