How to do case insensitive search in Vim - Stack Overflow 36 By default, all searches in vi are case-sensitive To do a case-insensitive search, go into command mode (press Escape), and type- :set ignorecase You can also type - :set ic as an abbreviation To change back to case-sensitive mode, type- :set noignorecase or :set noic in command mode
List of all index index columns in SQL Server DB - Stack Overflow How do I get a list of all index amp; index columns in SQL Server 2005+? The closest I could get is: select s name, t name, i name, c name from sys tables t inner join sys schemas s on t schema_i