User BelowNinety - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T13:35:50Z http://stackoverflow.com/feeds/user/5466 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1779537/subsonic-simple-repository-string-lengths 0 Subsonic Simple Repository String Lengths BelowNinety 2009-11-22T18:36:28Z 2009-11-26T11:00:05Z <p>I'm playing around with the SimpleRepository provider (with automigrations) in SubSonic 3 and I have an annoying problem:</p> <p>The only way I can control the string length in my database tables is by adding the SubSonicStringLength or SubSonicLongString attributes to the properties of the objects that need to be persisted. </p> <p>I don't really want a dependency on SubSonic anywhere except in my repository class, and certainly not in my model objects if I can avoid it.</p> <p>Are there anyways to get round this or am I stuck using SubSonicStringLength and the other attributes?</p> http://stackoverflow.com/questions/568606/how-to-check-if-c-project-installation-path-exists/1525762#1525762 0 Answer by BelowNinety for How to check if c# project installation path exists BelowNinety 2009-10-06T13:56:56Z 2009-10-06T13:56:56Z <p>You can get the path of the folder that you are installing to from </p> <p><code>Context.Parameters["targetdir"]</code></p> <p>So you can check that is empty before installing. Obviously that won't tell you if there are other versions installed elsewhere.</p> http://stackoverflow.com/questions/944814/calling-a-function-more-than-once-in-jquery/944848#944848 2 Answer by BelowNinety for Calling a function more than once in jQuery BelowNinety 2009-06-03T13:46:22Z 2009-06-03T13:46:22Z <pre><code>$('.nav').ready(function() { go(); go(); go(); }); </code></pre> <p>Should call it three times.</p> http://stackoverflow.com/questions/925301/set-report-field-value-in-crystal-reports/925385#925385 1 Answer by BelowNinety for Set report field value in crystal reports BelowNinety 2009-05-29T10:40:10Z 2009-05-29T10:40:10Z <p>All you need in the formula is </p> <pre><code>{Tablename.Fieldname}=2 </code></pre> http://stackoverflow.com/questions/921955/easily-find-one-stored-procedure-in-sql-server-management-studio-from-1000-in-tre/921976#921976 0 Answer by BelowNinety for Easily find one stored procedure in SQL Server Management Studio from 1000 in treeview? BelowNinety 2009-05-28T16:52:18Z 2009-05-28T16:52:18Z <p>In Management Studio 2005 you can right click on the stored procedures folder (and other folders too) to set a filter, then you can type in all, or part, of the names that you are looking for.</p> <p>If you just want to know details of parameters (or rows for a table etc.) then in a query window you can type the objects name, highlight it, and press alt-F1 to call sp_Help on the object.</p> http://stackoverflow.com/questions/920176/forcing-other-persons-files-to-checkin-using-sourcesafe-2005/920205#920205 4 Answer by BelowNinety for Forcing other persons files to checkin using Sourcesafe 2005 BelowNinety 2009-05-28T10:35:48Z 2009-05-28T10:35:48Z <p>You can't get his updates back - they have gone with his PC*.</p> <p>You can use VSS admin to undo his checkouts so that you can carry on working with the files.</p> <p>*Unless you have backups.</p> http://stackoverflow.com/questions/911426/get-all-files-from-vss-for-a-given-date/911488#911488 5 Answer by BelowNinety for Get all files from VSS for a given date? BelowNinety 2009-05-26T16:06:39Z 2009-05-26T16:06:39Z <p>As far as I know you have to use the <a href="http://msdn.microsoft.com/en-us/library/661w6e3d%28VS.80%29.aspx" rel="nofollow">get</a> command at a command prompt, not the gui. Something like this should do:</p> <pre><code>ss Get "$/AFolder" -R -Vd15-03-2009;2:00a </code></pre> <p>The -R option makes the get recursive and the -vd option gets the version at the specified date.</p> http://stackoverflow.com/questions/907819/stored-procedure-parses-correctly-but-will-not-execute-invalid-object-name-ms/907832#907832 4 Answer by BelowNinety for Stored procedure parses correctly but will not execute. Invalid object name. Msg 208 BelowNinety 2009-05-25T19:43:13Z 2009-05-25T19:43:13Z <p>Looks like it might not exist yet, swap the Alter to a Create.</p> http://stackoverflow.com/questions/893455/asp-net-mvc-inserting-form-values-into-a-viewmodel/893587#893587 2 Answer by BelowNinety for ASP.NET MVC inserting form values into a ViewModel BelowNinety 2009-05-21T15:37:28Z 2009-05-21T16:16:15Z <p>You can use <a href="http://msdn.microsoft.com/en-us/library/dd470185.aspx" rel="nofollow">UpdateModel</a> or <a href="http://msdn.microsoft.com/en-us/library/dd470756.aspx" rel="nofollow">TryUpdateModel</a> in your controller. </p> <p>I recommend using one of the overloads in which you specify the fields to be updated.</p> <p>This is discussed in detail on page 78 of the <a href="http://aspnetmvcbook.s3.amazonaws.com/aspnetmvc-nerdinner%5Fv1.pdf" rel="nofollow">Wrox Professional ASP.net</a> ebook (or echapter!)</p> http://stackoverflow.com/questions/893169/tsql-math-across-multiple-dates-in-a-table/893271#893271 0 Answer by BelowNinety for tsql math across multiple dates in a table BelowNinety 2009-05-21T14:40:01Z 2009-05-21T14:40:01Z <p>You can use a subquery to perform the calcuation, the only problem is what do you do with the first month because there is no previous DandA value. Here I've set it to 0 using isnull. The query looks like</p> <pre><code>Update MyTable Set EarnedIncome = DandA + Coupon - IsNull( Select Top 1 DandA From MyTable2 Where MyTable.EOMDate &gt; MyTable2.EOMDate Order by MyTable2.EOMDate desc), 0) </code></pre> <p>This also assumes that you only have one record per month in each table, and that there are't any gaps between months.</p> http://stackoverflow.com/questions/892351/sql-server-2005-and-temporary-table-scope/892408#892408 2 Answer by BelowNinety for SQL Server 2005 and temporary table scope BelowNinety 2009-05-21T11:12:04Z 2009-05-21T11:12:04Z <p>The temporary table will be accesible to the instance of the procedure that creates it</p> <p>The following script </p> <pre><code>Exec ('Select 1 as col Into #Temp Select * From #Temp') Exec ('Select 2 as col Into #Temp Select * From #Temp') </code></pre> <p>Returns </p> <pre><code>Col 1 Col 2 </code></pre> <p>Not </p> <pre><code>Col 1 2 </code></pre> <p>Or an error because the table already exists.</p> <p>The temporary table will also be accesible by any 'child' procedures that the initial procedure runs as well.</p> http://stackoverflow.com/questions/892136/how-do-i-pass-a-string-to-a-partial-view-in-asp-net-mvc/892155#892155 2 Answer by BelowNinety for How do I pass a string to a partial view in ASP.NET MVC? BelowNinety 2009-05-21T09:48:37Z 2009-05-21T09:59:05Z <p>You will need to have the searched text available as part of the model that is returned to the view. Then you have two options - </p> <p>Using the RenderPartial will pass the returned view to the partial view so you can access the value you want from there.</p> <pre><code>Html.RenderPartial("PartialView"); </code></pre> <p>Alternatively, you can pass the string as the model for the partial view using </p> <pre><code>Html.RenderPartial("PartialView", Model.SearchedText); </code></pre> <p>Which might make sense if you want to use the no results partial view with different models.</p> http://stackoverflow.com/questions/226859/disadvantage-of-stored-procedures/881817#881817 1 Answer by BelowNinety for Disadvantage of stored procedures BelowNinety 2009-05-19T09:33:55Z 2009-05-19T09:39:02Z <p>Disadvantages</p> <ul> <li>Source control can be a pain.</li> <li>Debugging is hard.</li> <li>If you have a lot of functionality in procs it will making swapping between different database systems harder - It also creates more work if you want to support different database systems.</li> <li>Developing stored procedures can be a fairly specialised task, especially as they get more complex.</li> </ul> http://stackoverflow.com/questions/551807/do-junior-devs-work-on-commercial-projects-or-do-they-do-maintenance-at-a-small-s/551856#551856 0 Answer by BelowNinety for Do junior devs work on commercial projects or do they do maintenance at a small scale? BelowNinety 2009-02-15T23:42:48Z 2009-02-15T23:51:50Z <p>There aren't really any hard and fast rules. My first job was working for a small company and I was working on production code straight away which was great for me because I was confident (or cocky) enough to handle it.</p> <p>One thing I can say for certain is that, unfortunately, being the new guy you will often get given the work that no one else wants to do*. A lot of the time this will be maintenance, or support, or repetetive tasks. This is a fact of life in most jobs, but as long as you can prove that you have some ability it won't last for ever. </p> <p>*I hope this would be less likely to happen in a placement/graduate scheme like you linked to but I'm not sure - I've worked for companies where placement student is another name for tester/phone answerer/tea maker.</p> http://stackoverflow.com/questions/547944/need-some-help-with-a-simple-sql-query/547985#547985 -1 Answer by BelowNinety for Need some help with a simple SQL query. BelowNinety 2009-02-13T22:45:09Z 2009-02-13T22:45:09Z <p>You will need a timestamp column and you'll need to write a query that joins the table to itself like this</p> <pre><code>Select * From Userdata U Where 1 = (Select Top 1 StateType From Userdata U2 Where U.UserId = U2.UserId order by u2.TimeStamp desc) </code></pre> http://stackoverflow.com/questions/547877/cant-figure-out-why-application-is-redirecting-to-login-page/547895#547895 2 Answer by BelowNinety for Can't figure out why application is redirecting to login page BelowNinety 2009-02-13T22:11:01Z 2009-02-13T22:11:01Z <p>Sounds like it could be forms authentication in effect. </p> <p>In the web.config file change the authentication mode value to <code>none</code> and see if that makes a difference.</p> <pre><code>&lt;authentication mode="none" /&gt; </code></pre> http://stackoverflow.com/questions/547693/sql-date-search-without-time/547831#547831 0 Answer by BelowNinety for SQL Date Search without time BelowNinety 2009-02-13T21:49:51Z 2009-02-13T21:49:51Z <p>The first thing to do is to remove the times from the dates. If you want to do this in the sql server code you can use something like the code below. I have this as a function on all the databases I work on</p> <pre><code>cast(floor(cast(@fromdate as float)) as datetime) </code></pre> <p>The next thing to worry about is the where criteria. You need to make sure you select everything from the start of the from date to the end of the to date. You also need to make sure queries for one day will work which you can do with a date add like this</p> <pre><code>Where LogTime &gt;= @fromdate and LogTime &lt; DateAdd(dd, 1, @todate) </code></pre> http://stackoverflow.com/questions/469799/what-are-the-appropriate-uses-for-ms-access/470348#470348 2 Answer by BelowNinety for What are the appropriate uses for MS Access? BelowNinety 2009-01-22T18:46:38Z 2009-01-22T18:46:38Z <p>It's ability to access and query data from a range of sources can be really handy. You can link to text files, Sql Server and Oracle etc. at the same time which can be really helpful when doing data conversions and the like.</p> http://stackoverflow.com/questions/398747/can-you-limit-the-number-of-rows-in-a-database-table/400764#400764 0 Answer by BelowNinety for Can you limit the number of rows in a (database) table? BelowNinety 2008-12-30T16:34:24Z 2008-12-30T16:34:24Z <p>Keeping a version number for the database makes total sense. However I prefer to have a Version table that can contain multiple rows with fields for the version number, the time the update occured and the user that performed the upgrade.</p> <p>That way you know which upgrade scripts have been run and can easily see if they have been run out of sequence. </p> <p>When you want to read the current version number you can just read the most recent record.</p> <p>If you only store one record you have know way of knowing if a script has been missed out. If you want to be really clever you can put checks in you upgrade scripts so they won't run unless the previous version of the database is correct.</p> http://stackoverflow.com/questions/91688/what-are-the-differencespros-cons-between-clustered-and-non-clustered-indexes/91725#91725 10 Answer by BelowNinety for What are the differences(pros/cons) between clustered and non-clustered indexes BelowNinety 2008-09-18T11:20:23Z 2008-09-18T11:25:27Z <p>Clustered Index</p> <ul> <li>Only one per table</li> <li>Faster to read than non clustered as data is physically stored in index order</li> </ul> <p>Non Clustered Index</p> <ul> <li>Can be used many times per table</li> <li>Quicker for insert and update operations than a clustered index</li> </ul> <p>Both types of index will improve performance when select data with fields that use the index but will slow down update and insert operations.</p> <p>Because of the slower insert and update clustered indexes should be set on a field that is normally incremental ie Id or Timestamp.</p> <p>SQL Server will normally only use an index if its selectivity is above 95% (ie 95% of the records are unique values).</p> http://stackoverflow.com/questions/84912/what-is-the-easiest-or-fastest-way-to-make-css-render-the-same-in-all-browsers/84929#84929 4 Answer by BelowNinety for What is the easiest or fastest way to make CSS render the same in all browsers BelowNinety 2008-09-17T16:15:39Z 2008-09-17T16:15:39Z <p>The <a href="http://developer.yahoo.com/yui/base/" rel="nofollow">Yahoo css foundation</a> will help. To standardise formatting you will want reset and base.</p> http://stackoverflow.com/questions/84127/finding-errors-warnings-in-visual-studio/84201#84201 0 Answer by BelowNinety for Finding errors / warnings in Visual Studio BelowNinety 2008-09-17T15:03:54Z 2008-09-17T15:03:54Z <p>This sounds strange - Rebuild should build everything regardless of changes and Build should only build things that have changed. </p> <p>The behaviour you've described should only happen if you have modified something that is referenced by the unchanged file so that it is now incorrect. </p> http://stackoverflow.com/questions/81905/transact-sql-to-sum-up-elapsed-time/82100#82100 1 Answer by BelowNinety for Transact-SQL to sum up elapsed time BelowNinety 2008-09-17T11:15:34Z 2008-09-17T11:15:34Z <p>The following will work for SQL Server, other databases use different functions for date calculation and getting the current time.</p> <pre><code>Select Case When (Stop &lt;&gt; '31 Dec 9999') Then DateDiff(mi, Start, Stop) Else DateDiff(mi, Start, GetDate()) End From ATable </code></pre> http://stackoverflow.com/questions/64117/fastest-way-to-delete-all-the-data-in-a-large-table/64133#64133 1 Answer by BelowNinety for Fastest way to delete all the data in a large table BelowNinety 2008-09-15T15:50:21Z 2008-09-15T15:55:31Z <p>On SQL Server you can use the <code>Truncate Table</code> command which is faster than a regular delete and also uses less resources. It will reset any identity fields back to the seed value as well.</p> <p>The drawbacks of truncate are that it can't be used on tables that are referenced by foreign keys and it won't fire any triggers. Also you won't be able to rollback the data if anything goes wrong.</p> http://stackoverflow.com/questions/44780/whats-the-best-way-to-implement-a-sql-script-that-will-grant-select-references/52897#52897 1 Answer by BelowNinety for What's the best way to implement a SQL script that will grant select, references, insert, update, and delete permissions to a database role on all the user tables in a database? BelowNinety 2008-09-09T21:02:06Z 2008-09-15T13:31:25Z <p>There's an undocumented MS procedure called sp_MSforeachtable that you could use which is definately in 2000 and 2005. </p> <p>To grant select permissions the usage would be: </p> <pre><code>exec sp_MSforeachtable @command1=' Grant Select on ? to RoleName' </code></pre> <p>To grant the other permissions either have a new statement for each one or just add them to the command like this: </p> <pre><code>exec sp_MSforeachtable @command1=' Grant Select on ? to RoleName; Grant Delete on ? to RoleName;' </code></pre> <p>With a bit of playing around it might be possible to turn the role name into a parameter as well.</p> http://stackoverflow.com/questions/62137/what-is-a-covered-index 3 What is a Covered Index? BelowNinety 2008-09-15T10:45:57Z 2008-09-15T10:56:08Z <p>I've just heard the term covered index in some database discussion - what does it mean?</p> http://stackoverflow.com/questions/61967/is-there-a-way-to-loop-through-a-table-variable-in-tsql-without-using-a-cursor/62130#62130 2 Answer by BelowNinety for Is there a way to loop through a table variable in TSQL without using a cursor? BelowNinety 2008-09-15T10:42:15Z 2008-09-15T10:42:15Z <p>First of all you should be absolutely sure you need to iterate through each row - set based operations will perform faster in every case I can think of and will normally use simpler code.</p> <p>Depending on your data it may be possible to loop just using select statements as shown below:</p> <pre><code>Declare @Id int While (Select Count(*) From ATable Where Processed = 0) &gt; 0 Begin Select Top 1 @Id = Id From ATable --Do some processing here Update ATable Set Processed = 1 Where Id = @Id End </code></pre> <p>Another alternative is to use a temporary table: </p> <pre><code>Select * Into #Temp From ATable Declare @Id int While (Select Count(*) From #Temp) &gt; 0 Begin Select Top 1 @Id = Id From #Temp --Do some processing here Delete #Temp Where Id = @Id End </code></pre> <p>The option you should choose really depends on the structure and volume of your data.</p> http://stackoverflow.com/questions/59425/how-do-i-find-records-added-to-my-database-table-in-the-past-24-hours/59443#59443 2 Answer by BelowNinety for How do I find records added to my database table in the past 24 hours? BelowNinety 2008-09-12T16:29:10Z 2008-09-12T16:29:10Z <p>The SQL Server query is:</p> <pre><code>Select * From Messages Where MessageTime &gt; DateAdd(dd, -1, GetDate()) </code></pre> <p>As far as I can tell the (untested!) MySQL equivalent is</p> <pre><code>Select * From Messages Where MessageTime &gt; ADDDATE(NOW(), INTERVAL -1 DAY) </code></pre> http://stackoverflow.com/questions/59297/when-why-to-use-cascading-in-sql-server/59381#59381 2 Answer by BelowNinety for When/Why to use Cascading in SQL Server? BelowNinety 2008-09-12T15:51:59Z 2008-09-12T15:51:59Z <p>I do a lot of database work and rarely find cascade deletes useful. The one time I have used them effectively is in a reporting database that is updated by a nightly job. I make sure that any changed data is imported correctly by deleting any top level records that have changed since the last import, then reimport the modified records and anything that relates to them. It save me from having to write a lot of complicated deletes that look from the bottom to the top of my database. </p> <p>I don't consider cascade deletes to be quite as bad as triggers as they only delete data, triggers can have all kinds of nasty stuff inside.</p> <p><strong>In general I avoid real Deletes altogether and use logical deletes (ie. having a bit column called isDeleted that gets set to true) instead.</strong></p> http://stackoverflow.com/questions/57243/finding-missing-emails-in-sql-server/57716#57716 0 Answer by BelowNinety for Finding missing emails in SQL Server BelowNinety 2008-09-11T21:32:45Z 2008-09-11T22:21:23Z <p>You could use <code>exists</code> instead of <code>in</code> like this:</p> <pre><code>Select J.Email From Jobseeker j Where not exists (Select * From aspnetMembership a where j.email = a.email) </code></pre> <p>You should get better performance and avoid the 'weird' behaviour (which I suspect is to do with null values/results) when using <code>in</code>. </p> http://stackoverflow.com/questions/907819/stored-procedure-parses-correctly-but-will-not-execute-invalid-object-name-ms/907832#907832 Comment by BelowNinety on Stored procedure parses correctly but will not execute. Invalid object name. Msg 208 BelowNinety 2009-05-25T19:49:05Z 2009-05-25T19:49:05Z Happens to us all! http://stackoverflow.com/questions/547877/cant-figure-out-why-application-is-redirecting-to-login-page/547895#547895 Comment by BelowNinety on Can't figure out why application is redirecting to login page BelowNinety 2009-02-13T22:54:28Z 2009-02-13T22:54:28Z A quick google says it would but the question is about identifying the cause for the redirect. http://stackoverflow.com/questions/100504/what-is-the-sql-command-to-return-the-field-names-of-a-table/100513#100513 Comment by BelowNinety on What is the SQL command to return the field names of a table? BelowNinety 2008-09-19T08:46:49Z 2008-09-19T08:46:49Z The Information Schema are available in SQL Server 2000 as well.