Viewing 15 posts - 586 through 600 (of 1,246 total)
October 2, 2017 at 9:09 pm
vsamantha35 - Sunday, October 1, 2017 11:50 AMThanks Jason for the help.
Glad to help. Hopefully one of those should help. 🙂
October 1, 2017 at 11:48 pm
Without an actual execution plan. table structure or index info, we're just stabbing in the wind... Based on the code pattern alone... Here a few alternatives that are logically equivalent...
September 30, 2017 at 6:31 pm
September 30, 2017 at 12:54 pm
September 30, 2017 at 3:19 am
This should do the trick.-- Test data ...
IF OBJECT_ID('tempdb..#TABLEA ', 'U') IS NOT NULL
DROP TABLE #TABLEA;
CREATE TABLE #TABLEA (
PK_ID INT NOT...
September 30, 2017 at 1:08 am
I like executing all my SELECT queries using the TABLOCKX hint... I'm selfish like that... 😀
September 29, 2017 at 12:29 pm
September 28, 2017 at 10:41 pm
September 28, 2017 at 6:05 pm
September 28, 2017 at 12:30 pm
If you can get the raw file into a staging table, you can use something like the following to get into the shape you're looking for.
--...
September 27, 2017 at 10:47 pm
September 27, 2017 at 11:19 am
Sorry to ask, but is anybody here able...
September 26, 2017 at 8:59 pm
I just wanted to give everyone, Tom, Jeff, Hugo, Wayne & Steve a huge THANK YOU for providing your input, sharing your experiences and providing links to additional resources...
I'm...
September 26, 2017 at 8:47 pm
Viewing 15 posts - 586 through 600 (of 1,246 total)