Viewing 15 posts - 2,431 through 2,445 (of 8,761 total)
This is elementary my dear Phil, your illness must have been quite serious 😉
😎
;WITH BASE_DATA AS
(
SELECT
T.Id
,X.CV
...
January 26, 2017 at 12:43 pm
How many columns are in the actual data set?
😎
January 26, 2017 at 12:25 pm
January 26, 2017 at 12:21 pm
January 26, 2017 at 12:04 pm
Here is a version with 0
😎
USE TEEST;
GO
SET NOCOUNT ON;
DECLARE @tbl_value TABLE (Code INT NOT NULL,Name VARCHAR(10) NOT NULL);
INSERT...
January 26, 2017 at 1:56 am
Quick suggestion (if I understood the requirements correctly)
😎
USE TEEST;
GO
SET NOCOUNT ON;
DECLARE @tbl_value TABLE (Code INT NOT NULL,Name VARCHAR(10) NOT NULL);
INSERT...
January 26, 2017 at 1:24 am
Strange, when I try this link to a thread https://www.sqlservercentral.com/Forums/FindPost1853845.aspx I get an error that the topic cannot be accessed but this here is fine https://www.sqlservercentral.com/Forums/1852932/Comma-separated-list#bm1853853
Has that specific post...
January 25, 2017 at 11:30 pm
Quick (obvious) thought if the JSON column is NULL then you may want to use OUTER APPLY
😎
USE TEEST;
GO
SET NOCOUNT ON;
IF OBJECT_ID('tempdb..#tmp',...
January 25, 2017 at 11:22 pm
January 24, 2017 at 8:14 pm
Just a quick thought, if you don't know the actual structure of the XML but you do know the name of the node element and a property value of that...
January 24, 2017 at 11:39 am
You are very welcome
😎
I did post few resources few weeks back on this thread
January 24, 2017 at 7:28 am
and not valueY from
<Property Name="paramB" Value="valueY" />
How...
January 24, 2017 at 6:46 am
Those two schemas are not the same
😎
Original schema
+--------------------+
| Execution |
+--------------------+
+--------------------+ | Execution_id |-+-----------,
| Questionnaire | ,--+<| questionnaire_name | |
|--------------------| | | Execution_date | | +--------------------+
| Questionnaire_name |-+---| +--------------------+ | | Execution_answer |
+--------------------+ | | +--------------------+
| +------------------------------+ '------+<| Execution_id |
+---------------+ | | Questionnaire_question_usage | ,------+<| questionnaire_name |
| Question | | +------------------------------+ | ,----+<| question_id |
+---------------+ '--+<| Questionnaire_name |>+-' | | answer_text |
| Question_id |-+-----------+<| Question_id |>+---' +--------------------+
| Question_text | +------------------------------+
January 24, 2017 at 6:17 am
Viewing 15 posts - 2,431 through 2,445 (of 8,761 total)