Viewing 15 posts - 1 through 15 (of 65 total)
Thank you! that worked. you are awesome!
December 5, 2022 at 7:11 pm
I'm running into the same issue for SQL Server 2016. Does anyone have a solution for this?
September 16, 2021 at 5:38 pm
Doing an inventory of where SSIS & SSRS is installed, not databases.
December 31, 2016 at 12:58 pm
Would it be possible to do this at the database instance level?
December 30, 2016 at 10:49 am
Thank you, much appreciated! Exactly what i was looking for.
December 30, 2016 at 8:40 am
I agree with this solution, by building a master table or a Temp table, throwing all your data in their first, than exporting to Excel. much simpler.
December 30, 2016 at 6:56 am
Great Thanks for letting me know.
January 2, 2016 at 12:48 pm
Thank you! really appreciate it.
January 21, 2015 at 7:52 am
Does anyone have a copy of the ssis package from the article?
July 26, 2012 at 8:54 am
DECLARE @XML XML
SET @XML = N'<baseEmployeeDepartmentReln>
<relationships>
<Employee>
<empId>1</empId>
<empName>Ramu</empName>
</Employee>
<Department>
<deptId>1</deptId>
<deptName>Electrical</deptName>
</Department>
</relationships>
<relationships>
<Employee>
<empId>2</empId>
<empName>Ramana</empName>
</Employee>
<Department>
<deptId>1</deptId>
<deptName>Electrical</deptName>
</Department>
</relationships>
<relationships>
<Employee>
<empId>3</empId>
<empName>Raju</empName>
</Employee>
<Department>
<deptId>2</deptId>
<deptName>InformationTechnology</deptName>
</Department>
</relationships>
</baseEmployeeDepartmentReln>'
SELECT
DV.Employee_Id
,DV.Employee_Name
, DV.Department_Id
, DV.Department_Name
FROM @XML.nodes('./baseEmployeeDepartmentReln/relationships')
AS T(relationships)
CROSS
APPLY ...
July 24, 2012 at 8:04 am
What exactly are you trying to do. Please provide a detailed description.
February 28, 2012 at 5:59 am
Thanks everyone for your responses. I really appreciate it.
February 17, 2012 at 3:08 pm
tried that, but still getting same error. Thanks though.
September 1, 2011 at 8:50 am
Viewing 15 posts - 1 through 15 (of 65 total)