Viewing 15 posts - 4,291 through 4,305 (of 15,381 total)
carrieathomer (6/26/2014)
i want continuous primary key integers without jump in values.
Yes you have said that. My question is why? What purpose does continuous values for a primary key provide?
the while...
June 26, 2014 at 1:41 pm
carrieathomer (6/26/2014)
that is reason using while statement and even if there is failure it is going to try again.
What is the reason? Are you saying you are using a while...
June 26, 2014 at 1:13 pm
To add to what Gail already pointed out:
Multiple execution paths.
Repeatedly hitting the same view with nonSARGable predicates (EnumKey != )
Tuning this is far more than an online forum is capable...
June 26, 2014 at 1:09 pm
And what about concurrency? It is possible you will get duplicate values when more than 1 person is executing this code at the same time. If your goal is to...
June 26, 2014 at 12:49 pm
sharonsql2013 (6/26/2014)
CREATE TABLE #mytable
(
Month_Year Varchar(10),
...
June 26, 2014 at 12:44 pm
jbalbo (6/26/2014)
Here is my final list(If interested..lol)
Yes the data came from an old foxpro db
Sorry, one more question , OK two....
one...
can I add...
June 26, 2014 at 12:41 pm
schleep (6/26/2014)
Sean, I'd be happy to hear any suggestions re: perf improvement.
The first suggestion is to remove the while loop that is replacing multiple spaces with one. Jeff Moden has...
June 26, 2014 at 9:44 am
sharonsql2013 (6/26/2014)
Month_Year MyMonth MyYear Group A ...
June 26, 2014 at 9:39 am
sharonsql2013 (6/26/2014)
June 26, 2014 at 9:13 am
You are attempting to delete the entire Keywords table because of this.
DELETE dbo.Keywords
WHERE @nKeyWord_IdArg = @nKeyWord_IdArg
You have the same variable on both side of the predicate. Pretty sure that all...
June 26, 2014 at 9:07 am
jbalbo (6/26/2014)
Now I get ...because it contains a character (0x0003)
I read that only &, < and > (as well as " or ' in attributes) are illegal...
June 26, 2014 at 8:52 am
Shakeelr4u (6/26/2014)
In the sql example that I gave you with the hardcoded programs, STORE2 was the Customer's Program and STORE was the Site's Program.
Please remember that those...
June 26, 2014 at 8:25 am
schleep (6/26/2014)
To paraphrase my post, "I'm...
June 26, 2014 at 8:22 am
That is char(14). Not sure how you managed to get that character in your data but you can just replace it with an empty string.
WITH CTE AS
(
SELECT DISTINCT CLINO
FROM Hill_Comments
WHERE...
June 26, 2014 at 8:18 am
jbalbo (6/26/2014)
I'm sorry, and I'm not trying to be a smartA$$...But could you give me an axample of wht you would like to see?
Thanks
If you want this in a single...
June 26, 2014 at 7:37 am
Viewing 15 posts - 4,291 through 4,305 (of 15,381 total)