Viewing 15 posts - 136 through 150 (of 600 total)
Lowell (3/9/2015)
March 10, 2015 at 1:31 pm
Thanks Lowell and Sergiy.
I assumed the ID values were being forced they were not.
Thanks again guys.
March 10, 2015 at 8:07 am
This is close -
http://dba.stackexchange.com/questions/45137/sql-server-agent-jobs-and-availability-groups
Thanks tho!
March 9, 2015 at 12:19 pm
Thanks wrong column...geez...need some more coffee today
March 6, 2015 at 9:57 am
ScottPletcher (2/27/2015)
select VC.COLUMN_NAME,
case when
ROW_NUMBER () OVER (
partition by C.COLUMN_NAME order by
CHARINDEX(',',VIEW_DEFINITION,CHARINDEX(C.COLUMN_NAME,VIEW_DEFINITION))-
CHARINDEX(VC.COLUMN_NAME,VIEW_DEFINITION)
) = 1
then 1
else 0 end
as lenDiff
,alias
,CHARINDEX(',',VIEW_DEFINITION,CHARINDEX(C.COLUMN_NAME,VIEW_DEFINITION))...
February 27, 2015 at 2:27 pm
Grant Fritchey (2/27/2015)
Yeah, a derived table or a Common Table Expression would allow you to do that. Sorry I didn't understand what you were asking.
my mistake Grant - I didn't...
February 27, 2015 at 2:26 pm
I don't think I explained this very well..let me try to do a better job.
A developer came to me yesterday and asked if he can reference the table/column alias he...
February 27, 2015 at 6:46 am
Oh okay. Thanks Lynn.
February 24, 2015 at 9:58 am
Thanks Lowell That worked perfectly.
Just curious why must that be converted to varchar?
January 28, 2015 at 9:05 am
Hi Phil.
I'd prefer to do it all in SSIS, but it's not a requirement.
Is there a way to do use an external file splitter and call it from SSIS?
January 15, 2015 at 1:16 pm
Thanks guys.
It may be okay in this instance - because the table is just being used as a dump table and gets truncated every run.
Thanks again everyone for...
January 15, 2015 at 12:13 pm
Great.
Thanks so much for all your help Matt.
So do I create a new temp table for every insert?
Do I have this correct? I think I am doing what you said...
October 20, 2014 at 7:18 am
Viewing 15 posts - 136 through 150 (of 600 total)