Viewing 15 posts - 1,051 through 1,065 (of 8,731 total)
Hi,
I have been looking all over the net...
August 3, 2017 at 9:45 am
I just got an email containing this:
Luis,
Do you have any update on adding the indexes on production.
August 3, 2017 at 9:29 am
Or you could use LIKE.
SELECT *
FROM YourTable
WHERE YourColumn NOT LIKE '%[^a-zA-Z ]%';
There's a double negative there. It mentions to get the...
August 3, 2017 at 8:10 am
You can propose them to use ROT-5 encoding and even using it twice for improved security.
Then, you can let them know that they shouldn't be taking shortcuts on data...
August 3, 2017 at 7:17 am
Here's an option on how to do it. I'm not sure if it's the optimal way.
--Using SELECT
SELECT *
FROM #ACT o
OUTER APPLY (SELECT...
August 2, 2017 at 12:58 pm
Need some help in updating one column, I come up with some sample data.
Create...
August 2, 2017 at 12:15 pm
Or you could remove the REPLACE altogether with a different format code.SELECT CONVERT (char(10), GETDATE(), 101) AS DOB
But I agree with leaving the formatting in...
August 2, 2017 at 6:19 am
August 2, 2017 at 6:13 am
August 2, 2017 at 6:08 am
I'll repeat it.
You're querying too many rows. The estimates show about 12M rows.
That said, I wonder what would happen if you add a JOIN hint. Try adding the...
August 1, 2017 at 11:03 am
The issue is that you're selecting all the rows. To be able to take full advantage of an index, you need to limit the results.
You're obfuscating the query by...
August 1, 2017 at 10:22 am
July 31, 2017 at 9:27 am
I'm not sure if this would work (I've never tried it), but you might want to test it.
Rebuild the clustered index with a fill factor that allows enough room...
July 31, 2017 at 9:14 am
July 31, 2017 at 8:53 am
Viewing 15 posts - 1,051 through 1,065 (of 8,731 total)