Viewing 15 posts - 751 through 765 (of 1,415 total)
Eric M Russell (6/7/2016)
Luis Cazares (6/7/2016)
This is what happens when you trust a forum to answer questions that you should answer on your...
June 9, 2016 at 1:06 pm
Steve Jones - SSC Editor (5/18/2016)
May 19, 2016 at 6:49 am
crmitchell (5/18/2016)
patrickmcginnis59 10839 (5/18/2016)
Perry Whittle (5/17/2016)
Bob JH Cullen (5/17/2016)
which in any integer expression are irrelevant, surely?
This is not an integer expression.
The code first checks the binary values for @a and...
May 18, 2016 at 10:07 am
Lowell (5/18/2016)
For Q1 &2 ,hope this helps. I recently upgraded my windows 7 laptop to windows 10.
I have the VS2010/VS2012/VS2013 installed,and use them all depending on which environment i'm supporting.
that...
May 18, 2016 at 8:58 am
Perry Whittle (5/17/2016)
Bob JH Cullen (5/17/2016)
which in any integer expression are irrelevant, surely?
This is not an integer expression.
The code first checks the binary values for @a and @b-2, do they...
May 18, 2016 at 7:43 am
Jeff Moden (4/26/2016)
Solomon Rutzky (4/25/2016)
April 26, 2016 at 8:49 am
Solomon Rutzky (4/25/2016)
Disagree with what, exactly? You started this whole sub-topic of "Tower of Babel" because you mistakenly thought that Sachin was introducing both VB and C#. Since that isn't...
April 26, 2016 at 8:11 am
Make it a case statement!
CREATE FUNCTION [dbo].[KDT_FN_FORMATDATETIME](
@DateFormatvarchar(50),
@DateDATETIME
)
RETURNS VARCHAR(30)
AS
BEGIN
RETURN CASE
WHEN @DateFormat = 'dd-mm-yyyy' THEN Cast(day(@Date) as varchar(2))+'-'+(substring(datename(m, @Date),1,3))+'-'+cast(year(@Date) as varchar(4))
WHEN @DateFormat = 'MMM DD YYYY HH:mm Am/pm' THEN CONVERT(VARCHAR(30),@Date,100)
WHEN...
April 26, 2016 at 7:30 am
since you're going through the trouble of doing dynamic sql because of changing database names, maybe its worth your while to look at parameters of sqlcmd. Its much more convenient,...
April 8, 2016 at 12:20 pm
you'll also have to include the question from the quiz_data table or else you'll be using the same (unselected) answers on all the questions.
My guess follows, not tested however!
SELECT Student,...
April 7, 2016 at 1:58 pm
Sachin Nandanwar (4/5/2016)
April 7, 2016 at 8:10 am
was anybody able to get a tally table looking solution to work with the delimiter inside quotes exclusion? its obviously easy with a loop, but was curious about the tally...
April 7, 2016 at 6:32 am
Jeff Moden (4/5/2016)
patrickmcginnis59 10839 (4/5/2016)
Theres already a hodgepodge of tech there, its sort of what Microsoft does
So why make it more of a hodgepodge? Both C# and VB are...
April 5, 2016 at 11:03 am
chrisn-585491 (3/31/2016)
Gary Varga (3/31/2016)
Manic Star (3/31/2016)
chrisn-585491 (3/31/2016)
I still write the occasional .bat .cmd file nowadays.
As do I, since not all clients understand or enable PS or any other advance...
April 5, 2016 at 7:55 am
Jeff Moden (4/4/2016)
April 5, 2016 at 3:18 am
Viewing 15 posts - 751 through 765 (of 1,415 total)