Viewing 15 posts - 406 through 420 (of 13,841 total)
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
Are you working with Azure SQL databases (not managed instance)? Adding your user as DB_OWNER for each of the databases of interest should get you over the line.
May 13, 2024 at 9:41 am
All of my work is by remote desktop, and I find Windows does not manage multi-monitor RDP support very well. It frequently gets confused with windows placements, moving them...
May 13, 2024 at 7:47 am
Phil,
At this point everything is on the table! Any info you can give on this would be appreciated. We would be using ADF for this work as well. It...
May 10, 2024 at 2:15 pm
I suspect that encrypting the entire file after it has been created would be an easier process. Is that a possibility?
May 10, 2024 at 1:43 pm
I also use multiple Desktops, usually four. I've got a programmable keyboard, which I've configured to move me around the desktops quickly.
I'm curious about your setup for your...
May 10, 2024 at 1:41 pm
You say that locking down security is not an option, but it should be.
Setting up a process such that your BIM only gets deployed from a VCS is the way...
May 10, 2024 at 10:10 am
Viewing 15 posts - 406 through 420 (of 13,841 total)