Viewing 15 posts - 5,956 through 5,970 (of 8,731 total)
It might be because you don't need the brackets to escape the underscore.
The other problem is because if the pattern is not found, then you'll get a zero as the...
August 20, 2014 at 2:03 pm
I just wanted to note that the performance of DelimitedSplit8K function won't be affected if it receives a varchar(max) as input. It will, however, truncate the string to a 8000...
August 20, 2014 at 1:38 pm
I'm not sure if this can work for you. Seems simple but I can't guarantee performance.
WITH cteText(string) AS (
SELECT 'oh_look_at_this.thing.his\hers_stuff\mine.craft\yours_protein' UNION ALL
SELECT 'i.am.a._thing.hers\his_things\mine.refrigerator\yours_potato' UNION ALL
...
August 20, 2014 at 12:57 pm
Ed Wagner (8/20/2014)
Lynn Pettis (8/20/2014)
Lynn Pettis (8/20/2014)
Ed Wagner (8/20/2014)
August 20, 2014 at 11:55 am
Why don't you remove permissions to developers on production?
August 20, 2014 at 10:49 am
Maybe something like this:
SELECT StudentID,
FirstName,
Course ,
Score ...
August 19, 2014 at 4:53 pm
hamptonmom2009 (8/19/2014)
I have about 305K lines. 🙂
Why is that a problem? Or it isn't?
August 19, 2014 at 3:20 pm
How about using another column on the spreadsheet to generate the (revoke?deny?) statements by concatenating some values?
Then you'll just need to copy that column and execute it.
It's just a thought.
August 19, 2014 at 2:39 pm
Scott Coleman (8/19/2014)
August 19, 2014 at 1:42 pm
I was just trying to group a table by weeks. My manager told me to use a table like the following (I've changed the names and I have no control...
August 19, 2014 at 12:56 pm
Lynn Pettis (8/19/2014)
Granted, it is a non-profit...
August 19, 2014 at 11:11 am
CELKO (8/19/2014)
I'm working on setup where we have period like 201401 ( jan 2014), etc... And it is INTEGER , however it doesn't help if you need to...
August 19, 2014 at 11:01 am
garry.lovesey (8/19/2014)
This is RBAR processing at its worst !!!
You're absolutely right. This was made by someone who heard that cursors were bad and replaced them with while loops.
If you can...
August 19, 2014 at 8:29 am
No, the expression inside a COUNT() will only matter if it can return null values. Otherwise, is the same to use a constant, an asterisk or any non nullable column....
August 18, 2014 at 6:40 pm
I'm sorry, I didn't realize that.
Let me start with the basics.
A script is a file that contains code. This is true for any programming language.
A stored procedure is a...
August 18, 2014 at 6:18 pm
Viewing 15 posts - 5,956 through 5,970 (of 8,731 total)