maps://?q=LAT,LNG
geo:LAT,LNG
SELECT | |
'UPDATE ['+TABLE_SCHEMA+'].['+table_name+'] SET ['+column_name+'] = REPLACE(['+column_name+'], ''existing-text'', ''new-text'');' | |
--,table_name as [TableName] | |
--,column_name as [ColumnName] | |
--,TABLE_SCHEMA as [SchemaName] | |
from information_schema.columns | |
where data_type = 'nvarchar' | |
and character_maximum_length=-1 |
#!/bin/bash | |
# for a quick installation of this script run the following command | |
# bash <(curl -L https://gist.github.com/Dzoge/8adb0c80aabb12309c030663247a230a/raw) | |
# Update Packages | |
yum upgrade -y | |
# Install dotnet runtime | |
rpm -Uvh https://packages.microsoft.com/config/rhel/7/packages-microsoft-prod.rpm |