Viewing 15 posts - 7,156 through 7,170 (of 26,490 total)
It is 23:27 Afghan time. Three minutes until my phone interview. Wish me luck!
November 13, 2013 at 12:00 pm
Jeff Moden (11/11/2013)
Lynn Pettis (11/11/2013)
November 12, 2013 at 12:07 am
mister.magoo (11/11/2013)
Lynn Pettis (11/11/2013)
INSERT INTO FarzinIntro
SELECT
r.Role_ID,
r.User_ID,
dt1.n,
GETDATE()
FROM
...
November 11, 2013 at 11:50 pm
Just a suggestion based on my own philosophy, regardless of collation used (case sensitive or case insensitive) you should write your code as if it is always case sensitive. ...
November 11, 2013 at 8:35 am
Express12 (11/11/2013)
November 11, 2013 at 6:46 am
If I read your code correctly, this may work:
INSERT INTO FarzinIntro
SELECT
r.Role_ID,
r.User_ID,
dt1.n,
GETDATE()
FROM
...
November 11, 2013 at 5:20 am
First, be careful with making a covering index. Depending on how many columns of data and their sizes may make a covering index quite large. If this is...
November 11, 2013 at 4:25 am
kgeeel240 (11/11/2013)
HiI inspection offices (+-200) i need to select the ones that did not perform inspections for the past 2 years
please assist
Select the max inspection date for each office, identify...
November 11, 2013 at 2:44 am
I find that the more I have learned there is also a lot more to learn. As you gain experience, for instance, in tuning SQL code you start to...
October 28, 2013 at 2:09 am
Revenant (10/25/2013)
Luis Cazares (10/25/2013)
October 25, 2013 at 11:57 pm
SQLDCH (10/24/2013)
Game is on in an hour so, get those lineups updated.
Matchups:
SSC Steelers (3-4)...
October 25, 2013 at 4:53 am
Jeff Moden (10/20/2013)
sqlserver12345 (10/20/2013)
I do not want to use reverse function.please check the code I posted and correct what wrong I did.thanks
I'm curious... please explain why you don't want to...
October 20, 2013 at 1:36 pm
Short circuited the loop even more:
declare @Str1 varchar(10) = 'ABBA';
declare @IsPalindrome bit = 1;
declare @LoopCnt int = 0;
while @LoopCnt < len(@Str1) and @IsPalindrome = 1 and (1 + @LoopCnt <...
October 20, 2013 at 3:20 am
And if you must use a loop then how about this?
declare @Str1 varchar(10) = 'ABBA';
declare @IsPalindrome bit = 1;
declare @LoopCnt int = 0;
while @LoopCnt < len(@Str1) and @IsPalindrome = 1
begin
select...
October 20, 2013 at 3:00 am
sqlserver12345 (10/20/2013)
I do not want to use reverse function.please check the code I posted and correct what wrong I did.thanks
And what is wrong with using the reverse function?
October 20, 2013 at 2:39 am
Viewing 15 posts - 7,156 through 7,170 (of 26,490 total)