I do a lot of work with SQL Server, and I’m often bouncing in and out of domains, using VPN to remote sites, etc. I always thought that you couldn’t connect using Windows Authentication to a SQL server in a different domain, so I’d remote desktop in and use SSMS on that machine.
But it turns out there’s a way!
- Open Administrative Tools > Credential Manager (Control Panel > Stored Usernames and Passwords in older versions).
- Add a Windows credential
- Use the fully qualified domain name for the server, followed by the SQL Server port, for example:
server.domain.com:1433
- Enter your fully qualified domain user, for example:
domain\user
- Your domain password
Now you can connect to that server in SSMS! Use the fully qualified domain name there too (no port this time): server.domain.com
. It'll show your local user in the disabled user segment there, but actually pick up the credentials you entered before.
Of course, the proper ports will have to be open, etc. but if you’re connecting through VPN that should be handled.
Yesterday, I wrote about how to grab Git commit statistics for author by date. I also work on some projects that use Subversion. It’s a bit tougher to grab insertion/deletion data with SVN but I came up with a way: grab the diffs for a day and parse them.
Of course, because SVN has to go and be different, the date filter also doesn’t work how you expect – it includes the first rev before that day. There’s even a note on it in the docs: http://svnbook.red-bean.com/en/1.7/svn.tour.revs.specifiers.html (the “Is Subversion a Day Early” box at the bottom).
So we’ve got to skip the first revision. Unfortunately, PowerShell processes output line by line, so we’ve got to join all the lines together, split to revs by regex, and then split out the lines again.
This works, even if it isn’t elegant. As Blaise Pascal said, “I have only made this ... longer because I have not had the time to make it shorter.” If the PowerShell pros know a better way to do this, hit me up.
Just like the git version, swap out my name for yours and the dates with todays date:
((((svn log --search chris -r '{2016-01-25T00:00:00}:{2016-01-25T23:59:59}' --diff) -join "`n" -split "-+\nr\d+", 0, "multiline") | ? { $_ }) | select -skip 1) -split "\n" | Select-String '^([+-]) ' -AllMatches | ForEach-Object { $_.Matches } | ForEach-Object { New-Object psobject -Property @{ Adds = if ($_.Groups[1].Value -eq "+") { 1 } else { 0 }; Deletes = if ($_.Groups[1].Value -eq "-") { 1 } else { 0 } } } | Measure-Object -Property @("Adds","Deletes") -Sum
And the output:
Count : 504
Average :
Sum : 402
Maximum :
Minimum :
Property : Adds
Count : 504
Average :
Sum : 102
Maximum :
Minimum :
Property : Deletes
I read this post the other day: How To Compete Against Yourself: Don’t Do Your Best, Do Better Than Your Personal Average. It’s got some great points on how to establish better habits and be more productive.
One of the big points was to find measurable stats and track them, and try to beat your average (not your best, because you’re putting out a high level of effort constantly which will burn you out).
I though to myself, “self, what’s a good stat for coding?” Doesn’t have to be a perfect model, but something simple and traceable. I thought of grabbing lines changed per day.
I did a bunch of research, and there’s not an easy way to get that data, not from git tools, not from github stats.
So I wrote the following PowerShell snippet that grabs the entire git log by author and date, parses the insertion/deletion counts, and sums it all up:
git log --pretty=oneline --shortstat --no-notes -C --after 2016-01-22 --before 2016-01-23 --author=chris | # grab git log. replace dates and author
Select-String '(\d+) insertion.*?(\d+) deletion' -AllMatches | # find insertion/deletion line and capture values
ForEach-Object { $_.Matches } | # pull in the regex
ForEach-Object { New-Object psobject -Property @{ Adds = $_.Groups[1].Value; Deletes = $_.Groups[2].Value } } | # for each match, capture adds/deletes into a ps object
Measure-Object -Property @("Adds","Deletes") -Sum # sum up the values
Replace my name with yours and use the dates you want (after yesterday and before today) and you’ll get some useful output like:
Count : 7
Average :
Sum : 704
Maximum :
Minimum :
Property : Adds
Count : 7
Average :
Sum : 95
Maximum :
Minimum :
Property : Deletes
I’m sure someone with some better PowerShell-fu could simplify the snippet. If that’s you, let me know!
How do you get a numeric-only string and ignore all non-numeric characters, using just standard SQL functions? There’s SQL replace and pattern functions, but they only work once on a string. So barring 53 nested REPLACE functions, it’s tough. I’ve run into this issue many times before while writing import scripts and the like.
Today, I had a stroke of brilliance – what if it could be done using FOR XML and spt_values to parse the entire string? A bit of googling and stack overflowing later, and some gluging of different parts together, and I came up with the following:
SELECT
(SELECT CAST(CAST((
SELECT SUBSTRING(FieldToStrip, Number, 1)
FROM master..spt_values
WHERE Type='p' AND Number <= LEN(FieldToStrip) AND
SUBSTRING(FieldToStrip, Number, 1) LIKE '[0-9]' FOR XML Path(''))
AS xml) AS varchar(MAX)))
FROM
SourceTable
Replace SourceTable with your table and FieldToStrip with your field, and away you go. If you want to include other allowed characters, change the pattern in the LIKE -- that specifies which characters to retain. All other fields will be removed.
Every time I need to set up a new server with Web Deploy/MSDeploy, I end up having to do a bunch of googling and tweaking and it never ends up being simple. The error messages are so arcane it's hard to know what the issue is when it doesn't work. There are several different ways to set up Web Deploy as well, from the IIS management service to a separate web deploy service. It’s fairly straightforward once you’ve got a good procedure to follow, but there are so many moving parts and the docs are horrible – fragmented blogs strewn everywhere each with a piece of the puzzle.
This most recent time I put together a comprehensive guide while I was working through the configuration.
First, set up IIS remote management services. You can do this through the UI:
- Open role manager
- Web Server -> Add Role Services
- Management Tools -> Management Service
- Open IIS Manager
- <servername> -> Management Service
- Check "Enable Remote Connections"
- Check "Windows or IIS Manager"
Or batch file commands:
dism /online /enable-feature /featurename:IIS-WebServerRole
dism /online /enable-feature /featurename:IIS-WebServerManagementTools
dism /online /enable-feature /featurename:IIS-ManagementService
reg Add HKLM\Software\Microsoft\WebManagement\Server /V EnableRemoteManagement /T REG_DWORD /D 1
net start wmsvc
sc config wmsvc start= auto
Then, set up the Web Deploy service and connect it to IIS Manager:
Finally, set up a delegation rule to allow users to create applications. This is called a "Mark Folders as Applications" rule, using the createApp provider. If your applications are already existing and won't be created during deploy, you still need this because the rule is used required to verify that the application exists. You can skip the modify grant permission on applicationHost.config if you'll never be actually creating an application during deploy.
- Create a user account (I call it "CreateAppUser")
- Grant read permission to %windir%\system32\inetsrv\config.
- Grant modify permission to %windir%\system32\inetsrv\config\applicationHost.config. Skip this step if you won't be creating any applications during deploy
- Open Management Service Delegation in IIS Manager
- Add a Mark Folders as Applications Rule
- Set the CreateAppUser as the Run As user, using a Specific User type
- Click OK and a Add User To Rule dialog will come up
- Enter * in the Name and click OK. This will allow all users to create applications.
And… done!
The first time you open VS and try to publish, go through the whole wizard to make sure settings are correct. You'll likely get a popup about the untrusted certificate used by IIS Manager -- accept the certificate.
You also may need to add the following rules (templates are included in the Add Rule box) to do a full publish:
- Deploy Applications with Content
- Set Permissions for Applications
When you set those up, use the defaults, and * for the Name in the Add User To Rule dialog.