User ctrlShiftBryan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T22:28:12Zhttp://stackoverflow.com/feeds/user/6161http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/541954/how-would-you-count-occurences-of-a-string-within-a-string-c/1928725#19287250Answer by ctrlShiftBryan for How would you count occurences of a string within a string (C#)?ctrlShiftBryan2009-12-18T15:04:18Z2009-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-pages2Will google index https pages?ctrlShiftBryan2009-12-14T17:23:04Z2009-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#18333322Answer by ctrlShiftBryan for Is it acceptable to have useless code?ctrlShiftBryan2009-12-02T14:44:06Z2009-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#18329321Answer by ctrlShiftBryan for Is there any way to read out the "naturalWidth" of an image with jquery?ctrlShiftBryan2009-12-02T13:33:02Z2009-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-completion0Asynchronous Storec Proc without waiting for completion.ctrlShiftBryan2009-12-01T20:08:26Z2009-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-tool20What is your single favorite development tool?ctrlShiftBryan2008-09-20T16:29:20Z2009-11-26T16:32:42Z
<p>What is your single favorite development tool?</p>
http://stackoverflow.com/questions/98124/why-does-javascript-getyear-return-10810Why does Javascript getYear() return 108?ctrlShiftBryan2008-09-18T23:53:48Z2009-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#17858300Answer by ctrlShiftBryan for Programmatically check if a number is a palindromectrlShiftBryan2009-11-23T20:47:18Z2009-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#16828263Answer by ctrlShiftBryan for Is it bad practice to 'go backwards' with a foreign key?ctrlShiftBryan2009-11-05T19:02:35Z2009-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#16083930Answer by ctrlShiftBryan for In a user interface, is it better to "gray out" or hide features that are unavailable?ctrlShiftBryan2009-10-22T16:23:18Z2009-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#15946550Answer by ctrlShiftBryan for Windows login from a user's computer through an intranet web-app WITHOUT prompting for user/pass.ctrlShiftBryan2009-10-20T13:37:12Z2009-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-members3Are there any published frameworks or standards for passwords and website membership? ctrlShiftBryan2009-10-14T15:05:05Z2009-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-tsql2Using ORDER BY on SELECT DISTINCT in TSQLctrlShiftBryan2009-01-20T22:06:52Z2009-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-site3Securing a SQL databse account for an ASP.Net sitectrlShiftBryan2009-09-18T17:17:48Z2009-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-out1ASP.NET UpdatePanel Time OutctrlShiftBryan2008-10-01T18:18:58Z2009-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-function0TSQL Pivot without aggregate function ctrlShiftBryan2009-08-27T18:58:05Z2009-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-relationships0E2L: How do you handle Foreign Keys that participate in multiple relationships?ctrlShiftBryan2009-02-24T17:40:36Z2009-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#13436090Answer by ctrlShiftBryan for TSQL Pivot without aggregate function ctrlShiftBryan2009-08-27T20:34:28Z2009-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-silverlight5Flash vs. SilverlightctrlShiftBryan2008-09-19T18:21:22Z2009-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-var1LINQ2SQL: How do I declare a member variable of type var?ctrlShiftBryan2009-05-08T21:19:58Z2009-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-table1LINQ inner join betwenn Enumerable and DB TablectrlShiftBryan2008-10-07T21:06:18Z2009-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<ListItem>()
where !(from nItem in newChklSpecialNeeds.Items.Cast<ListItem>()
where nItem.Selected
select nItem.Value).Contains(oItem.Value)
&& 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-code2MSSQL: How do you script Stored Procedure creation with code?ctrlShiftBryan2009-02-04T20:31:05Z2009-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#5133160Answer by ctrlShiftBryan for MSSQL: How do you script Stored Procedure creation with code?ctrlShiftBryan2009-02-04T20:58:36Z2009-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) < 4000
Open My_Cursor
DECLARE @sql VARCHAR(MAX)
FETCH NEXT FROM MY_Cursor INTO @sql
While (@@FETCH_STATUS <> -1)
BEGIN
IF (@@FETCH_STATUS <> -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-inotifypropertychanged1WPF Implementing INotifyPropertyChangedctrlShiftBryan2009-01-29T22:24:40Z2009-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-permissions0'NT AUTHORITY\NETWORK SERVICE' not inheritting local group permissions?ctrlShiftBryan2009-01-14T19:44:38Z2009-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-event0VB to C# Translate Event Handler that Implements Interface EventctrlShiftBryan2008-12-29T21:01:05Z2008-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-testing1ASP.NET Session Timeout TestingctrlShiftBryan2008-10-08T20:39:59Z2008-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-net6Best Practice: ByRef or ByVal? in .NetctrlShiftBryan2008-11-14T14:12:20Z2008-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#2904290Answer by ctrlShiftBryan for Best Practice: ByRef or ByVal? in .NetctrlShiftBryan2008-11-14T15:32:08Z2008-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-fail0What is a "Nested Quantifier" and why is it causing my regex to fail?ctrlShiftBryan2008-10-16T20:39:14Z2008-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#1841698Comment by ctrlShiftBryan on Database Design for Alerts from Specfic Changes to RecordsctrlShiftBryan2009-12-03T18:04:50Z2009-12-03T18:04:50ZSee comment above...http://stackoverflow.com/questions/1841644/database-design-for-alerts-from-specfic-changes-to-recordsComment by ctrlShiftBryan on Database Design for Alerts from Specfic Changes to RecordsctrlShiftBryan2009-12-03T18:04:18Z2009-12-03T18:04:18ZBasically 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#1828618Comment by ctrlShiftBryan on Asynchronous Storec Proc without waiting for completion.ctrlShiftBryan2009-12-02T21:04:29Z2009-12-02T21:04:29Zis 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#1828618Comment by ctrlShiftBryan on Asynchronous Storec Proc without waiting for completion.ctrlShiftBryan2009-12-01T20:37:02Z2009-12-01T20:37:02Zperfect...thanks Remushttp://stackoverflow.com/questions/1608379/in-a-user-interface-is-it-better-to-gray-out-or-hide-features-that-are-unavail/1608393#1608393Comment by ctrlShiftBryan on In a user interface, is it better to "gray out" or hide features that are unavailable?ctrlShiftBryan2009-10-26T13:05:37Z2009-10-26T13:05:37Zgood 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#1594655Comment by ctrlShiftBryan on Windows login from a user's computer through an intranet web-app WITHOUT prompting for user/pass.ctrlShiftBryan2009-10-21T14:58:13Z2009-10-21T14:58:13ZThe browser is prompting the user for authentication as opposed to auto logging them in. As other have said make sure "Enable Integrated Windows Authentication" is enabledhttp://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/255632#255632Comment by ctrlShiftBryan on What is your best programmer joke?ctrlShiftBryan2009-03-12T13:46:59Z2009-03-12T13:46:59ZI 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#513171Comment by ctrlShiftBryan on MSSQL: How do you script Stored Procedure creation with code?ctrlShiftBryan2009-02-04T20:35:58Z2009-02-04T20:35:58ZI'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#463353Comment by ctrlShiftBryan on Using ORDER BY on SELECT DISTINCT in TSQLctrlShiftBryan2009-01-20T22:23:04Z2009-01-20T22:23:04ZI 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#463352Comment by ctrlShiftBryan on Using ORDER BY on SELECT DISTINCT in TSQLctrlShiftBryan2009-01-20T22:21:49Z2009-01-20T22:21:49ZThe 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#444434Comment by ctrlShiftBryan on 'NT AUTHORITY\NETWORK SERVICE' not inheritting local group permissions?ctrlShiftBryan2009-01-14T20:07:05Z2009-01-14T20:07:05ZYou 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#290429Comment by ctrlShiftBryan on Best Practice: ByRef or ByVal? in .NetctrlShiftBryan2008-11-14T15:48:35Z2008-11-14T15:48:35ZIn 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#290222Comment by ctrlShiftBryan on Best Practice: ByRef or ByVal? in .NetctrlShiftBryan2008-11-14T14:49:46Z2008-11-14T14:49:46ZIs 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#290267Comment by ctrlShiftBryan on Best Practice: ByRef or ByVal? in .NetctrlShiftBryan2008-11-14T14:48:31Z2008-11-14T14:48:31ZThis 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#210265Comment by ctrlShiftBryan on What is a "Nested Quantifier" and why is it causing my regex to fail?ctrlShiftBryan2008-10-16T20:57:39Z2008-10-16T20:57:39ZWell 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