Viewing 15 posts - 2,221 through 2,235 (of 13,870 total)
sorry the requirement was an attachment and I was ask to paste thr attachment info rather which I have now done.
thanks
Is there a specific question there, or are you...
January 29, 2021 at 6:06 pm
Hi Guys
I need to write a procedure to validate an SA identity number (a SSN in the west). Please look at the attached doc for a detailed explanation.
Thank you...
January 29, 2021 at 5:27 pm
Deleted
January 26, 2021 at 4:18 pm
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
Bingo! Works a treat.
Many thanks
Andrew
Great! Thanks for posting back.
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
Viewing 15 posts - 2,221 through 2,235 (of 13,870 total)