Viewing 15 posts - 5,311 through 5,325 (of 15,381 total)
That is rather strange but it should work fine.
April 2, 2014 at 11:53 am
Thank you for the motivation. I have been meaning to finish my article about using guids as primary keys. I have been swamped at work lately but I have also...
April 2, 2014 at 11:38 am
Luis Cazares (4/2/2014)
April 2, 2014 at 11:35 am
asita (4/2/2014)
i have a table with 500k rows, need to split into 3 sets(please assume need to insert 500k into 3 tables)
Segment column has 3 values SEG,MOR,CLN
Balance...
April 2, 2014 at 11:24 am
JoshDBGuy (4/2/2014)
April 2, 2014 at 10:35 am
Your answer starts here. http://weblogs.sqlteam.com/jeffs/archive/2008/05/13/question-needed-not-answer.aspx
You need to post details with your questions instead of vague scenarios with no information.
April 2, 2014 at 8:36 am
RonKyle (4/2/2014)
there are tasks which do justify the use of cursors
I'm sure this is true, but I haven't run into one yet. Once I thought I had, but...
April 2, 2014 at 8:35 am
Since you said you are new to sql I would like to offer some suggestions.
You should use ANSI-92 style joins instead of the older ANSI-89 style. It is easier to...
April 2, 2014 at 8:30 am
But it does enforce that everybody uses the same exact code style because the style is actually part of the syntax. No arguments over:
if(SomeCondition){
DoSomething();
}
vs.
if(SomeCondition)
{
DoSomething();
}
April 2, 2014 at 8:15 am
Still seems quite strange. I can almost imagine the discussions in a bug tracker. "Oh I forgot to add an empty line to end the IF statement".
Or..."just added a tab...
April 2, 2014 at 8:13 am
I thought the question was a good one. However I too was trying to guess the 5th choice. I reread the question and it says
You're about to test updates...
April 2, 2014 at 7:49 am
GilaMonster (4/2/2014)
location = ''.join(['New','south','wales'])
"This will feel natural and elegant to the initiated."
and I thought readability was crucial.
Edit: The snide comments are more directed to the training course...
April 2, 2014 at 7:33 am
kevin_nikolai (4/1/2014)
Found that if you are calling the function Split in the where clause of many of your cte's as...
April 1, 2014 at 3:38 pm
JoshDBGuy (4/1/2014)
April 1, 2014 at 9:43 am
Maybe you can aggregate your data into another table, drop the current table and rename the newly created one?
Since you can't rename a temp table I changed your sample code...
April 1, 2014 at 8:58 am
Viewing 15 posts - 5,311 through 5,325 (of 15,381 total)