Viewing 15 posts - 436 through 450 (of 13,877 total)
Folders in Workspaces is now in Preview.
No need for SSAS, now that there are semantic models.
May 22, 2024 at 3:27 pm
IMO, migrating to Power BI 'Tabular Reports' from SSRS is super simple and worth investigating.
DF does not replace SSIS, however. We have tried to migrate and failed (and gone back...
May 22, 2024 at 9:37 am
thx chrissy i am assuming you are talking about this product and marking your post as an answer. https://www.sqlbi.com/tools/tabular-editor/
Did you try BISM Normalizer? Looks like the schema compare...
May 22, 2024 at 9:31 am
Are you looking to store the entire file as a single BLOB, or import its contents as individual columns?
May 21, 2024 at 10:20 am
You are correct in thinking that you need the TrustServerCertificate=true bit in your connection string. The latest version of SQL Server depends on it, unless you have a server cert...
May 20, 2024 at 7:21 pm
It really depends on the data.
Try injecting ''00X11' into your version. It removes the 'X', which is not one of the specified requirements. I'm all for elegant code, and maybe...
May 19, 2024 at 4:41 pm
The proposed solutions seem to be a bit more code than is needed:
SELECT *
, ActualID = substring(ss.Str1, patindex('%[1-9]%', ss.Str1), 25)
...
May 19, 2024 at 2:25 pm
DROP TABLE IF EXISTS #SomeString;
CREATE TABLE #SomeString
(
Str1 VARCHAR(25)
);
INSERT #SomeString
(
Str1
)
VALUES
('D00241')
,('00242 ')
,('Chicken Tikka Masala');
SELECT ss.Str1
,CASE
...
May 17, 2024 at 10:07 am
Here is another version of your query which looks a bit tidier (as it does not rely on DISTINCT to remove dupes). But I'm not sure it will perform any...
May 17, 2024 at 9:58 am
You could try BISM Normalizer.
I haven't used it, but it looks promising.
You may be able to automate the production of a schema comparison report with it.
May 14, 2024 at 3:36 pm
What do you want to happen in the case where the deployed version is found to be different from the VCS version?
May 14, 2024 at 12:20 pm
Please provide your sample data in consumable format (in the form of CREATE TABLE/INSERT statements).
If the format of your desired output is exactly as stated, you would be better off...
May 14, 2024 at 8:08 am
Are there some people who think that 'duplicate' means 'same or similar'?
If it's a duplicate, it is exactly the same and can be dropped. Otherwise, it is not a duplicate...
May 13, 2024 at 4:45 pm
It is just Azure SQL, not a SQL managed instance so it is not close to mssql on-prem server at all. Thanks!
Then either one of the responses given above...
May 13, 2024 at 3:02 pm
Simply DROP the index you no longer wish to keep.
May 13, 2024 at 1:06 pm
Viewing 15 posts - 436 through 450 (of 13,877 total)