User digiguru - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T04:06:11Z http://stackoverflow.com/feeds/user/5055 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/316757/uk-vat-change-from-17-5-to-15-how-will-this-affect-your-code 13 UK Vat change from 17.5 to 15% - How will this affect your code? digiguru 2008-11-25T09:02:40Z 2009-12-18T12:18:42Z <p>The UK VAT system is changing from 17.5% to 15%. What strategies have you used in your code to store the VAT, and how will the change affect your applications. Do you store a history of vats so you can calculate old prices, or are old invoices stored in a separate table? Is it a simple config setting, or did you bodge it? What's the ideal way to store VAT?</p> http://stackoverflow.com/questions/1881507/does-internet-explorer-7-honour-the-vary-header-by-caching-properly 0 Does internet Explorer 7 honour the Vary header by caching properly? digiguru 2009-12-10T14:57:28Z 2009-12-10T15:37:15Z <p>I'm using a technique similar to <a href="http://www.west-wind.com/Weblog/posts/10564.aspx" rel="nofollow">Rick Strahls example</a>, but have notcied using google's speed tracer that </p> <blockquote> <p>Resource Caching : @10.88s - The following resources specify a "Vary" header that disables caching in most versions of Internet Explorer. Fix or remove the "Vary" header for the following resources: ...</p> </blockquote> <p>The question is Which versions of internet explorer? If I include a way of only outputting Vary for all browsers except early version of internet explorer, will this get resolved?</p> <pre><code>If AllowsCacheingOnVaryHeader() Then Response.AppendHeader("Vary", "Content-Encoding") Response.AppendHeader("Vary", "Accept-Encoding") End If </code></pre> <p>In the function "AllowsCacheingOnVaryHeader()" - what exactly should I be checking for? All version of IE prior to 7, 8 or 9?</p> http://stackoverflow.com/questions/796936/web-application-project-reference-tag 0 Web Application Project @Reference tag digiguru 2009-04-28T09:09:26Z 2009-12-07T19:17:50Z <p>I am converting a web site project to a web application project in VS 2008 and i've run across a query regarding dynamically loading user controls.</p> <pre><code>&lt;%@ Reference Control="~/UserControls/MyUserControl.ascx" %&gt; </code></pre> <p>and then in the page I simply called...</p> <pre><code>Dim ucSupplierDetails As New ASP.usercontrols_myusercontrol_ascx </code></pre> <p>Sadly when updateing to a web applciation project, this is no longer a valid line. Is there an alternative? </p> http://stackoverflow.com/questions/1833176/how-do-you-use-an-ampersand-in-an-httpcookie-in-vb-net 0 How do you use an Ampersand in an HTTPCookie in VB.NET? digiguru 2009-12-02T14:19:29Z 2009-12-02T14:26:42Z <p>I have a cookie saved to the user as follows...</p> <pre><code>Dim searchCookie As HttpCookie = New HttpCookie("SearchCriteria") searchCookie.Item("SearchText") = FullSearchCriteria.SearchText searchCookie.Item("SearchType") = FullSearchCriteria.SearchType </code></pre> <p>The SearchText stores a value they have input in a previous page. We have observed if there is an ampersand in the cookie (eg Tyne &amp; Wear), then the cookie doesn't save subsequent values (SearchType).</p> <p>What happens is the cookie is output like this:</p> <pre><code>SearchText=Tyne &amp; </code></pre> <p>Obviously the ampersand is confusing the cookie. Is there a way to prevent this happening?</p> http://stackoverflow.com/questions/1833176/how-do-you-use-an-ampersand-in-an-httpcookie-in-vb-net/1833202#1833202 0 Answer by digiguru for How do you use an Ampersand in an HTTPCookie in VB.NET? digiguru 2009-12-02T14:23:12Z 2009-12-02T14:23:12Z <p>D'oh! I'm such a dork...</p> <pre><code>Dim searchCookie As HttpCookie = New HttpCookie("SearchCriteria") searchCookie.Item("SearchText") = HttpContext.Current.Server.UrlEncode(FullSearchCriteria.SearchText) searchCookie.Item("SearchType") = HttpContext.Current.Server.UrlEncode(FullSearchCriteria.SearchType) </code></pre> http://stackoverflow.com/questions/1809709/how-do-you-refresh-an-advert-served-by-google-ad-manager-after-a-javascript-event 1 How do you refresh an advert served by Google Ad Manager after a javascript event (eg ajax postback) has occured on a webpage digiguru 2009-11-27T16:41:31Z 2009-11-27T18:12:04Z <p>I want to be able to re trigger the loading of an embedded admanager advert on the page after a user has clicked an ajax link on the page (effectively showing them a new page, so it's a genuine attempt to show another impression).</p> <p>Preferably I want a solution that doesn't put adverts in an iFrame, uses jquery to perform the client side action.</p> http://stackoverflow.com/questions/892015/whats-a-good-net-sql-server-ecommerce-store-that-i-can-integrate-existing-logins 0 Whats a good .net sql server ecommerce store that I can integrate existing logins into the customer databse, and import some 3000 products with realtive ease (from an Erol store) digiguru 2009-05-21T09:10:06Z 2009-11-27T00:00:06Z <p>I need a quick list of stores and why you think they are the best.</p> http://stackoverflow.com/questions/221051/how-do-i-remove-a-folder-from-windows-distributed-file-system 0 How do I remove a folder from Windows Distributed File System? digiguru 2008-10-21T07:28:23Z 2009-11-05T06:00:05Z <p>We recently moved to a webfarm and setup dfs, only to find a beta application was creating files like there was no tomorrow. 1.2 million files were replicated across the farm, and since then we have prevented the application from creating new files, but every time we try to remove the files, it replaces them on each server because of replication. The process of replacing them actually causes to server to run slowly and in some cases stall.</p> <p>Is there any way we can stop replication at a folder level?</p> http://stackoverflow.com/questions/1532614/when-will-ie6-die 0 When will ie6 die? [closed] digiguru 2009-10-07T16:11:06Z 2009-10-07T16:14:15Z <p>It should be possible using global usage stats on all websites to accurately predict IE6 will be used by less than 1% of online users, so that developers can stop developing exceptions to make things work in ie6, and bloating the page.</p> <p>Is there a way to find out global usage stats, and if so when will IE6 be a truly minority browser?</p> http://stackoverflow.com/questions/77664/sql-server-compatibility-mode 1 Sql Server compatibility mode digiguru 2008-09-16T22:00:46Z 2009-10-07T13:02:02Z <p>We're currently running a server on Compatability mode 8 and I want to update it. </p> <ul> <li>What are the implications of just going in and changing it? </li> <li>What is likely to break? </li> <li>Is there anything that checks the data will survive before I perform it? </li> <li>Can I rollback to mode 8 without performing a restore and without loss of data?</li> </ul> http://stackoverflow.com/questions/1328986/is-there-a-way-to-tell-when-googlebot-bingbot-yahoobot-is-crawling-my-site-in-asp 1 Is there a way to tell when googlebot/bingbot/yahoobot is crawling my site in asp.net 2005 IIS6? digiguru 2009-08-25T15:20:55Z 2009-08-25T15:29:07Z <p>I want to know when google is crawling the site, preferably by sending myself an email.</p> <p>Is there any way to do this that won't adversely effect performance?</p> http://stackoverflow.com/questions/1328926/is-there-a-way-of-seeing-how-many-open-sessions-there-are-in-iis6 0 Is there a way of seeing how many open sessions there are in IIS6? [closed] digiguru 2009-08-25T15:13:17Z 2009-08-25T15:18:09Z <p>I have a feeling we are being hit by very high traffic, how do I prove or disprove my theory?</p> http://stackoverflow.com/questions/1232641/jquery-validate-js-and-asp-net-master-pages 0 jQuery.validate.js and asp.net master pages digiguru 2009-08-05T11:23:16Z 2009-08-24T15:32:02Z <p>I have jQuery in various files, and recently I have needed to change items in the master page. This has caused various jaavscript includes to stop working. Stackoverflow are <a href="http://stackoverflow.com/questions/1232465/">suggesting great ideas</a> to solve the issue regarding the get by ID selector. </p> <pre><code>$("#ctl00_ContentMainPane_eliteUser").html </code></pre> <p>However I have a problem where we have used jquery.validate.js to validate form controls, so there is code like this in <em>external</em> JS files</p> <pre><code>$(document).ready(function(){ $("#aspnetForm").validate({ rules: { ctl00$ContentMainPane$txtFirstName: { required:true, CheckAlfaNumeric:true }, ctl00$ContentMainPane$ctl00$ucRFI$txtComments: { required:true } }, messages: { ctl00$ContentMainPane$txtFirstName: { required:" Please enter first name" }, ctl00$ContentMainPane$ctl00$ucRFI$txtComments: { required:"&amp;nbsp;Please enter comments." } } }); $("#" + GetPlaceholder() + "txtFirstName").blur(function(){ $("#" + GetPlaceholder() + "txtFirstName").valid(); }); jQuery.validator.addMethod("CheckAlfaNumeric", function(value, element) { return this.optional(element) || /^[A-Za-z\ ]+$/i.test(value); }, " Please enter alphabet."); }); </code></pre> <p>Any idea how to prevent the nameing issue of attributes if the name happens to change due to the master page being amended?</p> http://stackoverflow.com/questions/1304943/how-do-i-use-ids-of-html-elements-in-another-sub-when-they-are-created-from-serv/1305126#1305126 1 Answer by digiguru for How do I use id's of HTML elements in another sub when they are created from server-side code? digiguru 2009-08-20T09:56:38Z 2009-08-20T10:29:53Z <p>It's nasty, but here goes...</p> <pre><code> Dim skusTable As New HtmlTable Dim i As Integer Do While reader.HasRows Do While reader.Read i = i + 1 Dim tNewRow As New HtmlTableRow tNewRow.ID = "MyRow" &amp; i Dim cellSKU, cellDESCR, cellDept1, cellDeptGrp1, cellDeptRng1, cellStand, cellBoard, cellSelect As New HtmlTableCell cellSKU.InnerHtml = "&lt;a href='edit.aspx?edit=" &amp; reader("SKUN") &amp; "'&gt;" &amp; reader("SKUN") &amp; "&lt;/a&gt;" cellDESCR.InnerText = reader("DESCR") cellDept1.InnerText = reader("DPT1") cellDeptGrp1.InnerText = reader("GRP1") cellDeptRng1.InnerText = reader("RNG1") cellBoard.InnerText = reader("BOARD") cellStand.InnerText = reader("STAND") 'Create the checkbox as a webcontrol and add it to the table cell Dim checkBox As New HtmlControls.HtmlInputCheckBox checkBox.Value = reader("SKUN") checkBox.ID = "selectedSKU" cellSelect.ID = "SelectedCell" cellSelect.Controls.Add(New WebControls.CheckBox) tNewRow.Cells.Add(cellSKU) tNewRow.Cells.Add(cellDESCR) tNewRow.Cells.Add(cellDept1) tNewRow.Cells.Add(cellDeptGrp1) tNewRow.Cells.Add(cellDeptRng1) tNewRow.Cells.Add(cellStand) tNewRow.Cells.Add(cellBoard) tNewRow.Cells.Add(cellSelect) tNewRow.Style.Add("border", "solid 1px #cccccc") skusTable.Rows.Add(tNewRow) Loop reader.NextResult() Loop </code></pre> <p>Now all you need do is use FindControls to get to the element...</p> <pre><code> Dim myRow As HtmlControls.HtmlTableRow = skusTable.FindControl("MyRow" &amp; i) 'Probably be good to check the object exists first.... If Not myRow Is Nothing Then Dim myCell As HtmlControls.HtmlTableCell = myRow.FindControl("SelectedCell") If Not myCell Is Nothing Then Dim myCheckbox As HtmlControls.HtmlInputCheckBox = myCell.FindControl("selectedSKU") If Not myCheckbox Is Nothing Then 'Got it! now is it selected? Return myCheckbox.Checked End If End If End If </code></pre> http://stackoverflow.com/questions/1300052/how-can-i-call-a-sqlserver-function-from-vb-netor-c-is-there-some-syntax-lik/1300171#1300171 2 Answer by digiguru for How can I call a sqlserver function from VB.net(or C#) ? Is there some syntax like stored procedure? digiguru 2009-08-19T14:04:56Z 2009-08-19T14:04:56Z <p>Sorry, there is no way to run a function directly. Either call it using a sql Text command</p> <pre><code>Public Sub RunFunction(ByVal input As Short) Dim sqlParams(1) As Data.SqlClient.SqlParameter Using myConnection As New Data.SqlClient.SqlConnection Using myCommand As New Data.SqlClient.SqlCommand("Select * FROM dbo.MyFunction(@MyParam)", myConnection) myCommand.CommandType = CommandType.Text myCommand.Parameters.Add(New Data.SqlClient.SqlParameter("@MyParam", input)) myCommand.CommandTimeout = 0 Try myCommand.ExecuteNonQuery() Catch ex As Exception End Try End Using End Using End Sub </code></pre> <p>Or Wrap a procedure round it...</p> <pre><code>Create Procedure RunMyFunction(@MyParam as int) Select * FROM dbo.MyFunction(@MyParam) Go </code></pre> http://stackoverflow.com/questions/1253623/how-to-list-out-all-foreign-keys-with-with-nocheck-in-sql-server 3 How to list out all Foreign Keys with "WITH NOCHECK" in SQL Server digiguru 2009-08-10T08:02:40Z 2009-08-15T08:07:49Z <p>Hi</p> <p>Does anyone know a query for listing out all foreign keys in a database with "WITH NOCHECK" description applied to it? (removing them will <a href="http://www.microsoft.com/technet/abouttn/flash/tips/tips%5F122104.mspx" rel="nofollow">boost performance and stability</a>).</p> http://stackoverflow.com/questions/1272012/find-the-amount-of-missing-attributes-in-an-eva-design-remove-the-subquery-f 0 Find the amount of missing attributes in an EVA design.... (remove the subquery from this sql join) digiguru 2009-08-13T13:38:57Z 2009-08-13T14:06:36Z <p>How would you remove the subquery within <em>[Count of Missing Attributes]</em> from the following example.</p> <pre><code> --Setup data Declare @Attributes table (AttributeID int) Declare @Objects table (ObjectID int) Declare @ObjectAttributes table (ObjectID int, AttributeID int, val int) Insert Into @Objects (ObjectID) values (1) Insert Into @Objects (ObjectID) values (2) Insert Into @Attributes (AttributeID) values (1) Insert Into @Attributes (AttributeID) values (2) Insert Into @ObjectAttributes (ObjectID,AttributeID) values (1,1) Insert Into @ObjectAttributes (ObjectID,AttributeID) values (2,1) Insert Into @ObjectAttributes (ObjectID,AttributeID) values (2,2) --Query Select ObjectID, (Select Count(Distinct a2.AttributeID) FROM @Attributes a2) As [Total Count Of Attributes], Count(Distinct a.AttributeID) as [Count of attributes for this object], (Select Count(Distinct a2.AttributeID) FROM @Attributes a2) - Count(Distinct a.AttributeID) as [Count of Missing Attributes] FROM @Attributes a INNER Join @ObjectAttributes oa On oa.AttributeID = a.AttributeID Group By ObjectID Order By ObjectID </code></pre> http://stackoverflow.com/questions/1267126/how-do-you-get-the-week-start-date-and-week-end-date-from-week-number-in-sql 1 How do you get the "week start date" and "week end date" from week number in SQL Server? digiguru 2009-08-12T16:01:22Z 2009-08-12T17:08:30Z <p>I have a query that counts member's wedding dates in the database...</p> <pre><code>Select Sum(NumberOfBrides) As [Wedding Count], DATEPART( wk, WeddingDate) as [Week Number], DATEPART( year, WeddingDate) as [Year] FROM MemberWeddingDates Group By DATEPART( year, WeddingDate), DATEPART( wk, WeddingDate) Order By Sum(NumberOfBrides) Desc </code></pre> <p>How do I work out when the start and end of each week represented in the result set?</p> <pre><code>Select Sum(NumberOfBrides) As [Wedding Count], DATEPART( wk, WeddingDate) as [Week Number], DATEPART( year, WeddingDate) as [Year], ??? as WeekStart, ??? as WeekEnd FROM MemberWeddingDates Group By DATEPART( year, WeddingDate), DATEPART( wk, WeddingDate) Order By Sum(NumberOfBrides) Desc </code></pre> http://stackoverflow.com/questions/1253623/how-to-list-out-all-foreign-keys-with-with-nocheck-in-sql-server/1253894#1253894 0 Answer by digiguru for How to list out all Foreign Keys with "WITH NOCHECK" in SQL Server digiguru 2009-08-10T09:22:43Z 2009-08-10T09:22:43Z <pre><code>SELECT * FROM sys.foreign_keys AS f Where Is_Not_Trusted = 1 </code></pre> http://stackoverflow.com/questions/1232465/how-to-use-jquery-select-element-by-id-and-asp-net-without-putting-ctl00-everyw 3 How to use JQuery, select element by ID and ASP.NET without putting ctl00_ everywhere in the code digiguru 2009-08-05T10:45:52Z 2009-08-06T09:47:48Z <p>I have about 600+ references of code similar to the following...</p> <pre><code>$("#ctl00_ContentMainPane_eliteUser").html </code></pre> <p>And changed the master template, only to find all the code had broken, due to the control hierarchy changing.</p> <p>All javascript is included in separate files, so I cannot use code such as this...</p> <pre><code>$("#&lt;%= eliteUser.clientID%&gt;").html </code></pre> <p>I want to have a good solution to fixing this issue so that after fixing it once, I don't have to modify all the code if the template changes in the future.</p> http://stackoverflow.com/questions/349086/visual-studio-is-there-a-way-to-select-multiple-files-and-wrap-a-namespace-arou 1 Visual studio - is there a way to select multiple files and wrap a namespace around each of them? digiguru 2008-12-08T10:25:38Z 2009-07-29T19:47:05Z <p>Is there a way to select all classes within a folder and assign a namespace to each of them in visual studio?</p> <p>If there is no tool to do it, is there a regex pattern that will match everything before the class declatarion, but after the imports?</p> http://stackoverflow.com/questions/70153/whats-the-best-way-to-store-and-retrive-postal-addresses-using-a-sql-server-datab 1 Whats the best way to store and retrive postal addresses using a sql server database and the .NET framework? digiguru 2008-09-16T07:45:23Z 2009-07-23T15:56:45Z <p>I'm looking for a common pattern that will store and access global addresses in database. Components or other technologies can be used. The following criteria must be adheard to...</p> <ul> <li>Every line of the address is saved for every country </li> <li><a href="http://en.wikipedia.org/wiki/List_of_postal_codes" rel="nofollow">Postal codes</a> are tested with a regular expression before being saved </li> <li>Country of original is saved in it's own field When the data is displayed, the [address is formatted] (<a href="http://en.wikipedia.org/wiki/Postal_address" rel="nofollow">http://en.wikipedia.org/wiki/Postal_address</a>) in the style of that country</li> <li>When the data is input using a form the label fields are as descriptive as possible, so the labels ned to be dynamic to the country of origin. </li> <li>The addresses take up the minimum space possible</li> </ul> http://stackoverflow.com/questions/881913/sql-server-function-for-displaying-word-frequency-in-a-column 0 Sql server function for displaying word frequency in a column digiguru 2009-05-19T10:11:53Z 2009-07-14T02:14:55Z <p>I have a table that lists a freet text input from a survey where enterents were allowed to enter their responses (regarding colours they would like to have in their wedding)</p> <p>I would like to write a sql function that gathers all the information from this column, and orders counts the frequency of each word, ordering the result set by this count.</p> <pre><code>Response -------- Red and White green White and blue Blue Dark blue </code></pre> <p>I would like the above table to be ordered as follows</p> <pre><code>Response Frequency -------- --------- Blue 3 White 2 And 2 Red 1 Green 1 </code></pre> <p>I can strip all the rubbish words like "and" after the function has run. Does anyone know any good functions that produce this behaviour? </p> http://stackoverflow.com/questions/308301/reading-the-selected-value-from-aspradiobuttonlist-using-jquery 1 Reading the selected value from asp:RadioButtonList using jQuery digiguru 2008-11-21T09:56:12Z 2009-05-20T11:22:59Z <p>I've got code similar to the following...</p> <pre><code>&lt;p&gt;&lt;label&gt;Do you have buffet facilities?&lt;/label&gt; &lt;asp:RadioButtonList ID="blnBuffetMealFacilities:chk" runat="server"&gt; &lt;asp:ListItem Text="Yes" Value="1"&gt;&lt;/asp:ListItem&gt; &lt;asp:ListItem Text="No" Value="0"&gt;&lt;/asp:ListItem&gt; &lt;/asp:RadioButtonList&gt;&lt;/p&gt; &lt;div id="HasBuffet"&gt; &lt;p&gt;&lt;label&gt;What is the capacity for the buffet?&lt;/label&gt; &lt;asp:RadioButtonList ID="radBuffetCapacity" runat="server"&gt; &lt;asp:ListItem Text="Suitable for upto 30 guests" value="0 to 30"&gt;&lt;/asp:ListItem&gt; &lt;asp:ListItem Text="Suitable for upto 50 guests" value="30 to 50"&gt;&lt;/asp:ListItem&gt; &lt;asp:ListItem Text="Suitable for upto 75 guests" value="50 to 75"&gt;&lt;/asp:ListItem&gt; &lt;asp:ListItem Text="Suitable for upto 100 guests" value="75 to 100"&gt;&lt;/asp:ListItem&gt; &lt;asp:ListItem Text="Suitable for upto 150 guests" value="100 to 150"&gt;&lt;/asp:ListItem&gt; &lt;asp:ListItem Text="Suitable for upto 250 guests" value="150 to 250"&gt;&lt;/asp:ListItem&gt; &lt;asp:ListItem Text="Suitable for upto 400 guests" value="250 to 400"&gt;&lt;/asp:ListItem&gt; &lt;/asp:RadioButtonList&gt;&lt;/p&gt; &lt;/div&gt; </code></pre> <p>I want to capture an event when the radio list blBuffetMealFacilities:chk changes client side and perform a slide down function on the HasBuffet div from jQuery. What's the best way to create this, bearing in mind there are several similar sections on the page, where I want questions to be revealed depending on a yes no answer in a radio list.</p> http://stackoverflow.com/questions/881913/sql-server-function-for-displaying-word-frequency-in-a-column/882917#882917 0 Answer by digiguru for Sql server function for displaying word frequency in a column digiguru 2009-05-19T13:53:59Z 2009-05-19T13:53:59Z <p>Okay this works a treat. Firstly a function to separate the values...</p> <pre><code>Alter Function dbo.SeparateValues ( @data VARCHAR(MAX), @delimiter VARCHAR(10) ) RETURNS @tbldata TABLE(col VARCHAR(MAX)) As --Declare @data VARCHAR(MAX) ,@delimiter VARCHAR(10) --Declare @tbldata TABLE(col VARCHAR(10)) --Set @data = 'hello,how,are,you?,234234' --Set @delimiter = ',' --DECLARE @tbl TABLE(col VARCHAR(10)) Begin DECLARE @pos INT DECLARE @prevpos INT SET @pos = 1 SET @prevpos = 0 WHILE @pos &gt; 0 BEGIN SET @pos = CHARINDEX(@delimiter, @data, @prevpos+1) if @pos &gt; 0 INSERT INTO @tbldata(col) VALUES(LTRIM(RTRIM(SUBSTRING(@data, @prevpos+1, @pos-@prevpos-1)))) else INSERT INTO @tbldata(col) VALUES(LTRIM(RTRIM(SUBSTRING(@data, @prevpos+1, len(@data)-@prevpos)))) SET @prevpos = @pos End RETURN END </code></pre> <p>then I just apply it to my table...</p> <pre><code>Select Count(*), sep.Col FROM ( Select * FROM ( Select value = Upper(RTrim(LTrim(Replace(Replace(Replace(Replace(Replace(Replace(Replace(Replace(Replace(Replace(Replace(Replace(Replace(Replace(response, ',', ' '), '.', ' '), '!', ' '), '+', ' '), ':', ' '), '-', ' '), ';', ' '), '(', ' '), ')', ' '), '/', ' '), '&amp;', ''), '?', ' '), ' ', ' '), ' ', ' ')))) FROM Responses ) easyValues Where value &lt;&gt; '' ) actualValues Cross Apply dbo.SeparateValues(value, ' ') sep Group By sep.Col Order By Count(*) Desc </code></pre> <p>Okay, so I went OTT with my nested tables, but I've stripped out all the crap characters, separated the values and kept a running total of the most frequently used words.</p> http://stackoverflow.com/questions/834841/how-do-i-disable-a-full-text-search-on-a-column-in-sql-server 0 How do I disable a full-Text Search on a column in sql server? digiguru 2009-05-07T14:05:18Z 2009-05-07T16:53:35Z <p>I'm trying to convert a column from ntext to nvarchar(MAX), but it seems there is a Full-Text search enabled on it.</p> <pre><code>Alter table &lt;table&gt; alter column &lt;column&gt; nvarchar </code></pre> <p>Then i'm going to force the text into rows </p> <pre><code>update &lt;table&gt; set &lt;column&gt; = &lt;column&gt; +'' where &lt;column&gt; is not null </code></pre> <p>Finally I'll need to enable the full text search again.</p> <p>How do I do this in SQL?</p> http://stackoverflow.com/questions/771919/online-tool-for-crawling-a-website-and-retriving-all-meta-information-for-every-p 0 Online tool for crawling a website and retriving all meta information for every page digiguru 2009-04-21T10:07:24Z 2009-04-29T17:51:39Z <p>Does anyone know of a free online tool that can crawl any given website and return just the Meta Keywords and Meta Description information?</p> http://stackoverflow.com/questions/794052/asp-net-is-it-possible-to-differentiate-session-length-from-user 1 ASP.NET Is it possible to differentiate session length from user? digiguru 2009-04-27T15:30:26Z 2009-04-27T15:35:42Z <p>In asp.net session length, can it be of a different length depending on the type of user logging in? I want admin users to timeout after 3 hours, but standard users to timeout after 30mins, because staff in the office often have multiple windows open, and requested a longer session length. I'm a little sceptical about lengthening it for the outside world.</p> http://stackoverflow.com/questions/776333/sql-server-2005-date-localization 0 SQL Server 2005 Date Localization digiguru 2009-04-22T09:19:39Z 2009-04-22T09:32:10Z <p>I have a procedure that defaults todays date if no parameter is passed into it.</p> <pre><code>CREATE Procedure GetDirectoryRenewalReminders (@DateToday datetime = Null) As If @DateToday Is Null Begin Set @DateToday = GetDate() End ... Go </code></pre> <p>How can I ensure that the GetDate() value will default to the current UK time when called from an application in the UK, and a Australian time when called from an applciation in Australia?</p> http://stackoverflow.com/questions/728898/can-you-do-a-select-on-the-results-of-a-stored-procedure-in-t-sql/728938#728938 1 Answer by digiguru for Can you do a select on the results of a stored procedure in T-SQL digiguru 2009-04-08T07:51:56Z 2009-04-08T07:51:56Z <p>You can't do it, but you could consider a function in sqlserver2005. Here's an example function that creates a table from a comma separated list</p> <pre><code>Create Function [dbo].[CsvToInt] ( @Array varchar(1000)) returns @IntTable table (IntValue int) AS begin declare @separator char(1) set @separator = ',' declare @separator_position int declare @array_value varchar(1000) set @array = @array + ',' while patindex('%,%' , @array) &lt;&gt; 0 begin select @separator_position = patindex('%,%' , @array) select @array_value = left(@array, @separator_position - 1) Insert @IntTable Values (Cast(@array_value as int)) select @array = stuff(@array, 1, @separator_position, '') end return end </code></pre> <p>And then simple select from the function...</p> <pre><code>Select * FROM dbo.CsvToInt('1,2,3,5') </code></pre> <p>And you'll get a table value. </p> http://stackoverflow.com/questions/1881507/does-internet-explorer-7-honour-the-vary-header-by-caching-properly/1881833#1881833 Comment by digiguru on Does internet Explorer 7 honour the Vary header by caching properly? digiguru 2009-12-10T15:58:07Z 2009-12-10T15:58:07Z Reading the article I guess I should 1) Only add Vary Accept-Encoding tags only in IE6(sp2) and above. 2) Include ETag in the header, and match If-None-Match to the ETag. 3) Include Vary for Content-Encoding in all browsers that are not IE6 or 7. http://stackoverflow.com/questions/1881507/does-internet-explorer-7-honour-the-vary-header-by-caching-properly/1881833#1881833 Comment by digiguru on Does internet Explorer 7 honour the Vary header by caching properly? digiguru 2009-12-10T15:45:04Z 2009-12-10T15:45:04Z As Rick mentions in his blog article - vary by Content-Encoding &quot;// Allow proxy servers to cache encoded and unencoded versions separately&quot;. http://stackoverflow.com/questions/1832717/jquery-ie-6-error-infinitecarrousel-plugin Comment by digiguru on jQuery IE 6 Error InfiniteCarrousel plugin. digiguru 2009-12-02T14:46:32Z 2009-12-02T14:46:32Z Is the original jquery $(&quot;#carousel&quot;).infiniteCarousel(); performed in a document ready event, or just in the script? http://stackoverflow.com/questions/1504409/5x5-1-tile-missing-puzzle Comment by digiguru on 5x5 1 tile missing Puzzle digiguru 2009-10-01T14:57:58Z 2009-10-01T14:57:58Z Awe - you guys close things so quickly http://stackoverflow.com/questions/1504409/5x5-1-tile-missing-puzzle Comment by digiguru on 5x5 1 tile missing Puzzle digiguru 2009-10-01T14:51:04Z 2009-10-01T14:51:04Z im assuming you cant enter a single square more than once? http://stackoverflow.com/questions/1328926/is-there-a-way-of-seeing-how-many-open-sessions-there-are-in-iis6/1328964#1328964 Comment by digiguru on Is there a way of seeing how many open sessions there are in IIS6? digiguru 2009-08-25T15:21:51Z 2009-08-25T15:21:51Z Can I analyzer them live without affecting them (as far as I can understand most text editors will have a fit as the file constantly changes) http://stackoverflow.com/questions/1328926/is-there-a-way-of-seeing-how-many-open-sessions-there-are-in-iis6/1328954#1328954 Comment by digiguru on Is there a way of seeing how many open sessions there are in IIS6? digiguru 2009-08-25T15:17:56Z 2009-08-25T15:17:56Z How do I add live sessions in Perfmon? http://stackoverflow.com/questions/1304943/how-do-i-use-ids-of-html-elements-in-another-sub-when-they-are-created-from-serv/1305126#1305126 Comment by digiguru on How do I use id's of HTML elements in another sub when they are created from server-side code? digiguru 2009-08-20T10:28:19Z 2009-08-20T10:28:19Z Dim checkBox As New HtmlControls.HtmlInputCheckBox checkBox.Value = reader(&quot;SKUN&quot;) http://stackoverflow.com/questions/1304943/how-do-i-use-ids-of-html-elements-in-another-sub-when-they-are-created-from-serv/1305126#1305126 Comment by digiguru on How do I use id's of HTML elements in another sub when they are created from server-side code? digiguru 2009-08-20T09:58:23Z 2009-08-20T09:58:23Z Oh yeah, notice you'll want to know which row you are checking too. http://stackoverflow.com/questions/355949/how-good-are-redgates-sql-tools/357743#357743 Comment by digiguru on How good are Redgate's SQL tools? digiguru 2009-08-19T15:42:42Z 2009-08-19T15:42:42Z You've been quoted by the redgate twitter. <a href="http://twitter.com/redgate/status/3406240192" rel="nofollow">twitter.com/redgate/status/3406240192</a> http://stackoverflow.com/questions/745110/using-jquery-hover-with-html-image-map/745180#745180 Comment by digiguru on Using JQuery hover with HTML image map digiguru 2009-08-17T10:40:40Z 2009-08-17T10:40:40Z This doesn't work in IE8 http://stackoverflow.com/questions/1272012/find-the-amount-of-missing-attributes-in-an-eva-design-remove-the-subquery-f Comment by digiguru on Find the amount of missing attributes in an EVA design.... (remove the subquery from this sql join) digiguru 2009-08-13T14:19:44Z 2009-08-13T14:19:44Z Sorry Joel, I just clicked too quick http://stackoverflow.com/questions/1253623/how-to-list-out-all-foreign-keys-with-with-nocheck-in-sql-server/1253894#1253894 Comment by digiguru on How to list out all Foreign Keys with "WITH NOCHECK" in SQL Server digiguru 2009-08-10T10:24:48Z 2009-08-10T10:24:48Z But it wasn't &quot;disabled&quot;. How would you suggest performing &quot;re-enabling&quot; it? http://stackoverflow.com/questions/1253623/how-to-list-out-all-foreign-keys-with-with-nocheck-in-sql-server/1253635#1253635 Comment by digiguru on How to list out all Foreign Keys with "WITH NOCHECK" in SQL Server digiguru 2009-08-10T09:27:13Z 2009-08-10T09:27:13Z DBCC CHECKCONSTRAINTS is useful, but this really doesn't answer the question. http://stackoverflow.com/questions/1253623/how-to-list-out-all-foreign-keys-with-with-nocheck-in-sql-server/1253685#1253685 Comment by digiguru on How to list out all Foreign Keys with "WITH NOCHECK" in SQL Server digiguru 2009-08-10T09:15:18Z 2009-08-10T09:15:18Z This seems to work... SELECT * FROM sys.foreign_keys AS f Where Is_Not_Trusted = 1