Viewing 15 posts - 541 through 555 (of 4,820 total)
Index maintenance is typically a DBA role, and should NEVER be relegated to users. Just doesn't sound like a good idea to me at all. Determining which method of dealing...
October 1, 2018 at 8:09 am
Entirely curiosity on my part, but has anyone tried testing that code with the Phrase column being varchar instead of nvarchar ? I don't have the time to do it...
October 1, 2018 at 7:52 am
September 28, 2018 at 10:05 am
Perhaps more importantly, what would you do with the information if you could actually get it?
September 28, 2018 at 9:34 am
craig.jenkins - Friday, September 28, 2018 6:55 AMActually, dont worry i'll just use that for each column. Many thanks for your help
That's...
September 28, 2018 at 9:31 am
September 28, 2018 at 6:54 am
I have a table...
September 28, 2018 at 6:46 am
Is there an easy way to remove commas. There are several commas which occur...
September 28, 2018 at 6:39 am
September 27, 2018 at 2:07 pm
Regex isn't necessary if all that needs doing is to replace every occurrence of curly braces. It really is as simple as:REPLACE(REPLACE(YourColumnName, '{', ''), '}', '')
That's just...
September 26, 2018 at 7:33 am
You may need a format file to allow BCP to properly deal with quoted strings, but I don't know BCP well enough to know for sure. Look at Microsoft's documentation...
September 26, 2018 at 7:24 am
September 26, 2018 at 7:17 am
That 2nd view is the cause of this. You must have multiple rows in the 2nd view that match on the JOIN condition of your LEFT JOIN for at least...
September 26, 2018 at 7:12 am
Viewing 15 posts - 541 through 555 (of 4,820 total)