This user account () has been banned from the forums
Viewing 15 posts - 76 through 90 (of 161 total)
Here you go.
BTW, I think the problem is with NULLs
CREATE TABLE OptionsetMetadata (
participationtypemask varchar(50),
instancetypecode varchar(50),
donotpostalmail...
July 8, 2022 at 7:01 pm
I should mention the table/view OptionsetMetadata was created as follows:
CREATE VIEW OptionsetMetadata
AS
with cte as (
select OptionsetName,
LocalizedLabel,
row_number()over(partition by optionsetname order by cast([option] as int)) as rn
from dataverse_montagu_org5a2bcccf.dbo.OptionsetMetadata
)
select
max(case when...
July 8, 2022 at 5:32 pm
First, really nice job on providing "Readily Consumable Data" AND it actually works without error! 😀
Thanks
July 3, 2022 at 10:40 pm
First, really nice job on providing "Readily Consumable Data" AND it actually works without error!
My pleasure
If I'm asking the community for help, I think it's only fair to make it...
July 3, 2022 at 8:16 pm
Hi Jeff,
Using the same test data I provided I wonder if you could help me build on your code to achieve an additional outcome.
July 3, 2022 at 7:26 pm
Jeff,
I'm going to have to be become very proficient with Pivot (CROSS TABS) with my company.
Thanks for the links
July 3, 2022 at 6:02 pm
Hi Jeff,
I think I'll be able to build on what you've provided for the other conditions.
Thanks
July 3, 2022 at 5:21 pm
Hello Community,
Sorry for supplying so much data in the sample table - I have noticed it has slowed down the page when I scroll.
Anway, I was wondering if I could...
July 3, 2022 at 1:35 pm
Hi All,
Please ignore this question. I don't know how to delete it.
I have a new question, which is based on Pivoting, not transposing..
July 3, 2022 at 7:50 am
Hi Jeff,
You are correct - this isn't very clear.
I'm going to rewrite this question. I have also realised that what I need is pivoting, not transposing.
Shall I just delete this...
July 3, 2022 at 7:49 am
Hi, just to be clear, I'm not expecting the dates 04/01/2019
03/01/2019
09/12/2021
03/01/2019
03/01/2019
To be in each Action. I was just being lazy by not...
July 2, 2022 at 11:19 pm
Hi Phil,
You have once again come through.
Thanks man
February 3, 2022 at 9:31 pm
Hi Phil,
That would be great.
You can forget about the TABLE_CATALOG
The ordinal_position represents the place a column appears in a table, which we can forget as I'm trying to work with...
February 3, 2022 at 6:31 pm
Hi Phil,
I have the tables and columns that I would like to extract, see attached. Ideally, I would like the tables to extracted as individual CSVs.
This request might need someone...
February 3, 2022 at 4:12 pm
Ratpak
Do you want the data flattened (in which case you'll get lots of duplicates at higher levels)? Do you want to return multiple results sets of more normalized data?
Are...
February 3, 2022 at 3:34 pm
Viewing 15 posts - 76 through 90 (of 161 total)