User Guy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T02:53:48Z http://stackoverflow.com/feeds/user/993 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1332778/what-are-your-most-common-sql-optimizations/1333840#1333840 1 Answer by Guy for What are your most common sql optimizations? Guy 2009-08-26T10:49:57Z 2009-08-26T10:49:57Z <p>The best optimisation I've ever had using SQL was to really understand what was needed to be done the data and REMOVE ton's of SQL from the query.</p> <p>The fastest query is the query that does not have to be run.</p> <p>REALLY THINK about what your doing to the data. Are you working row-by-row? (then use set based code). </p> <ul> <li><p>Do you really need to join to all those tables?</p></li> <li><p>Can two small (simple) queries do the job better and quicker than a single large query?</p></li> <li><p>If you combine these two queries into a single query can it run faster?</p></li> </ul> <p>Finally, PROFILE your queries (EXPLAIN PLAN or SQL PROFILER) and look at the "IO gets". Generally you want to reduce the number of GET's to a ratio something like 10 gets per output row.</p> http://stackoverflow.com/questions/109666/how-do-you-do-very-quick-and-dirty-estimations-for-coding-tasks/937085#937085 1 Answer by Guy for How do you do very quick (and dirty) estimations for coding tasks? Guy 2009-06-01T22:17:18Z 2009-06-01T22:17:18Z <p><strong>Think of a number, double it and then double it again (i.e. four times the first number that pops into your head)</strong></p> <p>When a boss says "how long to complete" a project, he means the time when it's complete and deployed live to the users. A programmer will (naturally) only think about the time needed to complete the programming (the time to physically type out the solution to the problem) so you typically under estimate.</p> <p><em>A rule of thumb would be:</em></p> <p>The 'first number' is the number of days you think it will take you to complete the task based on the scope of the task as just described. (But of course, you've not been told everything).</p> <p>The first multiple is the extra time needed to recode after the first demo / prototype given to the boss and he says "Good, great. But can you add..."</p> <p>The second multiple is the time needed to recode the recode up to the correct standard for production.</p> <p>The third multiple is time for testing, documentation &amp; deployment and all the other admin stuff you need to do to actually get the thing out and live.</p> <p>And the fourth multiple is your contingency for the above.</p> <p>This should give you a safe estimate. Of course, you should insist that a more thorough planning and estimation exercise.</p> http://stackoverflow.com/questions/887985/create-png-image-with-c-httphandler-webservice 4 Create PNG image with C# HttpHandler webservice Guy 2009-05-20T13:44:10Z 2009-05-22T21:05:16Z <p>I'd like to be able to create a simple PNG image, say of a red square using a c# web based service to generate the image, called from an <code>&lt;img src="myws.ashx?x=100&gt;</code> HTML element.</p> <p>some example HTML:</p> <pre><code>&lt;hmtl&gt;&lt;body&gt; &lt;img src="http://mysite.com/webservice/rectangle.ashx?size=100"&gt; &lt;/body&gt;&lt;/html&gt; </code></pre> <p>Is there is anyone who can cobble together a simple (working) C# class just to get me started? Once off and going I'm sure I can finish this off to actually do what I want it to do.</p> <ul> <li>End game is to create simple Red/Amber/Green (RAG) embedded status markers for a data driven web page that shows performance metrics etc*</li> <li>I'd like it to use PNG's as I anticipate using transparency in the future*</li> <li>ASP.NET 2.0 C# solution please... (I don't have a production 3.5 box yet)</li> </ul> <p>tia</p> <p><strong>SOLUTION</strong></p> <p>rectangle.html</p> <pre><code>&lt;html&gt; &lt;head&gt;&lt;/head&gt; &lt;body&gt; &lt;img src="rectangle.ashx" height="100" width="200"&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>rectangle.ashx</p> <pre><code>&lt;%@ WebHandler Language="C#" Class="ImageHandler" %&gt; </code></pre> <p>rectangle.cs</p> <pre><code>using System.Drawing; using System.Drawing.Imaging; using System.IO; using System.Web; public class ImageHandler : IHttpHandler { public void ProcessRequest(HttpContext context) { int width = 600; //int.Parse(context.Request.QueryString["width"]); int height = 400; //int.Parse(context.Request.QueryString["height"]); Bitmap bitmap = new Bitmap(width,height); Graphics g = Graphics.FromImage( (Image) bitmap ); g.FillRectangle( Brushes.Red, 0f, 0f, bitmap.Width, bitmap.Height ); // fill the entire bitmap with a red rectangle MemoryStream mem = new MemoryStream(); bitmap.Save(mem,ImageFormat.Png); byte[] buffer = mem.ToArray(); context.Response.ContentType = "image/png"; context.Response.BinaryWrite(buffer); context.Response.Flush(); } public bool IsReusable { get {return false;} } } </code></pre> http://stackoverflow.com/questions/10825/howto-compare-a-date-string-to-datetime-in-sql-server/14581#14581 0 Answer by Guy for HOWTO - Compare a date string to datetime in SQL Server? Guy 2008-08-18T13:26:53Z 2009-05-18T15:52:40Z <p><strong>How to get the DATE portion of a DATETIME field in MS SQL Server:</strong></p> <p>One of the quickest and neatest ways to do this is using</p> <pre><code>DATEADD(dd, DATEDIFF( dd, 0, @DAY ), 0) </code></pre> <p>It avoids the CPU busting "convert the date into a string without the time and then converting it back again" logic.</p> <p>It also does not expose the internal implementation that the "time portion is expressed as a fraction" of the date.</p> <p><strong>Get the date of the first day of the month</strong></p> <pre><code>DATEADD(dd, DATEDIFF( dd, -1, GetDate() - DAY(GetDate()) ), 0) </code></pre> <p><strong>Get the date rfom 1 year ago</strong></p> <pre><code>DATEADD(m,-12,DATEADD(dd, DATEDIFF( dd, -1, GetDate() - DAY(GetDate()) ), 0)) </code></pre> http://stackoverflow.com/questions/10825/howto-compare-a-date-string-to-datetime-in-sql-server 5 HOWTO - Compare a date string to datetime in SQL Server? Guy 2008-08-14T09:14:07Z 2009-05-18T15:52:40Z <p>In SQL Server I have a DATETIME column which includes a time element.</p> <p>Example: </p> <pre><code>'14 AUG 2008 14:23:019' </code></pre> <p>What is the <strong>best</strong> method to only select the records for a particular day, ignoring the time part?</p> <p>Example: (Not safe, as it does not match the time part and returns no rows)</p> <pre><code>DECLARE @p_date DATETIME SET @p_date = CONVERT( DATETIME, '14 AUG 2008', 106 ) SELECT * FROM table1 WHERE column_datetime = @p_date </code></pre> <p><em>Note: Given this site is also about jotting down notes and techniques you pick up and then forget, I'm going to post my own answer to this question as DATETIME stuff in MSSQL is probably the topic I lookup most in SQLBOL.</em></p> <p><hr /></p> <p><strong>Update</strong> Clarified example to be more specific.</p> <p><hr /></p> <p><strong>Edit</strong> Sorry, But I've had to down-mod WRONG answers (answers that return wrong results).</p> <p>@Jorrit: <code>WHERE (date&gt;'20080813' AND date&lt;'20080815')</code> will return the 13th and the 14th.</p> <p>@wearejimbo: <em>Close, but no cigar!</em> badge awarded to you. You missed out records written at 14/08/2008 23:59:001 to 23:59:999 (i.e. Less than 1 second before midnight.)</p> http://stackoverflow.com/questions/862396/how-to-declare-asp-classic-constants-to-a-data-type 1 How to declare ASP classic constants to a data type? Guy 2009-05-14T09:27:16Z 2009-05-14T20:12:44Z <p>In asp classic and vbscript, you can declare a Const with a hexidecial value, and a date type value:</p> <pre><code> Const C_LIGHTCYAN = &amp;hCCFFEE Const C_STARTDATE = #1 JAN 2000# </code></pre> <p>But how can I declare currency, single or doubles data types?</p> <pre><code> Const C_LONG = 1024 '# I want this to be a LONG, not an INT! </code></pre> <p><em>I'm sure I've seen something like <code>Const C_LNG = L12345</code> or some other prefix/suffix combination for longs or doubles but can't find the source now</em></p> http://stackoverflow.com/questions/862834/how-to-stop-a-cpu-time-consuming-running-query-on-sql-server/862874#862874 1 Answer by Guy for How to stop a cpu/time consuming running query on SQL Server! Guy 2009-05-14T11:45:21Z 2009-05-14T11:45:21Z <p>You could roll-your-own solution here, or upgrade to SQL 2008.</p> <p><a href="http://msdn.microsoft.com/en-us/library/bb933866%28loband%29.aspx" rel="nofollow">Managing SQL Server Workloads with Resource Governor</a></p> http://stackoverflow.com/questions/852261/how-to-create-a-dump-in-oracle-in-pl-sql-developer/852545#852545 1 Answer by Guy for How to create a dump in oracle? (in pl/sql developer) Guy 2009-05-12T12:37:31Z 2009-05-12T12:37:31Z <p>EXP (export) and IMP (import) are the two tools you need. It's is better to try to run these on the command line and on the same machine.</p> <p><em>It can be run from remote, you just need to setup you TNSNAMES.ORA correctly and install all the developer tools with the same version as the database. Without knowing the error message you are experiencing then I can't help you to get exp/imp to work.</em></p> <p>The command to export a single user:</p> <pre><code>exp userid=dba/dbapassword OWNER=username DIRECT=Y FILE=filename.dmp </code></pre> <p>This will create the export dump file.</p> <p>To import the dump file into a different user schema, first create the newuser in SQLPLUS:</p> <pre><code>SQL&gt; create user newuser identified by 'password' quota unlimited users; </code></pre> <p>Then import the data:</p> <pre><code>imp userid=dba/dbapassword FILE=filename.dmp FROMUSER=username TOUSER=newusername </code></pre> <p><em>If there is a lot of data then investigate increasing the BUFFERS or look into expdp/impdp</em></p> <p>*Most common errors for exp and imp are setup. Check your PATH includes $ORACLE_HOME/bin, check $ORACLE_HOME is set correctly and check $ORACLE_SID is set*</p> http://stackoverflow.com/questions/833667/how-fast-should-a-dynamically-generated-web-page-be-created 1 How fast should a dynamically generated web page be created? Guy 2009-05-07T09:24:11Z 2009-05-07T11:48:07Z <p>I have a number data-driven web based applications that serve both internal and public users and would like to gauge how fast you would expect a page to be created (in milliseconds) in order to maintain user satisfaction and scalability.</p> <p>So, how fast does a page have be created to maintain a fast site?</p> <p>The sites are developed in ASP classic, with a SQL Server backend generating XML recordsets that I render using XSLT. Not the most efficient technique and pages take between 7ms to 120ms to create (i.e. Timer interval between first line of code and the 'Response.Write') depending on the complexity of the page. Slower pages are due to the database running bigger and more complex queries. Even if I re-wrote all the ASP classic to ASP.NET there will not be any significant improvement to the overall page render speed.</p> <p>I've often heard Jeff say he wants SO to be <a href="http://blog.stackoverflow.com/2009/02/server-speed-tests/" rel="nofollow">the fastest site</a>, and his blogs have discussed optimisation of his <a href="http://www.codinghorror.com/blog/archives/001218.html" rel="nofollow">code</a> and database but how far do you have to go in optimising your the code? Is shaving off milliseconds by using StringBuffer instead of String + String a good use of my time?</p> <p><strong>[Clarification]</strong></p> <p>At what point do you start to think "This page is taking too long to create?". Is it over 20ms, over 200ms or is it OK for a page to take over a second to build? What are your "target times?"</p> http://stackoverflow.com/questions/833329/is-there-a-standard-convention-for-the-ordering-of-columns-in-a-database-table-de/833520#833520 0 Answer by Guy for Is there a standard/convention for the ordering of columns in a database table definition? Guy 2009-05-07T08:45:39Z 2009-05-07T08:45:39Z <p>I agree with most of the posts above, primary key first (at least). The rest is personal preference. If you have a standard then keep to that standard.</p> <p>I do prefer to keep columns fairly logically together. Sometimes a fully normalised data structure is not appropriate so you have "minor entities" stored on the same table (i.e. not removing NULLs). An example would be the address fields, or the different telephone, mobile phone, work phone columns placed together.</p> <p>The most striking example I can give is HOW NOT TO DO IT. If a developer autogenerates a schema and the columns are created in alphabetical order (and even the PK was hidden in the middle of the table structure) then that is MOST annoying.</p> http://stackoverflow.com/questions/808356/how-to-determine-values-for-missing-months-based-on-data-of-previous-months-in-t/808557#808557 1 Answer by Guy for How to Determine Values for Missing Months based on Data of Previous Months in T-SQL Guy 2009-04-30T19:07:23Z 2009-04-30T19:07:23Z <p>I don't have access to BOL from my phone so this is a rough guide...</p> <p>First, you need to generate the missing rows for the months you have no data. You can either use a OUTER join to a fixed table or temp table with the timespan you want or from a programmatically created dataset (stored proc or suchlike)</p> <p>Second, you should look at the new SQL 2008 'analytic' funtions, like MAX(value) OVER ( partition clause ) to get the previous value. </p> <p>(I KNOW Oracle can do this 'cause I needed it to calculate compounded interest calcs between transaction dates - same problem really)</p> <p>Hope this points you in the right direction...</p> <p>(Avoid throwing it into a temp table and cursoring over it. Too crude!!!)</p> http://stackoverflow.com/questions/784900/why-do-no-databases-fully-support-ansi-or-iso-sql-standards/784982#784982 0 Answer by Guy for Why do no databases fully support ANSI or ISO SQL standards? Guy 2009-04-24T08:30:46Z 2009-04-24T08:30:46Z <p>IMHO, the DB vendors push forward the ANSI SQL standards to include new features &amp; constructs within their field much more than ANSI telling the DB vendors the "one true way".</p> <p>The DB market is driven by features, scalability and cost. It is not a commercial priority to forego and delay a technical advantage (i.e. partitioning, pivot, UPSERT, replication) by waiting for ANSI to ratify the syntax. By the time that has been done, there is already a significant installation of the proprietary syntax.</p> <p>That being said, most DB vendors have improved their core "ANSI SQL" support greatly in the last few years. (SQL Server with the SELECT FROM INFORMATION_SCHEMA and Oracle's ANSI joins actually working as well as native joins under the CBO)</p> http://stackoverflow.com/questions/784918/asmx-web-service-slow-first-request/784959#784959 1 Answer by Guy for ASMX Web Service slow first request. Guy 2009-04-24T08:20:46Z 2009-04-24T08:20:46Z <p>Not sure if this will solve slow spin up of the WS on the "very first time", as I assume there is a load of compiling and .net DLL's being loaded, but you can almost eliminate any future cold starts by ensuring the application pool the WS is in is configured correctly.</p> <p>By default, IIS6 has "respawn" on idle, after a number of minutes or "recycle" events that effectively restart the WS each time. If your happy the service is stable then these are not needed.</p> <p>Ensuring that the WS has it's own dedicated application pool (is not sharing an inappropriate pool) is also a strong recommendation.</p> http://stackoverflow.com/questions/779153/why-cant-i-shrink-a-transaction-log-file-even-after-backup/779314#779314 0 Answer by Guy for Why can't I shrink a transaction log file, even after backup? Guy 2009-04-22T21:29:01Z 2009-04-22T21:29:01Z <p>Put the DB back into Full mode, run the transaction log backup (not just a full backup) and then the shrink.</p> <p>After it's shrunk, you can put the DB back into simple mode and it txn log will stay the same size.</p> http://stackoverflow.com/questions/272765/howto-set-delegated-active-directory-privileges 0 HOWTO - Set delegated Active Directory privileges Guy 2008-11-07T17:06:50Z 2009-03-10T03:12:37Z <p>I've created a c# webservice that allows our front end support teams to view and update a few selected Active Directory values using system.directoryservices</p> <p>Fields that I want to update are [job] title, department, telephone and employeeid.</p> <p>I can use a service account with "delegates rights" to update [job] title, department, telephone etc. but when I try to update employeeid I get an "not authorised" error message.</p> <p>If I use a domain admin account then the same code works fine.</p> <p>I don't want to use a domain admin account for this webservice, so what privileges do I need?</p> http://stackoverflow.com/questions/627226/xslt-how-to-get-file-names-from-a-certain-directory/627292#627292 0 Answer by Guy for XSLT: How to get file names from a certain directory? Guy 2009-03-09T17:45:42Z 2009-03-09T17:45:42Z <p>You can't do that in native XSLT, but various implementations allow you to add extensions to the functionality.</p> <p>For example, in C# you can add a user defined URN:</p> <pre><code> &lt;xsl:stylesheet {snipped the usual xmlns stuff} xmlns:user="urn:user" &gt; </code></pre> <p>then use the functions within "user" </p> <pre><code> &lt;xsl:value-of select="user:getdirectory( @mydir )" /&gt; </code></pre> <p>within the C# you associate "user" to a C# class:</p> <pre><code> XSLThelper xslthelper = new XSLThelper( ); // your class here xslArgs.AddExtensionObject( "urn:user", xslthelper ); </code></pre> <p>and your class defines the "getdirectory" function:</p> <pre><code>public class XSLThelper { public string getdirectory(System.Xml.XPath.XPathNavigator xml, string strXPath, string strNULL) { //blah } } </code></pre> <p>Hugh amount of homework left here! <a href="http://msdn.microsoft.com/en-us/magazine/cc302079.aspx" rel="nofollow">MSDN Resource</a></p> http://stackoverflow.com/questions/561836/oracle-partition-by-keyword/561884#561884 12 Answer by Guy for Oracle "Partition By" Keyword Guy 2009-02-18T16:42:47Z 2009-03-09T15:26:38Z <p>The PARTITION BY clause sets the range of records that will be used for each "GROUP" within the OVER clause.</p> <p>(That didn't help very much did it!)</p> <p>In your example SQL, the column DEPT_COUNT will return the number of employees within that department for every employee record. (It's as if your de-nomalising the emp table - you still return every record in the emp table)</p> <pre><code>emp_no, dept_no, DEPT_COUNT 1, 10, 3 2, 10, 3 3, 10, 3 &lt;- three because there are three "dept_no = 10" records. 4, 20, 2 5, 20, 2 &lt;- two because there are two "dept_no = 20" records. </code></pre> <p>If there was another column for say, state, then you can count how many departments in that state.</p> <p>It's like being able get the results of a GROUP BY (SUM, AVG etc) without the aggregation of the result set.</p> <p>It's very useful when you use the "LAST OVER" or "MIN OVER" functions to get say, the lowest and highest salary in the department and then use that in a calulation against this records salary WITHOUT A SUB SELECT. Much faster.</p> <p>For more information see: <a href="http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:3170642805938" rel="nofollow">http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:3170642805938</a></p> <p>Hope this helps.</p> http://stackoverflow.com/questions/611304/how-many-lines-of-code-should-a-function-procedure-method-have/611373#611373 5 Answer by Guy for How many lines of code should a function/procedure/method have? Guy 2009-03-04T16:32:53Z 2009-03-04T16:32:53Z <p>Forty two, of course.</p> http://stackoverflow.com/questions/312552/looking-for-an-embeddable-sql-beautifier-or-reformatter/561979#561979 1 Answer by Guy for Looking for an embeddable SQL beautifier or reformatter Guy 2009-02-18T17:07:12Z 2009-02-18T17:07:12Z <p>Have you considered:</p> <p><a href="http://sqlinform.com/license.phtml" rel="nofollow">http://sqlinform.com/license.phtml</a></p> <p>They provide both an API version and a command line version (as well as an online version).</p> <p>No knowledge of costs though.</p> http://stackoverflow.com/questions/560711/query-performance-inner-join/561923#561923 1 Answer by Guy for Query Performance - Inner Join Guy 2009-02-18T16:53:49Z 2009-02-18T16:53:49Z <p>OK, </p> <ol> <li><p>Does the query actually WORK? No point trying to improve the performance of a query returning the wrong result sets.</p></li> <li><p>Do you have a list of test plans with known result sets that you can compare. SQL query improvement is a VERY good example of test driven development as it can be VERY easy to introduce bugs (wrong results) when re-structuring a query.</p></li> <li><p>Describe what you expect the query to do IN ENGLISH - give us a chance to understand the purpose of the query.</p></li> <li><p>Descrive your dataset (size, indexes, data distribution)</p></li> <li><p>What are your expectations? Should this query complete in 1 second, 1 minute, 1 hour? How long does it take? How many times does it get called (many times a second or once a week?)</p></li> </ol> <p>I don't think it's fair that your question is down modded - It's a valid question but just needs more information. Good Luck.</p> http://stackoverflow.com/questions/474591/which-are-the-sql-improvements-you-are-waiting-for/518458#518458 0 Answer by Guy for Which are the SQL improvements you are waiting for? Guy 2009-02-05T23:24:48Z 2009-02-05T23:24:48Z <p>SQL Server specific: </p> <p>Some decent date functions, like TRUNC. Improvements to full text searching (better control over matching logic)</p> <p>I would LOVE it if SQL server could store different databases within the same database and log files (shared FILEGROUPS) so I can backup the WHOLE server in one go.</p> <p>Full syntax and error checking of a stored procedure when I compile it (not only when I run it)</p> <p>Yes, this is starting to sound like "I want all the Oracle features in SQL Server without all the complexity (and cost!)"</p> http://stackoverflow.com/questions/28952/cpu-utilization-by-database/509201#509201 0 Answer by Guy for CPU utilization by database? Guy 2009-02-03T22:27:49Z 2009-02-03T22:27:49Z <p>Have you looked at SQL profiler?</p> <p>Take the standard "T-SQL" or "Stored Procedure" template, tweak the fields to group by the database ID (I think you have to used the number, you dont get the database name, but it's easy to find out using exec sp_databases to get the list)</p> <p>Run this for a while and you'll get the total CPU counts / Disk IO / Wait etc. This can give you the proportion of CPU used by each database.</p> <p>If you monitor the PerfMon counter at the same time (log the data to a SQL database), and do the same for the SQL Profiler (log to database), you <em>may</em> be able to correlate the two together.</p> <p>Even so, it should give you enough of a clue as to which DB is worth looking at in more detail. Then, do the same again with just that database ID and look for the most expensive SQL / Stored Procedures.</p> http://stackoverflow.com/questions/509048/sql-plus-change-current-directory/509080#509080 1 Answer by Guy for SQL Plus change current directory Guy 2009-02-03T21:58:26Z 2009-02-03T21:58:26Z <p>I don't think you can!</p> <pre><code>/home/export/user1 $ sqlplus / &gt; @script1.sql &gt; HOST CD /home/export/user2 &gt; @script2.sql </code></pre> <p>script2.sql has to be in <code>/home/export/user</code>.</p> <p>You either use the full path, or exit the script and start <code>sqlplus</code> again from the right directory.</p> <pre><code>#!/bin/bash oraenv . cd /home/export/user1 sqlplus / @script1.sql cd /home/export/user2 sqlplus / @script2.sql </code></pre> <p>(something like that - doing this from memory!)</p> http://stackoverflow.com/questions/417032/sql-reporting-services-why-does-my-report-shrink-when-its-emailed/417331#417331 0 Answer by Guy for SQL Reporting Services: Why does my report shrink when it's emailed? Guy 2009-01-06T17:03:52Z 2009-01-06T17:03:52Z <p>What report output format did you specify for the scheduled job? It seems to me you used HTML, which will autoscale depending on the output browser (HTML adapts).</p> <p>If having the same layout is important then use PDF as the output format. Then, if the user wants to print the report you know exactly what it will look like and that it will fit nicely on the page.</p> http://stackoverflow.com/questions/359384/how-do-you-determine-the-hardware-needed-for-a-server/359433#359433 0 Answer by Guy for How do you determine the hardware needed for a server? Guy 2008-12-11T14:00:00Z 2008-12-11T14:00:00Z <p>Another option is not to get a separate server for the DB, but to host the DB on an existing server. There are many different options for this from virtualisation (vmware, xen) or to dedicate a single server as a "back-end database server"</p> <p>It is unlikely with modern hardware that you will see significant CPU usage on a dedicated server.</p> <p>Server sprawl is expensive in the long term. Eventually that server will need upgrading and replacing. If you have to replace a few dozen (or a few hundred) it can be a nightmare.</p> http://stackoverflow.com/questions/359384/how-do-you-determine-the-hardware-needed-for-a-server/359413#359413 5 Answer by Guy for How do you determine the hardware needed for a server? Guy 2008-12-11T13:53:43Z 2008-12-11T13:53:43Z <p>It all depends on how much load is expected on the application. But as a minimum, I'd go for 2 x cpu or multi-core single cpu, at least 4GB RAM and a decent RAID controller. Depending on your performance and storage requirements - I'd start off with RAID 1 (Mirror) and extend that to RAID 10 (Mirrored stripes) across everything (SAME - Stripe and Mirror Everything).</p> <p>Get some decent network points too.</p> <p>That should at least give you enough headroom if you need to expand.</p> http://stackoverflow.com/questions/298293/which-single-book-should-every-manager-read/299429#299429 1 Answer by Guy for Which single book should every manager read? Guy 2008-11-18T17:14:57Z 2008-11-18T17:14:57Z <p>Anything by Terry Pratchett or Douglas Adams?</p> http://stackoverflow.com/questions/272765/howto-set-delegated-active-directory-privileges/272790#272790 2 Answer by Guy for HOWTO - Set delegated Active Directory privileges Guy 2008-11-07T17:13:11Z 2008-11-10T11:18:30Z <p><strong>ANSWER</strong></p> <p>*The ADS_SCHEMA_ID_GUID_USER GUID allows you to update the base user class details, including the employee id*</p> <p><a href="http://www.microsoft.com/technet/scriptcenter/topics/security/exrights.mspx" rel="nofollow">Based on MSDN article</a></p> <p>The vbscript used to grant to the service account user the selected delegated rights: </p> <pre><code>REM # REM # Delegate AD property set admin rights to named account REM # Based on: http://www.microsoft.com/technet/scriptcenter/topics/security/propset.mspx REM # Const TRUSTEE_ACCOUNT_SAM = "ad\ADStaffUpdates" Const ADS_ACETYPE_ACCESS_ALLOWED_OBJECT = &amp;H5 Const ADS_RIGHT_DS_READ_PROP = &amp;H10 Const ADS_RIGHT_DS_WRITE_PROP = &amp;H20 Const ADS_FLAG_OBJECT_TYPE_PRESENT = &amp;H1 Const ADS_FLAG_INHERITED_OBJECT_TYPE_PRESENT = &amp;H2 Const ADS_ACEFLAG_INHERIT_ACE = &amp;H2 Const ADS_SCHEMA_ID_GUID_USER = "{bf967aba-0de6-11d0-a285-00aa003049e2}" Const ADS_SCHEMA_ID_GUID_PS_PERSONAL = "{77b5b886-944a-11d1-aebd-0000f80367c1}" Const ADS_SCHEMA_ID_GUID_PS_PUBLIC = "{e48d0154-bcf8-11d1-8702-00c04fb96050}" ad_setUserDelegation "OU=USERS, DC=AD, DC=COM", TRUSTEE_ACCOUNT_SAM, ADS_SCHEMA_ID_GUID_PS_USER ad_setUserDelegation "OU=USERS, DC=AD, DC=COM", TRUSTEE_ACCOUNT_SAM, ADS_SCHEMA_ID_GUID_PS_PERSONAL ad_setUserDelegation "OU=USERS, DC=AD, DC=COM", TRUSTEE_ACCOUNT_SAM, ADS_SCHEMA_ID_GUID_PS_PUBLIC Function ad_setUserDelegation( _ ByVal strOU _ ,ByVal strTrusteeAccount _ ,ByVal strSchema_GUID _ ) Set objSdUtil = GetObject( "LDAP://" &amp; strOU ) Set objSD = objSdUtil.Get( "ntSecurityDescriptor" ) Set objDACL = objSD.DiscretionaryACL Set objAce = CreateObject( "AccessControlEntry" ) objAce.Trustee = strTrusteeAccount objAce.AceFlags = ADS_ACEFLAG_INHERIT_ACE objAce.AceType = ADS_ACETYPE_ACCESS_ALLOWED_OBJECT objAce.Flags = ADS_FLAG_OBJECT_TYPE_PRESENT OR ADS_FLAG_INHERITED_OBJECT_TYPE_PRESENT objAce.ObjectType = strSchema_GUID objACE.InheritedObjectType = ADS_SCHEMA_ID_GUID_USER objAce.AccessMask = ADS_RIGHT_DS_READ_PROP OR ADS_RIGHT_DS_WRITE_PROP objDacl.AddAce objAce objSD.DiscretionaryAcl = objDacl objSDUtil.Put "ntSecurityDescriptor", Array( objSD ) objSDUtil.SetInfo End Function Function ad_revokeUserDelegation( _ ByVal strOU _ ,ByVal strTrusteeAccount _ ) Set objSdUtil = GetObject( "LDAP://" &amp; strOU ) Set objSD = objSdUtil.Get( "ntSecurityDescriptor" ) Set objDACL = objSD.DiscretionaryACL For Each objACE in objDACL If UCase(objACE.Trustee) = UCase(strTrusteeAccount) Then objDACL.RemoveAce objACE End If Next objSDUtil.Put "ntSecurityDescriptor", Array(objSD) objSDUtil.SetInfo End Function </code></pre> http://stackoverflow.com/questions/272765/howto-set-delegated-active-directory-privileges/272777#272777 0 Answer by Guy for HOWTO - Set delegated Active Directory privileges Guy 2008-11-07T17:10:00Z 2008-11-07T17:10:00Z <p>A sample of the code (the moving parts at least)</p> <pre><code>string distinguishedname = "CN=Wicks\, Guy,OU=Users,DC=ad,DC=com" using (DirectoryEntry myDirectoryEntry = new DirectoryEntry(string.Format("LDAP://{0}", distinguishedname), null, null, AuthenticationTypes.Secure)) { try { myDirectoryEntry.Username = "serviceaccount"; myDirectoryEntry.Password = "pa55word"; myDirectoryEntry.Properties["employeeid"][0] = employeeID; myDirectoryEntry.CommitChanges(); setresult.result = myDirectoryEntry.Properties["employeeid"][0].ToString(); } catch ( Exception ex ) { setresult.result = ex.Message; } } // end using </code></pre> <p>(I do apologise for my c#)</p> http://stackoverflow.com/questions/126188/sql-server-and-oracle-which-one-is-better-in-terms-of-scalability/223663#223663 2 Answer by Guy for SQL Server and Oracle, which one is better in terms of scalability? Guy 2008-10-21T21:58:43Z 2008-10-21T21:58:43Z <p>When you get to OBSCENE database sizes (where over 1TB is really big enough, and 500TB is frigging massive), then operational support must come very high up on the list of requirements. With that much data, you don't mess about with penny pinching system specifications.</p> <p>How are you going to backup that size of system? Upgrade the OS and patch the database? Scalability and reliability a concern?</p> <p>I have experience of both Oracle and MS SQL, and for the really really big systems (users, data or importance) then Oracle is better designed for operational support and data management. </p> <p>Every tried to backup and restore a 1TB+ SQL Server database split over multiple databases on multiple instances with transaction log files being spat out everywhere by each database and trying to keep it all in sync? Good luck with that.</p> <p>With Oracle, you have ONE database (so I disagree with the "shared nothing" approach is better) with ONE set of REDO logs(1) and one set of archive logs(2) and you can just add extra hardware nodes without changing (i.e. repartitioning) you application and data.</p> <p>(1) Redo logs are, of course, mirrored. (2) Archive logs are, of course, stored in multiple locations.</p> http://stackoverflow.com/questions/1473624/business-logic-in-database-versus-code Comment by Guy on Business Logic in Database versus Code? Guy 2009-09-25T14:21:00Z 2009-09-25T14:21:00Z I'm a DBA. DATA logic should be in the database. The way you manipulate the database structures to perform the activities required by the functionality SHOULD BE held in the database. When you join up these activities into a larger series of processes (business logic) then THIS can be consolidated in the application. http://stackoverflow.com/questions/1477278/enhance-performance-of-large-slow-dataloading-query Comment by Guy on Enhance performance of large slow dataloading query Guy 2009-09-25T14:02:09Z 2009-09-25T14:02:09Z Your going to run those functions for ALL 1,000,000 records? Yes, it's going to take some time to run - certainly not in milliseconds is it. What are your expectations? http://stackoverflow.com/questions/1477278/enhance-performance-of-large-slow-dataloading-query/1477303#1477303 Comment by Guy on Enhance performance of large slow dataloading query Guy 2009-09-25T14:00:22Z 2009-09-25T14:00:22Z (-1) Use Set based SQL - not record by record. Try to use native SQL functions which are fast. Use the DB as a DB - it is built for joins / updates / queries. Don't think that you can rewite the database in your our programming skills. http://stackoverflow.com/questions/1332778/what-are-your-most-common-sql-optimizations/1332834#1332834 Comment by Guy on What are your most common sql optimizations? Guy 2009-08-26T10:45:14Z 2009-08-26T10:45:14Z RUZZ - Why? You've given a list of unqualified statements with no explanation. If people are to learn &quot;the right way to use SQL&quot; then you must educate them. (I agree with most of your statements, but as a DBA I understand them. Novice developers probably don't.) http://stackoverflow.com/questions/1006976/oracle-query-with-multiple-subqueries Comment by Guy on oracle query with multiple subqueries Guy 2009-06-17T14:18:18Z 2009-06-17T14:18:18Z You need to give more detail of the source tables (and data) and what you are expecting the results to look like. I'd also be specific about the Oracle version. Later versions implement a &quot;PIVOT&quot; clause to convert &quot;rows&quot; into &quot;columns&quot;. http://stackoverflow.com/questions/485800/algorithm-for-drawing-an-anti-aliased-circle/485826#485826 Comment by Guy on Algorithm for drawing an anti-aliased circle? Guy 2009-05-20T15:56:48Z 2009-05-20T15:56:48Z I actually found this comment useful as I DID need to know how to do this in .NET http://stackoverflow.com/questions/887985/create-png-image-with-c-httphandler-webservice/888039#888039 Comment by Guy on Create PNG image with C# HttpHandler webservice Guy 2009-05-20T15:38:36Z 2009-05-20T15:38:36Z Finally got it! Use context.Response.BinaryWrite(buffer); Lloyd, if you can correct the typo's in your answer then you get the points!!! http://stackoverflow.com/questions/887985/create-png-image-with-c-httphandler-webservice/888039#888039 Comment by Guy on Create PNG image with C# HttpHandler webservice Guy 2009-05-20T14:30:07Z 2009-05-20T14:30:07Z Thanks - got it! Also minor typo on the Response.ContentType and ImageFormat.Png Now just need to get it to draw something / anything... http://stackoverflow.com/questions/887985/create-png-image-with-c-httphandler-webservice/888040#888040 Comment by Guy on Create PNG image with C# HttpHandler webservice Guy 2009-05-20T14:18:21Z 2009-05-20T14:18:21Z Sorry, I may have my terminology wrong (or not accurate enough for a technical community) I take it .asmx is to return xml content? I'd not heard of ashx before now. http://stackoverflow.com/questions/887985/create-png-image-with-c-httphandler-webservice/888096#888096 Comment by Guy on Create PNG image with C# HttpHandler webservice Guy 2009-05-20T14:14:22Z 2009-05-20T14:14:22Z Ha! I've been studying your question for the last hour. If I can just get some of the &quot;simple stuff&quot; right then I'm sure I can finished this off with even my numpty C# knowledge. http://stackoverflow.com/questions/887985/create-png-image-with-c-httphandler-webservice/888070#888070 Comment by Guy on Create PNG image with C# HttpHandler webservice Guy 2009-05-20T14:12:28Z 2009-05-20T14:12:28Z It's for internal / intranet use only, but caching will have to be implemented! Thanks. http://stackoverflow.com/questions/862396/how-to-declare-asp-classic-constants-to-a-data-type/862421#862421 Comment by Guy on How to declare ASP classic constants to a data type? Guy 2009-05-14T09:55:15Z 2009-05-14T09:55:15Z There are currency data types: <a href="http://msdn.microsoft.com/en-gb/library/9e7a57cf(VS.85,loband).aspx" rel="nofollow">msdn.microsoft.com/en-gb/library/&hellip;</a> I like &quot;fingers crossed&quot;. I've gotfar too used to that that now... http://stackoverflow.com/questions/833667/how-fast-should-a-dynamically-generated-web-page-be-created/833770#833770 Comment by Guy on How fast should a dynamically generated web page be created? Guy 2009-05-07T10:13:35Z 2009-05-07T10:13:35Z One of the reasons I raised this question was all the flack people give to &quot;slow&quot; frameworks like asp classic, Rails, Ruby etc. is to discuss &quot;how fast does it need to be?&quot; http://stackoverflow.com/questions/833667/how-fast-should-a-dynamically-generated-web-page-be-created/833723#833723 Comment by Guy on How fast should a dynamically generated web page be created? Guy 2009-05-07T10:03:14Z 2009-05-07T10:03:14Z (sorry about formatting above) - The Yahoo document is very good, and it does seem to be the case that you can improve the overall perception of performance by spending quality time on the &quot;networking&quot; aspect of the site. The actual HTML page render time is relatively trivial... http://stackoverflow.com/questions/833667/how-fast-should-a-dynamically-generated-web-page-be-created/833723#833723 Comment by Guy on How fast should a dynamically generated web page be created? Guy 2009-05-07T09:58:11Z 2009-05-07T09:58:11Z &lt;snipped from the Yahoo document&gt; Flush the Buffer Early When users request a page, it can take anywhere from 200 to 500ms for the backend server to stitch together the HTML page. During this time, the browser is idle as it waits for the data to arrive. A good place to consider flushing is right after the HEAD because the HTML for the head is usually easier to produce and it allows you to include any CSS and JavaScript files for the browser to start fetching in parallel while the backend is still processing.