Josh
Josh
dataTablesPattern is expecting a regex expression; `--dataTablesPattern "^(?!ignoreMe|ignoreMeToo|ignoreAnotherOne$).*"`
dataTablesPattern is expecting a regex expression; `--dataTablesPattern "^(?!ignoreMe|ignoreMeToo|ignoreAnotherOne$).*"` Not sure that it handles the schema though.
I know what you mean about Management Studio. I usually use SQLCMD to execute large scripts. Not as fast as BCP, but not as fiddly to set up, and doesn't...
Thanks for you message. It is useful to know that it can be done this way too. I use this as part of my automated build process so with a...
Based on @Fishwaldo reply here; https://community.home-assistant.io/t/can-we-revisit-the-move-to-qt-openzwave/262612/140?u=tlf I think it's unlikely that you'll get a response for a while. IMHO the best you can do is just create PR's with the...
@robertsLando I was thinking on Openzwave, zwave-js will need to be the new masters if qt-openzwave is no longer being maintained, but I just wanted to point out that you...
``` auth: - user: dockerSamba group: dockerSambaGroup uid: 1000 gid: 1000 password: dockerSambaSecurePassword global: - "force user = dockerSamba" - "force group = dockerSambaGroup" share: - name: data comment: Public...
Just to add a couple of thoughts here, as I'm battling with JWT authentication since upgrading to 8.x this week. There doesn't seem to be any complete end to end...
I should provide an example for repro; ``` public JsonWebTokenHandler TokenHandler { get; set; } = new JsonWebTokenHandler(); public AuthenticationResponse CreateToken(AppUser user) { var expiration = DateTime.UtcNow.AddMinutes(TokenExpirationMinutes); var token =...
In the meantime I wrote a Powershell script that achieves the same thing; https://gist.github.com/jhelmink/b579ae0e1494b9b4ef497311c8a11754 It just queries your database for all the base tables, excluding any you don't want, and...