SanOraLife
Few adventures in my slow running life...
(Move to ...)
Professional Experience
▼
Wednesday, April 23, 2025
SQL Server - Get all Tables and Columns from ALL Databases
›
This query below gives you All Tables with Columns in All the database in SQL Server: SET NOCOUNT ON DECLARE @AllTables table ( DbName sysn...
Wednesday, June 15, 2022
Microsoft Teams Takes forever to upload a file
›
Got annoyed with Teams taking forever to upload a simple file. Found that clearing Teams Cache would help and here are the steps to do so i...
Wednesday, March 23, 2022
Snowflake Constraint Column Details
›
At the time of this post, Snowflake did not have any dictionary view that gives the column names for constraints that are defined for a tab...
Tuesday, June 1, 2021
awk - Exclude or Include Records from a fixed-width file
›
The below command gets the records that have a value "new" in the given position (in this case the file was fixed-width). All othe...
sed - Add a line to all files
›
#below inserts a line at 1st row with the content " Added new line using sed " in all the files in the path for i in *; do sed -...
›
Home
View web version