Viewing 15 posts - 2,236 through 2,250 (of 13,874 total)
Excellent detective work there. I had not realised that file association arguments were stored like that in the Registry.
January 26, 2021 at 3:20 pm
Yeah, hoping that the script will execute on the remote server.
Unfortunately, it won't. It will instead try to execute locally.
But all is not lost, you can use Powershell Remoting...
January 24, 2021 at 2:25 pm
Are you hoping that the script will execute on the remote server? Or is that just the place where you store PoSh scripts?
January 24, 2021 at 11:49 am
Also, 'User Management' potentially sounds like something which should be handled by a single database.
January 24, 2021 at 11:47 am
Having a single database for all of the applications sounds like a bad idea – what if one app has to be restored but the others don't?
One DB per app...
January 24, 2021 at 11:42 am
Something like this?
CREATE TABLE #SomeValues (SomeData VARCHAR(50));
INSERT #SomeValues (SomeData)
VALUES
('1101BRZ')
,('BRZ')
,(' 1101BRZ')
,(' BRZ 1101')
,(' INSP');
SELECT
...
January 22, 2021 at 4:48 pm
You have >1000 points and therefore should know by now – please provide DDL and sample data to match your desired results.
January 21, 2021 at 3:22 pm
If you do each iteration in a branch and only merge those Jira items you want to promote into Main prior to deployment, you can generate a script by...
January 20, 2021 at 3:06 pm
January 20, 2021 at 2:47 pm
STRING_AGG() is your friend here, but the fact that it does not support DISTINCT (eg, to avoid John/John/David) complicates things somewhat. Here is one solution.
DROP TABLE IF...
January 20, 2021 at 12:52 pm
The format I had been using in Excel is: Format Cells --> Custom --> m/d/yyyy h:mm:ss
Excel technically only lists the custom format as: m/d/yyyy h:mm and I add the...
January 19, 2021 at 6:17 pm
Taking SQL Server out of the equation for a moment, can you find a data format which Excel interprets the way you want, on pasting?
Once you have that, post it...
January 18, 2021 at 11:11 am
Can you post the (sanitised as needed) definition of the TVF which returns the MemberIds to which the user has access?
January 16, 2021 at 1:38 pm
How is the list of members which a user is permitted to see defined?
Does the members table have a clustered index on MemberId (or whatever you have chosen to call...
January 15, 2021 at 3:33 pm
I see no 'nested loops' here. What do you mean? Looping in T-SQL would require the use of something like WHILE ...
Are you happy that this query may occasionally return...
January 15, 2021 at 10:07 am
Viewing 15 posts - 2,236 through 2,250 (of 13,874 total)