Activity overview
Latest activity by kwilliams
... this is a hack, but if your not in a production environment, rolling back the minimum tls version will work
I create a new image with this DockerFile
FROM redgate/sqlcompare
RUN /bin/sh -c 'touch /etc/ssl/openssl_custom.cnf'
RUN /bin/sh -c 'echo "openssl_conf = openssl_init " >> /etc/ssl/openssl_custom.cnf'
RUN /bin/sh -c 'cat /etc/ssl/openssl.cnf >> /etc/ssl/openssl_custom.cnf'
RUN /bin/sh -c 'echo "[ openssl_init ] " >> /etc/ssl/openssl_custom.cnf'
RUN /bin/sh -c 'echo "ssl_conf = ssl_sect " >> /etc/ssl/openssl_custom.cnf'
RUN /bin/sh -c 'echo "[ ssl_sect ] " >> /etc/ssl/openssl_custom.cnf'
RUN /bin/sh -c 'echo "system_default = system_default_sect " >> /etc/ssl/openssl_custom.cnf'
RUN /bin/sh -c 'echo "[ system_default_sect ] " >> /etc/ssl/openssl_custom.cnf'
RUN /bin/sh -c 'echo "CipherString = DEFAULT@SECLEVEL=1 " >> /etc/ssl/openssl_custom.cnf'
ENV OPENSSL_CONF=/etc/ssl/openssl_custom.cnf
/ comments
... this is a hack, but if your not in a production environment, rolling back the minimum tls version will work
I create a new image with this DockerFile
FROM redgate/sqlcompare
RUN /bin/sh -c 'tou...
Help: ssl/tls pre-login handshake when accessing remote servers
While using your docker image pointing at a locally running sql server, works great, it fails when pointing to a remote server (see below)kevin@pc ~ $ docker run --interactive --tty \> --mount typ...
FIXED! update the latest version of Sql Prompt (9.5.0.9311) see this thread for the explanation
https://forum.red-gate.com/discussion/84956/sql-search-not-returning-any-results#latest
/ comments
FIXED! update the latest version of Sql Prompt (9.5.0.9311)see this thread for the explanation
https://forum.red-gate.com/discussion/84956/sql-search-not-returning-any-results#latest
Is it possible to roll back to the previous version? from now on I'll check the forum before blindly updating [image]
/ comments
Is it possible to roll back to the previous version?from now on I'll check the forum before blindly updating
I'm experiencing the exact same issue sql search v 3.2.6.2313 ssms v 17.9.1 the last error in my log (there's one for each database) 23 Apr 2019 17:23:19.115 [92] ERROR DatabaseObjectIndexer - Exception while indexing database tempdb: System.EntryPointNotFoundException: Unable to find an entry point named 'sqlite3_open_interop' in DLL 'SQLite.Interop.dll'. at System.Data.SQLite.UnsafeNativeMethods.sqlite3_open_interop(Byte[] utf8Filename, Byte[] vfsName, SQLiteOpenFlagsEnum flags, Int32 extFuncs, IntPtr& db) at System.Data.SQLite.SQLite3.Open(String strFilename, String vfsName, SQLiteConnectionFlags connectionFlags, SQLiteOpenFlagsEnum openFlags, Int32 maxPoolSize, Boolean usePool) at System.Data.SQLite.SQLiteConnection.Open() at RedGate.SQLSearch.Indexing.SQLite.SqliteDatabaseConnection.EnsureConnectionOpen() at RedGate.SQLSearch.Indexing.SQLite.SqliteDatabaseConnection.CreateCommand() at RedGate.SQLSearch.Indexing.SQLite.DatabaseObjectStorage.Initialise() at RedGate.SQLSearch.Indexing.DatabaseObjectIndexer.Index(CancellationToken ) / comments
I'm experiencing the exact same issue sql search v 3.2.6.2313ssms v 17.9.1the last error in my log (there's one for each database)23 Apr 2019 17:23:19.115 [92] ERROR DatabaseObjectIndexer - Excepti...
SQL SEARCH: How to create a default database filter per Server
I have the same set of database on my local, development, stage, etc servers.If I select database A on my local server, switch to the development server and select database B and then switch back t...
That did it. Thanks! That is also un-intuitive as all-get-out as it seems that the place for the Filter is in the projects Options tab. Anyway thanks for the help.
/ comments
That did it. Thanks! That is also un-intuitive as all-get-out as it seems that the place for the Filter is in the projects Options tab.Anyway thanks for the help.
v 13.4.5: how to ignore role definitions
given the following definition, what options need to be set to ignore the entire Create Role definition when comparing with SQL Compare 13.4.5..*?I've played with the options and while I can get th...
What is the prescribed workflow in place of shelvesets in TFS?
As the title says, what is the prescribed (from RedGate) workflow or workaround (from the community) for shelvesets.
I'm currently adding a folder to TFS with my sql scripts that I ignore when read...
Robert;
I installed that version, as soon as it was available, and returned the Comparison Options back to their defaults (re-enabled Throw Exceptions On SQL parser errors) .
So far it does appear to have solved these issues.
Thanks / comments
Robert;
I installed that version, as soon as it was available, and returned the Comparison Options back to their defaults (re-enabled Throw Exceptions On SQL parser errors) .
So far it does appear ...