User digiguru - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T04:06:11Zhttp://stackoverflow.com/feeds/user/5055http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/316757/uk-vat-change-from-17-5-to-15-how-will-this-affect-your-code13UK Vat change from 17.5 to 15% - How will this affect your code?digiguru2008-11-25T09:02:40Z2009-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-properly0Does internet Explorer 7 honour the Vary header by caching properly?digiguru2009-12-10T14:57:28Z2009-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-tag0Web Application Project @Reference tagdigiguru2009-04-28T09:09:26Z2009-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><%@ Reference Control="~/UserControls/MyUserControl.ascx" %>
</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-net0How do you use an Ampersand in an HTTPCookie in VB.NET?digiguru2009-12-02T14:19:29Z2009-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 & 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 &
</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#18332020Answer by digiguru for How do you use an Ampersand in an HTTPCookie in VB.NET?digiguru2009-12-02T14:23:12Z2009-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-event1How do you refresh an advert served by Google Ad Manager after a javascript event (eg ajax postback) has occured on a webpagedigiguru2009-11-27T16:41:31Z2009-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-logins0Whats 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)digiguru2009-05-21T09:10:06Z2009-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-system0How do I remove a folder from Windows Distributed File System?digiguru2008-10-21T07:28:23Z2009-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-die0When will ie6 die? [closed]digiguru2009-10-07T16:11:06Z2009-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-mode1Sql Server compatibility modedigiguru2008-09-16T22:00:46Z2009-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-asp1Is there a way to tell when googlebot/bingbot/yahoobot is crawling my site in asp.net 2005 IIS6?digiguru2009-08-25T15:20:55Z2009-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-iis60Is there a way of seeing how many open sessions there are in IIS6? [closed]digiguru2009-08-25T15:13:17Z2009-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-pages0jQuery.validate.js and asp.net master pagesdigiguru2009-08-05T11:23:16Z2009-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:"&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#13051261Answer by digiguru for How do I use id's of HTML elements in another sub when they are created from server-side code?digiguru2009-08-20T09:56:38Z2009-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" & i
Dim cellSKU, cellDESCR, cellDept1, cellDeptGrp1, cellDeptRng1, cellStand, cellBoard, cellSelect As New HtmlTableCell
cellSKU.InnerHtml = "<a href='edit.aspx?edit=" & reader("SKUN") & "'>" & reader("SKUN") & "</a>"
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" & 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#13001712Answer by digiguru for How can I call a sqlserver function from VB.net(or C#) ? Is there some syntax like stored procedure?digiguru2009-08-19T14:04:56Z2009-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-server3How to list out all Foreign Keys with "WITH NOCHECK" in SQL Serverdigiguru2009-08-10T08:02:40Z2009-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-f0Find the amount of missing attributes in an EVA design.... (remove the subquery from this sql join)digiguru2009-08-13T13:38:57Z2009-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-sql1How do you get the "week start date" and "week end date" from week number in SQL Server?digiguru2009-08-12T16:01:22Z2009-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#12538940Answer by digiguru for How to list out all Foreign Keys with "WITH NOCHECK" in SQL Serverdigiguru2009-08-10T09:22:43Z2009-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-everyw3How to use JQuery, select element by ID and ASP.NET without putting ctl00_ everywhere in the codedigiguru2009-08-05T10:45:52Z2009-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>$("#<%= eliteUser.clientID%>").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-arou1Visual studio - is there a way to select multiple files and wrap a namespace around each of them?digiguru2008-12-08T10:25:38Z2009-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-datab1Whats the best way to store and retrive postal addresses using a sql server database and the .NET framework?digiguru2008-09-16T07:45:23Z2009-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-column0Sql server function for displaying word frequency in a columndigiguru2009-05-19T10:11:53Z2009-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-jquery1Reading the selected value from asp:RadioButtonList using jQuerydigiguru2008-11-21T09:56:12Z2009-05-20T11:22:59Z
<p>I've got code similar to the following...</p>
<pre><code><p><label>Do you have buffet facilities?</label>
<asp:RadioButtonList ID="blnBuffetMealFacilities:chk" runat="server">
<asp:ListItem Text="Yes" Value="1"></asp:ListItem>
<asp:ListItem Text="No" Value="0"></asp:ListItem>
</asp:RadioButtonList></p>
<div id="HasBuffet">
<p><label>What is the capacity for the buffet?</label>
<asp:RadioButtonList ID="radBuffetCapacity" runat="server">
<asp:ListItem Text="Suitable for upto 30 guests" value="0 to 30"></asp:ListItem>
<asp:ListItem Text="Suitable for upto 50 guests" value="30 to 50"></asp:ListItem>
<asp:ListItem Text="Suitable for upto 75 guests" value="50 to 75"></asp:ListItem>
<asp:ListItem Text="Suitable for upto 100 guests" value="75 to 100"></asp:ListItem>
<asp:ListItem Text="Suitable for upto 150 guests" value="100 to 150"></asp:ListItem>
<asp:ListItem Text="Suitable for upto 250 guests" value="150 to 250"></asp:ListItem>
<asp:ListItem Text="Suitable for upto 400 guests" value="250 to 400"></asp:ListItem>
</asp:RadioButtonList></p>
</div>
</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#8829170Answer by digiguru for Sql server function for displaying word frequency in a columndigiguru2009-05-19T13:53:59Z2009-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 > 0
BEGIN
SET @pos = CHARINDEX(@delimiter, @data, @prevpos+1)
if @pos > 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, ',', ' '), '.', ' '), '!', ' '), '+', ' '), ':', ' '), '-', ' '), ';', ' '), '(', ' '), ')', ' '), '/', ' '), '&', ''), '?', ' '), ' ', ' '), ' ', ' ')))) FROM Responses
) easyValues
Where value <> ''
) 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-server0How do I disable a full-Text Search on a column in sql server?digiguru2009-05-07T14:05:18Z2009-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 <table> alter column <column> nvarchar
</code></pre>
<p>Then i'm going to force the text into rows </p>
<pre><code>update <table> set <column> = <column> +'' where <column> 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-p0Online tool for crawling a website and retriving all meta information for every pagedigiguru2009-04-21T10:07:24Z2009-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-user1ASP.NET Is it possible to differentiate session length from user?digiguru2009-04-27T15:30:26Z2009-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-localization0SQL Server 2005 Date Localizationdigiguru2009-04-22T09:19:39Z2009-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#7289381Answer by digiguru for Can you do a select on the results of a stored procedure in T-SQLdigiguru2009-04-08T07:51:56Z2009-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) <> 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#1881833Comment by digiguru on Does internet Explorer 7 honour the Vary header by caching properly?digiguru2009-12-10T15:58:07Z2009-12-10T15:58:07ZReading 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#1881833Comment by digiguru on Does internet Explorer 7 honour the Vary header by caching properly?digiguru2009-12-10T15:45:04Z2009-12-10T15:45:04ZAs Rick mentions in his blog article - vary by Content-Encoding "// Allow proxy servers to cache encoded and unencoded versions separately".
http://stackoverflow.com/questions/1832717/jquery-ie-6-error-infinitecarrousel-pluginComment by digiguru on jQuery IE 6 Error InfiniteCarrousel plugin.digiguru2009-12-02T14:46:32Z2009-12-02T14:46:32ZIs the original jquery $("#carousel").infiniteCarousel(); performed in a document ready event, or just in the script?http://stackoverflow.com/questions/1504409/5x5-1-tile-missing-puzzleComment by digiguru on 5x5 1 tile missing Puzzledigiguru2009-10-01T14:57:58Z2009-10-01T14:57:58ZAwe - you guys close things so quicklyhttp://stackoverflow.com/questions/1504409/5x5-1-tile-missing-puzzleComment by digiguru on 5x5 1 tile missing Puzzledigiguru2009-10-01T14:51:04Z2009-10-01T14:51:04Zim 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#1328964Comment by digiguru on Is there a way of seeing how many open sessions there are in IIS6?digiguru2009-08-25T15:21:51Z2009-08-25T15:21:51ZCan 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#1328954Comment by digiguru on Is there a way of seeing how many open sessions there are in IIS6?digiguru2009-08-25T15:17:56Z2009-08-25T15:17:56ZHow 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#1305126Comment by digiguru on How do I use id's of HTML elements in another sub when they are created from server-side code?digiguru2009-08-20T10:28:19Z2009-08-20T10:28:19Z Dim checkBox As New HtmlControls.HtmlInputCheckBox
checkBox.Value = reader("SKUN")http://stackoverflow.com/questions/1304943/how-do-i-use-ids-of-html-elements-in-another-sub-when-they-are-created-from-serv/1305126#1305126Comment by digiguru on How do I use id's of HTML elements in another sub when they are created from server-side code?digiguru2009-08-20T09:58:23Z2009-08-20T09:58:23ZOh 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#357743Comment by digiguru on How good are Redgate's SQL tools?digiguru2009-08-19T15:42:42Z2009-08-19T15:42:42ZYou'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#745180Comment by digiguru on Using JQuery hover with HTML image mapdigiguru2009-08-17T10:40:40Z2009-08-17T10:40:40ZThis doesn't work in IE8http://stackoverflow.com/questions/1272012/find-the-amount-of-missing-attributes-in-an-eva-design-remove-the-subquery-fComment by digiguru on Find the amount of missing attributes in an EVA design.... (remove the subquery from this sql join)digiguru2009-08-13T14:19:44Z2009-08-13T14:19:44ZSorry Joel, I just clicked too quickhttp://stackoverflow.com/questions/1253623/how-to-list-out-all-foreign-keys-with-with-nocheck-in-sql-server/1253894#1253894Comment by digiguru on How to list out all Foreign Keys with "WITH NOCHECK" in SQL Serverdigiguru2009-08-10T10:24:48Z2009-08-10T10:24:48ZBut it wasn't "disabled". How would you suggest performing "re-enabling" it?http://stackoverflow.com/questions/1253623/how-to-list-out-all-foreign-keys-with-with-nocheck-in-sql-server/1253635#1253635Comment by digiguru on How to list out all Foreign Keys with "WITH NOCHECK" in SQL Serverdigiguru2009-08-10T09:27:13Z2009-08-10T09:27:13ZDBCC 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#1253685Comment by digiguru on How to list out all Foreign Keys with "WITH NOCHECK" in SQL Serverdigiguru2009-08-10T09:15:18Z2009-08-10T09:15:18ZThis seems to work...
SELECT *
FROM sys.foreign_keys AS f
Where Is_Not_Trusted = 1