Sung Meister

3,725
reputation
1469 views

Registered User

name Sung Meister
member for 1 year
seen 10 mins ago
website
location NYC
age
After years of frustration of SQL Server Management Studio document navigation, I decided to create something to ease my pain and suffering.

Here is a SQL Server Management Studio 2008 Add-in for browsing currently active documents.
Active File Explorer for SQL Server Management Studio
1d
comment Why is “Evaluation of lambda expressions is not valid in the debugger”?
@Jason: Your summary sums it up right, according to what I read. Thanks.
1d
asked Why is “Evaluation of lambda expressions is not valid in the debugger”?
Dec
11
revised How to store a users picture in active directory?
edited tags
Dec
11
comment How can i crop image using C#
Very nice suggestion with CroppedImage. I wasn't aware of such capability with WPF.
Dec
11
comment How can i crop image using C#
Would you change the tinyURL to the full URL lest they will lead me to NSFW pages at work.
Dec
11
comment Any efficient/reliable way to expose one event?
@Tim: Thanks. I just took a different route to expose the event once by having a class variable that simply counts how many events has fired as well as another class variable that merges all file names and pass that when raising the event.
Dec
10
comment Any efficient/reliable way to expose one event?
copier.Copy(fileName); within MultipleDocumentCopier.CopyDocuments(...) spawns a new thread so I can't tell when it finished without singleDocumentCopier_CopyCompleted;
Dec
10
comment Any efficient/reliable way to expose one event?
"maybe this is pseudocode, and your real code is more complicated?" - Yes, it's just a pseudocode i came up in 5 minutes and the real code is more complicated in a way that, I can't simply call MultipleDocumentCopier.OnCopyCompleted... unfortunately.
Dec
10
asked Any efficient/reliable way to expose one event?
Dec
9
comment Call a Stored Procedure from another Stored Procedure.
@vaibhav: I have updated the tag sqlserver2005 to sql-server-2005. Would you consider using existing tags? Thanks.
Dec
9
comment Call a Stored Procedure from another Stored Procedure.
@valbhav: Consider using both RAISERROR and TRY...CATCH...
Dec
8
comment How to monitor Google Alert RSS feed produced “as-it-happens”?
Thanks, Derek, it looks like what I have been looking for
Dec
8
asked How to monitor Google Alert RSS feed produced “as-it-happens”?
Dec
7
comment What would be a reliable way to get fractional value from a number?
It works for negative numbers just fine!
Dec
7
comment What would be a reliable way to get fractional value from a number?
Ha, expected nothing less from a guy with a handle, md5sum. Thanks.
Dec
7
comment What would be a reliable way to get fractional value from a number?
I haven't explored mathematical functions, yet and this looks like a simply but yet reliable way to get a fractional number. Thanks Charles.
Dec
7
revised What would be a reliable way to get fractional value from a number?
added 14 characters in body; added 6 characters in body; edited title
Dec
7
comment What would be a reliable way to get fractional value from a number?
Yes, fractional value of type int is what I am trying to get out of it. So from 15.80, I would like to get .80
Dec
7
asked What would be a reliable way to get fractional value from a number?
Dec
4
comment A random cross-thread operation exception for Winforms multithreaded UI operation
I still not could not figure out this problem... So random.. Occurs very very rarely...
Nov
30
comment Recommendations for a google finance-like interactive chart control
But this feels quite heavy and slow compared to other alternatives like Flotr or Google Visualization Annotated Timeline
Nov
29
revised google finance tools on my website?
edited tags
Nov
29
revised Trying to convert “yy/mm/dd hh:mm:ss” (stored as char) into datetime using computed column
edited tags; edited tags
Nov
27
accepted How to refresh the definition of a T-SQL user-defined function after a dependent object is redefined?
Nov
26
awarded  Nice Answer
Nov
23
answered T-Sql, How to get these results ?
Nov
23
comment T-Sql, How to get these results ?
@uzay95: advice = post SQL server edition
Nov
23
comment Join won’t do it, and sub query sucks, then what?
@7alwagy: What did you use to draw the table diagram?
Nov
19
comment TSQL: How to get a list of groups that a user belongs to in Active Diretory
It looks like I'd have to change the strategy by creating a say, CLR function/sproc. Thanks, marc_s.
Nov
19
revised TSQL: How to get a list of groups that a user belongs to in Active Diretory
added 350 characters in body
Nov
19
comment TSQL: How to get a list of groups that a user belongs to in Active Diretory
The reason I was determined to find out about this was because, I was able to to do the exact opposite-Given the group name, retrieve all users that belong to the group. (Question updated for this purpose)
Nov
19
comment TSQL: How to get a list of groups that a user belongs to in Active Diretory
@Raj: Thank you for those links. I have gone thru many scripts I was able to do it programmatically, say in C# or powershell but I have failed to translate them into LDAP queries in TSQL.
Nov
19
asked TSQL: How to get a list of groups that a user belongs to in Active Diretory
Nov
19
comment How to transfer my data from MS ACCESS DB to a new SQL SERVER DB?
I believe that this question belongs on ServerFault.com
Nov
18
awarded  Popular Question
Nov
17
comment TSQL: Cannot perform an aggregate function AVG on COUNT(*) to find busiest hours of day
@OMG Ponies: In CTE version, You might actually want to return DATEPART(hh, x.visitdate) from CTE as something like DATEPART(hh, x.visitdate) as VisitHour so that it is converted only once within CTE.
Nov
17
revised TSQL: Cannot perform an aggregate function AVG on COUNT(*) to find busiest hours of day
edited body
Nov
17
comment Customer and Order Sql Statement
@jero: I am sorry but those pk_ and fk_ prefixes gotta go.
Nov
15
answered How to refresh the definition of a T-SQL user-defined function after a dependent object is redefined?
Nov
11
asked What’s the difference between “::” and “sys” schemas?
Nov
7
asked TSQL: Any benefits for explicitly specifying NVARCHAR in a string?
Nov
3
comment TSQL - How to return 2 values with one case statement?
@Josheph. Thank you for the answer. This question was mainly to confirm whether there is actually a way to do so. But I was not able to find a way around it even after reading MSDN BOL.
Nov
3
revised TSQL - How to return 2 values with one case statement?
deleted 9 characters in body
Nov
3
asked TSQL - How to return 2 values with one case statement?
Oct
26
answered How do you implement Software Transactional Memory?
Oct
26
comment How do you implement Software Transactional Memory?
What's your platform? Windows? Linux? What's your framework? Java? Ruby? .NET? Would you be a bit more specific on your target platform?
Oct
25
comment Select and merge rows in a table in SQL Stored procedure
@Johannes: Does that really matter? if this benefits everyone?
Oct
24
comment How to get web site user’s Windows login name from stored procedure invoked through website
I am trying to avoid having to create a new parameter like @UserName for every sprocs that saves information.
Oct
24
asked How to get web site user’s Windows login name from stored procedure invoked through website
Oct
24
comment How to pass Generic Type parameter to lambda expression?
By the way, this is the first time I have ever used ReferenceEquals. Quite refreshing to use actual Object method. ;)