Viewing 15 posts - 841 through 855 (of 926 total)
what do you mean by output from the trigger. do you want to fill log table from a trigger?
December 5, 2013 at 6:29 am
Use the following query
select @cols = STUFF((SELECT ',' + QUOTENAME(Date)
FROM #distinctDate
Order by [year], MonthNumber
FOR XML PATH(''), TYPE).value('.', 'NVARCHAR(MAX)'),1,1,''
)
I have remove the distinct, if you want to distinct the record...
December 5, 2013 at 6:19 am
Refer to the following link http://technet.microsoft.com/en-us/library/ms179254.aspx
December 5, 2013 at 6:09 am
Mark Eckeard (12/5/2013)
December 5, 2013 at 5:52 am
i hope i understand it right,
you need to join the table "tbl_acyear_lookup" with the query to
Select TargetID, Academic_Year_id, Course_Mode, UK_Enrol, Int_Enrol, Notes, Revision_Number
, ACY.academic_year
from
(SELECT ROW_NUMBER() OVER (partition...
December 5, 2013 at 5:41 am
you need to Convert/Cast this value in Time to be inserted properly.
whether its 2000 or 2008.
December 5, 2013 at 4:49 am
just to get an idea. that you are looking for Alternative of SSAS. Am i right ?
December 5, 2013 at 4:44 am
=Today() 'returns date only
=Now() 'returns date and current timestamp
December 5, 2013 at 2:47 am
Share a sample how you want to view the result set. The details u shared is not helping
December 4, 2013 at 10:49 pm
i almost clicked on "YES". 😛
Thanks for sharing
December 4, 2013 at 10:46 pm
Phil Parkin (12/4/2013)
abhas (12/4/2013)
Thanks twin,but again interrupting.
linked server is already defined and i am able to select records using the linked server. Facing issue with merge statement only.
please help.
thank you
Have...
December 4, 2013 at 10:35 pm
okay ... have u tried to execute this package locally what error it give u
December 4, 2013 at 10:32 pm
Add the Destination Server through "sp_addlinkedserver" For more detail refer to the following http://technet.microsoft.com/en-us/library/ms190479.aspx
December 4, 2013 at 7:54 am
Koen Verbeeck (12/4/2013)
twin.devil (12/4/2013)
SSIS Package extension is "dtsx" not "dstx".Nicely spotted 😀
Appreciated 😎
December 4, 2013 at 7:48 am
David Burrows (12/4/2013)
Did you set the length in both the input and output properties for the column?
+1, i think you have many set the length of the output columns of...
December 4, 2013 at 6:21 am
Viewing 15 posts - 841 through 855 (of 926 total)