This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| findstr /s mystring ./* | |
| findstr /s "my string with spaces" ./* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DECLARE @searchValue NVARCHAR(255) = '1856' -- Text or Number (text is converted in number if necessary) | |
| IF OBJECT_ID('tempdb..#SearchResults') IS NOT NULL | |
| BEGIN | |
| DROP TABLE #SearchResults | |
| END | |
| CREATE TABLE #SearchResults ( | |
| TableName NVARCHAR(128), | |
| ColumnName NVARCHAR(128), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| * { | |
| letter-spacing: 3px; | |
| text-shadow: -3px 0 1px cyan, 3px 0 1px red; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --Run using | |
| -- exec SearchAllTables 'my Search' | |
| --maybe edit the order By at the very bottom of this file | |
| -- drop proc SearchAllTables | |
| CREATE PROC SearchAllTables | |
| ( | |
| @SearchStr nvarchar(100) | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ;you have to re-map the f keys so they work. | |
| ;Otherwise AHK will just 'wait' for the number key after - if there is non then nothing happens | |
| f1::f1 | |
| f2::f2 | |
| f3::f3 | |
| f4::f4 | |
| f5::f5 | |
| f6::f6 | |
| f7::f7 | |
| f8::f8 |