User ctrlShiftBryan - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T22:28:12Z http://stackoverflow.com/feeds/user/6161 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/541954/how-would-you-count-occurences-of-a-string-within-a-string-c/1928725#1928725 0 Answer by ctrlShiftBryan for How would you count occurences of a string within a string (C#)? ctrlShiftBryan 2009-12-18T15:04:18Z 2009-12-18T15:04:18Z <p>I like your original solution better than any of the other ways.</p> http://stackoverflow.com/questions/1902260/will-google-index-https-pages 2 Will google index https pages? ctrlShiftBryan 2009-12-14T17:23:04Z 2009-12-14T17:27:14Z <p>We are having problems getting Google to index our site. We decided it was easiest to just use https for the entire site. Do we need to change it so that the anonymous, "public", areas of the site are not encrypted for them to be indexed? </p> http://stackoverflow.com/questions/1833289/is-it-acceptable-to-have-useless-code/1833332#1833332 2 Answer by ctrlShiftBryan for Is it acceptable to have useless code? ctrlShiftBryan 2009-12-02T14:44:06Z 2009-12-02T14:44:06Z <p>This is bad code. </p> <p>Bad code is common practice.</p> <p>That being said sometimes it is not worth the effort in changing stuff that isn't "broken".</p> http://stackoverflow.com/questions/1832907/is-there-any-way-to-read-out-the-naturalwidth-of-an-image-with-jquery/1832932#1832932 1 Answer by ctrlShiftBryan for Is there any way to read out the "naturalWidth" of an image with jquery? ctrlShiftBryan 2009-12-02T13:33:02Z 2009-12-02T13:33:02Z <pre><code>$this.css('height', 'auto'); var height = $this.height(); </code></pre> http://stackoverflow.com/questions/1828558/asynchronous-storec-proc-without-waiting-for-completion 0 Asynchronous Storec Proc without waiting for completion. ctrlShiftBryan 2009-12-01T20:08:26Z 2009-12-01T20:18:31Z <p>I have a client application that scrapes data into a raw table. This client application makes an asynchronous call to a stored procedure that actually parses the raw data into tables. This processing is handled by a stored procedure. That stored procedure can take up to a half hour to run. We want the client application calling the stored proc to exit and completely stop running. As soon as we kill the client application that calls the stored proc the stored procedure quits executing.</p> <p>What is the best way to acheive this? I do not want to run a job on the server. I want the client application to trigger this processing. A database trigger (my first idea) didn't solve the problem either because it doesn't consider the insert complete until the stored procedure the trigger is calling is complete.</p> <p>Here is the Async method. I'm using LINQ. Can I somehow modify this? Or do I need a new design altogether?</p> <pre><code>partial class MetaDataContext { delegate int Process_CompleteCycle2Delegate(int? frequencyID, int? cycleID); public void Process_CompleteCycle2Async(int? frequencyID, int? cycleID) { Process_CompleteCycle2Delegate completeCycleDelegate = new Process_CompleteCycle2Delegate(this.Process_CompleteCycle2); IAsyncResult async = completeCycleDelegate.BeginInvoke(frequencyID, cycleID, null, null); } </code></pre> http://stackoverflow.com/questions/108631/what-is-your-single-favorite-development-tool 20 What is your single favorite development tool? ctrlShiftBryan 2008-09-20T16:29:20Z 2009-11-26T16:32:42Z <p>What is your single favorite development tool?</p> http://stackoverflow.com/questions/98124/why-does-javascript-getyear-return-108 10 Why does Javascript getYear() return 108? ctrlShiftBryan 2008-09-18T23:53:48Z 2009-11-25T14:40:17Z <p>Why does this javascript return 108 instead of 2008? it gets the day and month correct but not the year?</p> <pre><code>myDate = new Date(); year = myDate.getYear(); </code></pre> <p>year = 108?</p> http://stackoverflow.com/questions/1785811/programmatically-check-if-a-number-is-a-palindrome/1785830#1785830 0 Answer by ctrlShiftBryan for Programmatically check if a number is a palindrome ctrlShiftBryan 2009-11-23T20:47:18Z 2009-11-23T20:47:18Z <p>in theory you want to convert the number to a string. then convet the string to an array of characters and loop the array comparing character (i) with character (array length - i) if the two characters are not equal exit the loop and return false. if it makes it all the way through the loop it is a Palindrome.</p> http://stackoverflow.com/questions/1682815/is-it-bad-practice-to-go-backwards-with-a-foreign-key/1682826#1682826 3 Answer by ctrlShiftBryan for Is it bad practice to 'go backwards' with a foreign key? ctrlShiftBryan 2009-11-05T19:02:35Z 2009-11-05T19:02:35Z <p>there is nothing wrong with this. </p> http://stackoverflow.com/questions/1608379/in-a-user-interface-is-it-better-to-gray-out-or-hide-features-that-are-unavail/1608393#1608393 0 Answer by ctrlShiftBryan for In a user interface, is it better to "gray out" or hide features that are unavailable? ctrlShiftBryan 2009-10-22T16:23:18Z 2009-10-22T16:23:18Z <p>gray them out. if they click on them provide a message stating why they are unavailable.</p> http://stackoverflow.com/questions/1590418/windows-login-from-a-users-computer-through-an-intranet-web-app-without-promptin/1594655#1594655 0 Answer by ctrlShiftBryan for Windows login from a user's computer through an intranet web-app WITHOUT prompting for user/pass. ctrlShiftBryan 2009-10-20T13:37:12Z 2009-10-20T13:37:12Z <p>Basically make sure the users IE browser in your domain will authenticate the user without prompting them. It is a client browser setting issue. </p> http://stackoverflow.com/questions/1566923/are-there-any-published-frameworks-or-standards-for-passwords-and-website-members 3 Are there any published frameworks or standards for passwords and website membership? ctrlShiftBryan 2009-10-14T15:05:05Z 2009-10-14T19:38:36Z <p>I am currently working on a project in which we are creating a large public website for my organization. This site is going to allow out clients to register and log in to obtain sensitive personal information.</p> <p>From experience I know some of the basics like requiring a complex password and requiring an email address for a password reset that are common used.</p> <p>Basically what I'm looking for is some sort of well documented recommendation or standards(like NIST or ISO) for these kinds of requirements. </p> <p>I need to present this to a higher level director who is insisting on us:</p> <ul> <li>not requiring the users to have an email address </li> <li>asking us to allow the users to have our site display the password back to the user just by verifying a Name, Birthday and SSN</li> <li>emailing the password in plain text as opposed to emailing a temp password and having them come to our site to reset the PW.</li> <li>requiring we assign simple system generated username like first intial, first 3 characters of the last name with a 4 digit randomly generated number. (as opposed to the user picking any name they want)</li> </ul> <p>If I can present some type of industry standard on why these are such risks it would really help.</p> http://stackoverflow.com/questions/463341/using-order-by-on-select-distinct-in-tsql 2 Using ORDER BY on SELECT DISTINCT in TSQL ctrlShiftBryan 2009-01-20T22:06:52Z 2009-10-03T20:03:00Z <p>I am trying to retrieve a list of date strings ordered by date like this...</p> <pre><code>SELECT DISTINCT CONVERT(Varchar(10), GeneratedDate, 101) AS GeneratedDate FROM dbo.ProviderProcessGeneratedDate ORDER BY GeneratedDate </code></pre> <p>This orders by the varchar that I converted the dates to.</p> <p>example...<br> 02/01/2008<br> 02/15/2008<br> 02/21/2007<br> 02/23/2007<br> 02/29/2008<br> <br></p> <p>I have worked around this using an inline query...</p> <pre><code>SELECT CONVERT(Varchar(10), a.GeneratedDate, 101) AS GeneratedDate FROM (SELECT DISTINCT Convert(DATETIME,CONVERT(Varchar(10), GeneratedDate, 101)) AS GeneratedDate FROM dbo.ProviderProcessGeneratedDate) a ORDER BY a.GeneratedDate DESC </code></pre> <p>To get what I really want... <br> 01/11/2008<br> 01/04/2008<br> 12/28/2007<br> 12/21/2007<br></p> <p>Is there an easier way? Seems like a lot of work to do something so simple.</p> http://stackoverflow.com/questions/1445815/securing-a-sql-databse-account-for-an-asp-net-site 3 Securing a SQL databse account for an ASP.Net site ctrlShiftBryan 2009-09-18T17:17:48Z 2009-09-18T17:30:59Z <p>I am trying to secure a MSSQL database for our .Net website.</p> <p>I wanted to separate the database into different schemas so that we had an schema like 'Account' which had personal information and a schemas like 'Public' that had generic public content data.</p> <p>Each of these schemas would be accessed using different SQL user accounts and they would each need their own DBML since they would need separate connection strings(we are using LINQtoSQL).</p> <p>My colleague is claiming that since we just have both of these accounts in our web.config anyways this design is no more secure than just using one SQL server account that has access to the whole database. There is no need to separate the schemas since we aren't using Windows based authentication.</p> <p><strong>So my question is who is correct? Would separating the database into schemas be any more secure? Or is it a waste of time since both SQL accounts would be located in the web.config (even if encrypted)?</strong></p> http://stackoverflow.com/questions/158975/asp-net-updatepanel-time-out 1 ASP.NET UpdatePanel Time Out ctrlShiftBryan 2008-10-01T18:18:58Z 2009-09-16T08:24:46Z <p>I'm making a request from an UpdatePanel that takes more then 90 seconds. I'm getting this timeout error.</p> <p>"Microsoft JScript runtime error: Sys.WebForms.PageRequestManagerTimeoutException: The server request timed out."</p> <p>Does anyone know if there is a way to increase the amount of time before the the call times out?</p> http://stackoverflow.com/questions/1343145/tsql-pivot-without-aggregate-function 0 TSQL Pivot without aggregate function ctrlShiftBryan 2009-08-27T18:58:05Z 2009-08-31T20:43:06Z <p>I have a table like this...</p> <pre><code>CustomerID DBColumnName Data -------------------------------------- 1 FirstName Joe 1 MiddleName S 1 LastName Smith 1 Date 12/12/2009 2 FirstName Sam 2 MiddleName S 2 LastName Freddrick 2 Date 1/12/2009 3 FirstName Jaime 3 MiddleName S 3 LastName Carol 3 Date 12/1/2009 </code></pre> <p>And I want this...</p> <p>Is this possible using PIVOT?</p> <pre><code>CustomerID FirstName MiddleName LastName Date ---------------------------------------------------------------------- 1 Joe S Smith 12/12/2009 2 Sam S Freddrick 1/12/2009 3 Jaime S Carol 12/1/2009 </code></pre> http://stackoverflow.com/questions/582742/e2l-how-do-you-handle-foreign-keys-that-participate-in-multiple-relationships 0 E2L: How do you handle Foreign Keys that participate in multiple relationships? ctrlShiftBryan 2009-02-24T17:40:36Z 2009-08-31T20:11:08Z <p>I have a Database model like this</p> <p>FlowObject<br> FlowObjectID (PK)<br> Description<br> Active<br> <br> ProcessObject<br> FlowObjectID (PK, FK)<br> HasSubmit<br> <br> DecisionObject<br> FlowObjectID (PK, FK)<br> YesFlowObjectID (FK)<br> NoFlowObjectID (FK)<br> YesCaption<br> NoCaption<br> <br></p> <p>When I try and use create my Entity model I get this warning in my project.</p> <p>Foreign Key constraint 'FK_ProcessObject_FlowObject1' has been omitted from the storage model. Column 'FlowObjectID' of table 'Investigations.Store.ProcessObject' is a Foreign Key participating in multiple relationships. A one-to-one Entity Model will not validate since data inconsistency is possible. </p> <p>???</p> <p>Why did it drop my foreign key? Because "A one-to-one Entity Model will not validate since data inconsistency is possible."</p> <p>So it sounds like it is saying it dropped the FK because of data inconsistency but dropping the FK actually reduces date consistency?</p> <p>Should I redesign my database? Is there anyway for L2E to handle FK's that participate in multiple relationships? Is it considered bad database design to have FK's that participate in multiple relationships?</p> http://stackoverflow.com/questions/1343145/tsql-pivot-without-aggregate-function/1343609#1343609 0 Answer by ctrlShiftBryan for TSQL Pivot without aggregate function ctrlShiftBryan 2009-08-27T20:34:28Z 2009-08-27T20:34:28Z <p>Ok, sorry for the poor question. gbn got me on the right track. This is what I was looking for in an answer.</p> <pre><code>SELECT [FirstName], [MiddleName], [LastName], [Date] FROM #temp PIVOT ( MIN([Data]) FOR [DBColumnName] IN ([FirstName], [MiddleName], [LastName], [Date]) )AS p </code></pre> <p>Then I had to use a while statement and build the above statement as a varchar and use dynmaic sql. </p> <p>Using something like this</p> <pre><code>SET @fullsql = @fullsql + 'SELECT ' + REPLACE(REPLACE(@fulltext,'(',''),')','') SET @fullsql = @fullsql + 'FROM #temp ' SET @fullsql = @fullsql + 'PIVOT' SET @fullsql = @fullsql + '(' SET @fullsql = @fullsql + ' MIN([Data])' SET @fullsql = @fullsql + ' FOR [DBColumnName] IN '+@fulltext SET @fullsql = @fullsql + ')' SET @fullsql = @fullsql + 'AS p' EXEC (@fullsql) </code></pre> <p>Having a to build @fulltext using a while loop and select the distinct column names out of the table. Thanks for the answers.</p> http://stackoverflow.com/questions/104270/flash-vs-silverlight 5 Flash vs. Silverlight ctrlShiftBryan 2008-09-19T18:21:22Z 2009-08-04T15:04:42Z <p>We are building a training website where we need to track viewers watching videos and store detailed info about the viewing (when they paused, if they watched the whole video etc)</p> <p>What should we consider when deciding between the two technologies?</p> <p>I forgot to add. This is for an in house app. We have complete control over the environment. If it this was for a public application I would definitely go with Flash.</p> <p>I'm just looking for technical advantages of one over the other from someone who has used both.</p> http://stackoverflow.com/questions/841848/linq2sql-how-do-i-declare-a-member-variable-of-type-var 1 LINQ2SQL: How do I declare a member variable of type var? ctrlShiftBryan 2009-05-08T21:19:58Z 2009-06-30T17:17:38Z <p>I have a class like this</p> <pre><code> public class foo { private void getThread() { var AllThreads = from sc in db.ScreenCycles join s in db.Screens on sc.ScreenID equals s.ScreenID select s; } } </code></pre> <p>I want to make the AllThreads variable a class variable instead of a method variable. Like this...</p> <pre><code>public class foo { var AllThreads; private void getThread() { AllThreads = from sc in db.ScreenCycles join s in db.Screens on sc.ScreenID equals s.ScreenID select s; } } </code></pre> <p>How ever it wont let me declare a class variable of type var.</p> <p>How to I achieve this?</p> http://stackoverflow.com/questions/180422/linq-inner-join-betwenn-enumerable-and-db-table 1 LINQ inner join betwenn Enumerable and DB Table ctrlShiftBryan 2008-10-07T21:06:18Z 2009-03-24T20:35:56Z <p>I'm trying to determine which records to delete from a database when a user submits a form. The page has two CheckBoxList one representing the records before modification and one after.</p> <p>I can easily get the selected values that need to be deleted like this...</p> <pre><code>//get the items not selected that were selected before var oldSelectedItems = from oItem in oldChklSpecialNeeds.Items.Cast&lt;ListItem&gt;() where !(from nItem in newChklSpecialNeeds.Items.Cast&lt;ListItem&gt;() where nItem.Selected select nItem.Value).Contains(oItem.Value) &amp;&amp; oItem.Selected select oItem.Value; </code></pre> <p>now I am trying to do something like this but it isn't allowing it...</p> <pre><code>var itemsToDelete = from specialNeed in db.SpecialNeeds join oldSelectedItem in oldSelectedItems on specialNeed.SpecialNeedsTypeCd equals oldSelectedItem.Value where specialNeed.CustomerId == customerId </code></pre> <p>I can easily just use a foreach loop and a .DeleteOnSubmit() for each item but I'm thinking there is a way use functionality of LINQ and pass the whole query result of an inner join to .DeleteAllOnSubmit() </p> <pre><code>//like so db.SpecialNeeds.DeleteAllOnSubmit(itemsToDelete); </code></pre> <p>Any ideas?</p> http://stackoverflow.com/questions/513158/mssql-how-do-you-script-stored-procedure-creation-with-code 2 MSSQL: How do you script Stored Procedure creation with code? ctrlShiftBryan 2009-02-04T20:31:05Z 2009-02-09T15:46:54Z <p>I am trying to query for a list of stored procedure definitions using information_schema.routines that exist in one database but not in another.</p> <pre><code>SELECT t1.Routine_Definition FROM [server1].MyDatabase.INFORMATION_SCHEMA.Routines t1 LEFT JOIN [server2].MyDatabase.INFORMATION_SCHEMA.Routines t2 ON t1.Routine_Name = t2.Routine_Name WHERE t2.Routine_Name is null </code></pre> <p><br> This gives me the query definitions in a single line so when I have a comment like this</p> <pre><code>--Some comment SELECT Column FROM Somewhere </code></pre> <p>The SQL gets commented out and I cannot use the definition to create the SP.</p> <p>How to I parse this back with the proper line breaks? <br> or <br> Is there a better way to get these scripts (using code)?</p> http://stackoverflow.com/questions/513158/mssql-how-do-you-script-stored-procedure-creation-with-code/513316#513316 0 Answer by ctrlShiftBryan for MSSQL: How do you script Stored Procedure creation with code? ctrlShiftBryan 2009-02-04T20:58:36Z 2009-02-04T21:29:06Z <pre><code>DECLARE MY_CURSOR Cursor FOR SELECT t1.Routine_Definition FROM [server1].MyDatabase.INFORMATION_SCHEMA.Routines t1 LEFT JOIN [server2].MyDatabase.INFORMATION_SCHEMA.Routines t2 ON t1.Routine_Name = t2.Routine_Name WHERE t2.Routine_Name is null AND LEN(t1.Routine_Definition) &lt; 4000 Open My_Cursor DECLARE @sql VARCHAR(MAX) FETCH NEXT FROM MY_Cursor INTO @sql While (@@FETCH_STATUS &lt;&gt; -1) BEGIN IF (@@FETCH_STATUS &lt;&gt; -2) Print @sql FETCH NEXT FROM MY_CURSOR INTO @sql END CLOSE MY_CURSOR DEALLOCATE MY_CURSOR GO </code></pre> <p>Here is how I implemented ck's solution...</p> <p>the INFORMATION_SCHEMA view only returns the first 4000 characters in the definition. (Ideally you wont have SP that are that long)You will want to script those manually or some other way.</p> http://stackoverflow.com/questions/493747/wpf-implementing-inotifypropertychanged 1 WPF Implementing INotifyPropertyChanged ctrlShiftBryan 2009-01-29T22:24:40Z 2009-01-29T22:32:14Z <p>I have setup a property and implement INotifyPropertyChanged</p> <p>like so...</p> <pre><code>public event PropertyChangedEventHandler PropertyChanged; public FlowProcess LastSelectedFlowProcess { get { return _lastSelectedFlowProcess; } set { _lastSelectedFlowProcess = value; Notify("LastSelectedFlowProcess"); UpdateFlows(); } } private void Notify(string propName) { if (PropertyChanged != null) PropertyChanged(this, new PropertyChangedEventArgs(propName)); } </code></pre> <p>I used this exact setup on other classes but for some reason in the Notify method the PropertyChanged variable is coming back null.</p> <p>In other classes when this works the PropertyChanged event is not null and evaluates to a delegate? What am I missing here?</p> <p>I am calling the public accessor from inside the class would that make a difference?</p> http://stackoverflow.com/questions/444395/nt-authority-network-service-not-inheritting-local-group-permissions 0 'NT AUTHORITY\NETWORK SERVICE' not inheritting local group permissions? ctrlShiftBryan 2009-01-14T19:44:38Z 2009-01-15T01:41:10Z <p>We are deleting images that have been uploaded to our server using an ASP.NET web page. The site is running under 'NT AUTHORITY\NETWORK SERVICE' in IIS.</p> <p>On the IIS server we have created a local group 'Full_Access' that we have added the 'NT AUTHORITY\NETWORK SERVICE' to. This group has NTFS Modify permission enabled on the file.</p> <p>When we delete the file from out app. The file does not get deleted.</p> <p>If we add 'NT AUTHORITY\NETWORK SERVICE' file instead explicitly to the file and give modify permission instead of relying on it to inherit the permission from the local group it is in then it works just fine.</p> <p>We have used the effective permissions check on the security tab and either way it supposedly has permission? But in actuality it only works if we directly give the service account permission?</p> <p>Is there some reason 'NT AUTHORITY\NETWORK SERVICE' does not inherit the permissions of the local group it is in?</p> http://stackoverflow.com/questions/398651/vb-to-c-translate-event-handler-that-implements-interface-event 0 VB to C# Translate Event Handler that Implements Interface Event ctrlShiftBryan 2008-12-29T21:01:05Z 2008-12-29T21:36:00Z <p>I was looking at code in WPF which is in VB. I am trying to convert it to C#. Eventhough I used VB .Net to C# converter I cannot figure out the correct syntax for the following code in C#. Any ideas how to write this in C#?</p> <p>VB Code: <br></p> <pre><code>Public Event PropertyChanged As PropertyChangedEventHandler Implements System.ComponentModel.INotifyPropertyChanged.PropertyChanged </code></pre> http://stackoverflow.com/questions/184782/asp-net-session-timeout-testing 1 ASP.NET Session Timeout Testing ctrlShiftBryan 2008-10-08T20:39:59Z 2008-12-17T17:24:56Z <p>I'm a doing some blackbox testing of a ASP.Net website and I need to test different session timeout scenarios. </p> <p>I'm not sure they fully encapsulated session timeouts. Other then leaving a page open for 20 minutes is there an easier way to force a session timeout?</p> http://stackoverflow.com/questions/290189/best-practice-byref-or-byval-in-net 6 Best Practice: ByRef or ByVal? in .Net ctrlShiftBryan 2008-11-14T14:12:20Z 2008-12-02T21:49:25Z <p>What are the things to consider when choosing between ByRef and ByVal.</p> <p>I understand the difference between the two but I don't fully understand if ByRef saves resources or if we even need to worry about that in the .Net environment.</p> <p>How do you decide between the two if the functionality doesn't matter in a situation?</p> http://stackoverflow.com/questions/290189/best-practice-byref-or-byval-in-net/290429#290429 0 Answer by ctrlShiftBryan for Best Practice: ByRef or ByVal? in .Net ctrlShiftBryan 2008-11-14T15:32:08Z 2008-11-14T15:32:08Z <p>I'm not sure I asked the question properly.</p> <p>Is there a .Net equivalent to passing something ByRef as ReadOnly(As you would in Java)? To save resources? </p> http://stackoverflow.com/questions/210206/what-is-a-nested-quantifier-and-why-is-it-causing-my-regex-to-fail 0 What is a "Nested Quantifier" and why is it causing my regex to fail? ctrlShiftBryan 2008-10-16T20:39:14Z 2008-11-09T15:06:29Z <p>I have this regex I built and tested in regex buddy.</p> <p>"_ [ 0-9]{10}+ {1}+[ 0-9]{10}+ {2}+[ 0-9]{6}+ {2}[ 0-9]{2}"</p> <p>When I use this in .Net C# </p> <p>I receive the exception</p> <p>"parsing \"_ [ 0-9]{10}+ +[ 0-9]{10}+ +[ 0-9]{6}+ [ 0-9]{2}\" - Nested quantifier +."</p> <p>What does this error mean? Apparently .net doesn't like the expression.</p> <p>Here is the regex buddy so u can understand my intention with the regex...</p> <pre><code>_ [ 0-9]{10}+ {1}+[ 0-9]{10}+ {2}+[ 0-9]{6}+ {2}[ 0-9]{2} Match the characters "_ " literally «_ » Match a single character present in the list below «[ 0-9]{10}+» Exactly 10 times «{10}+» The character " " « » A character in the range between "0" and "9" «0-9» Match the character " " literally « {1}+» Exactly 1 times «{1}+» Match a single character present in the list below «[ 0-9]{10}+» Exactly 10 times «{10}+» The character " " « » A character in the range between "0" and "9" «0-9» Match the character " " literally « {2}+» Exactly 2 times «{2}+» Match a single character present in the list below «[ 0-9]{6}+» Exactly 6 times «{6}+» The character " " « » A character in the range between "0" and "9" «0-9» Match the character " " literally « {2}» Exactly 2 times «{2}» Match a single character present in the list below «[ 0-9]{2}» Exactly 2 times «{2}» The character " " « » A character in the range between "0" and "9" «0-9» </code></pre> <p>In short...</p> <p>What is a Nested quantifier?</p> http://stackoverflow.com/questions/1841644/database-design-for-alerts-from-specfic-changes-to-records/1841698#1841698 Comment by ctrlShiftBryan on Database Design for Alerts from Specfic Changes to Records ctrlShiftBryan 2009-12-03T18:04:50Z 2009-12-03T18:04:50Z See comment above... http://stackoverflow.com/questions/1841644/database-design-for-alerts-from-specfic-changes-to-records Comment by ctrlShiftBryan on Database Design for Alerts from Specfic Changes to Records ctrlShiftBryan 2009-12-03T18:04:18Z 2009-12-03T18:04:18Z Basically I want to insert a record into a table when a change is detected and then either use a trigger or job to send the mails off of the table. I just not %100 on how to detect that the change occured. Because it is only specific field changes to the record I want to detect. http://stackoverflow.com/questions/1828558/asynchronous-storec-proc-without-waiting-for-completion/1828618#1828618 Comment by ctrlShiftBryan on Asynchronous Storec Proc without waiting for completion. ctrlShiftBryan 2009-12-02T21:04:29Z 2009-12-02T21:04:29Z is there any reason why a when I call my stored proc with your method I get lots of SPIDs blocking each other? When I run my proc otherwise either through SSMS or through my application this doesn't happen. http://stackoverflow.com/questions/1828558/asynchronous-storec-proc-without-waiting-for-completion/1828618#1828618 Comment by ctrlShiftBryan on Asynchronous Storec Proc without waiting for completion. ctrlShiftBryan 2009-12-01T20:37:02Z 2009-12-01T20:37:02Z perfect...thanks Remus http://stackoverflow.com/questions/1608379/in-a-user-interface-is-it-better-to-gray-out-or-hide-features-that-are-unavail/1608393#1608393 Comment by ctrlShiftBryan on In a user interface, is it better to "gray out" or hide features that are unavailable? ctrlShiftBryan 2009-10-26T13:05:37Z 2009-10-26T13:05:37Z good point. the main idea is to let them know why they aren't available somehow. http://stackoverflow.com/questions/1590418/windows-login-from-a-users-computer-through-an-intranet-web-app-without-promptin/1594655#1594655 Comment by ctrlShiftBryan on Windows login from a user's computer through an intranet web-app WITHOUT prompting for user/pass. ctrlShiftBryan 2009-10-21T14:58:13Z 2009-10-21T14:58:13Z The browser is prompting the user for authentication as opposed to auto logging them in. As other have said make sure &quot;Enable Integrated Windows Authentication&quot; is enabled http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/255632#255632 Comment by ctrlShiftBryan on What is your best programmer joke? ctrlShiftBryan 2009-03-12T13:46:59Z 2009-03-12T13:46:59Z I was reading this at work and just busted out laughing for like 5 minutes...I'm crying now...thanks. http://stackoverflow.com/questions/513158/mssql-how-do-you-script-stored-procedure-creation-with-code/513171#513171 Comment by ctrlShiftBryan on MSSQL: How do you script Stored Procedure creation with code? ctrlShiftBryan 2009-02-04T20:35:58Z 2009-02-04T20:35:58Z I'm not looking for the easiest way. I want to use this to create a dynamic script that will create my scripts without using a GUI and selecting which SP's to script. http://stackoverflow.com/questions/463341/using-order-by-on-select-distinct-in-tsql/463353#463353 Comment by ctrlShiftBryan on Using ORDER BY on SELECT DISTINCT in TSQL ctrlShiftBryan 2009-01-20T22:23:04Z 2009-01-20T22:23:04Z I can't because... ORDER BY items must appear in the select list if SELECT DISTINCT is specified. http://stackoverflow.com/questions/463341/using-order-by-on-select-distinct-in-tsql/463352#463352 Comment by ctrlShiftBryan on Using ORDER BY on SELECT DISTINCT in TSQL ctrlShiftBryan 2009-01-20T22:21:49Z 2009-01-20T22:21:49Z The problem is I want to order by something other than what is in the select distinct clause. So it wont let me. SELECT DISTINCT CONVERT(Varchar(10), GeneratedDate, 101) It gives this error... ORDER BY items must appear in the select list if SELECT DISTINCT is specified. http://stackoverflow.com/questions/444395/nt-authority-network-service-not-inheritting-local-group-permissions/444434#444434 Comment by ctrlShiftBryan on 'NT AUTHORITY\NETWORK SERVICE' not inheritting local group permissions? ctrlShiftBryan 2009-01-14T20:07:05Z 2009-01-14T20:07:05Z You cant add a group to a group... Anyways...We originally tried adding 'IIS_WPG' to the file but that did not work. That is why we created the 'Full_Access' group. http://stackoverflow.com/questions/290189/best-practice-byref-or-byval-in-net/290429#290429 Comment by ctrlShiftBryan on Best Practice: ByRef or ByVal? in .Net ctrlShiftBryan 2008-11-14T15:48:35Z 2008-11-14T15:48:35Z In other languages in order to save resources large objects can be passed by read only reference in order to save resources. It acts like a passed by value reference but does not make a copy. http://stackoverflow.com/questions/290189/best-practice-byref-or-byval-in-net/290222#290222 Comment by ctrlShiftBryan on Best Practice: ByRef or ByVal? in .Net ctrlShiftBryan 2008-11-14T14:49:46Z 2008-11-14T14:49:46Z Is this true? Why did it get voted down? Maybe I didn't ask the question properly because this is more along the line of the answer I was looking for. http://stackoverflow.com/questions/290189/best-practice-byref-or-byval-in-net/290267#290267 Comment by ctrlShiftBryan on Best Practice: ByRef or ByVal? in .Net ctrlShiftBryan 2008-11-14T14:48:31Z 2008-11-14T14:48:31Z This is certainly what I've learned in the Java world but I'm not sure it is so in .Net? http://stackoverflow.com/questions/210206/what-is-a-nested-quantifier-and-why-is-it-causing-my-regex-to-fail/210265#210265 Comment by ctrlShiftBryan on What is a "Nested Quantifier" and why is it causing my regex to fail? ctrlShiftBryan 2008-10-16T20:57:39Z 2008-10-16T20:57:39Z Well this is just a snippet the full regex is this... _ [0-9]{10} {1}[ 0-9]{10} {2}[ 0-9]{6} {2}[ 0-9]{2}|_ [ 0-9]{10} {1}[0-9]{10} {2}[ 0-9]{6} {2}[ 0-9]{2}|_ [ 0-9]{10} {1}[ 0-9]{10} {2}[ 0-9]{6} {2}[0-9]{2} Its returning fields as long as one isn't blank...and I like the \s idea. Thanks