Viewing 15 posts - 91 through 105 (of 347 total)
Still not able to figure out . 🙁
January 10, 2017 at 6:46 am
Sorry that's about it . No new requirement .
Thanks!
January 9, 2017 at 11:41 am
Is there anyway I can add new columns TextID and NameID for the numeric fields for Text and Names field ?
--Something like the below resultset
SELECT 1 AS ID,...
January 9, 2017 at 10:33 am
Thanks .I will try the solution posted by you shortly and would revert back .
January 9, 2017 at 9:31 am
It's multiselect SharePoint data that is causing problem.
January 9, 2017 at 8:58 am
SELECT 1 AS ID,'BRZ Brazil' AS Texts ,'Name3' AS Names UNION
SELECT 2 as ID,'BRZ Brazil' AS Texts ,'Name1' AS Names UNION
SELECT 2 as ID,'VEN Venezuela' AS Texts ,'Name2' AS Names...
January 9, 2017 at 7:49 am
What if there are more than one field where same split needs to be done ?
CREATE TABLE #Split
(
ID INT,
Texts NVARCHAR(100),Names nvarchar(100)
...
January 9, 2017 at 7:28 am
I could it get it working ..
SELECT
pr.Title AS ProjectRoot , pr.ID AS ParentID,
wf.Title AS WorkFlow , wf.ID...
January 6, 2017 at 1:34 pm
Thanks Luis. It work perfectly .
If I have to add another level (Attribute2 and AttributeID2) how can I achieve it ?
I tried adding JOIN #MyTestTable pa2 ON sp.ChildID =...
January 6, 2017 at 1:13 pm
Not sure what I need to fix and where in environment variables. Can you please elaborate ?
December 13, 2016 at 9:16 am
Viewing 15 posts - 91 through 105 (of 347 total)