Showing posts with label Technical. Show all posts
Showing posts with label Technical. Show all posts

Tuesday, 27 August 2019

Recursively look for files containing a keyword using Powershell

To recursively look for files containing a keyword in the code base, below Powershell script can be used.


set-location "CodeBaseFolder" 
Get-ChildItem -Recurse -File | Select-String  -Pattern "PatternToLook" | Select path, LineNumber, Line | Export-Csv C:\OutputFolder\KeywordPresence_InCodeBase.csv -NoTypeInformation

Wednesday, 4 February 2009

Hello World !!!

Hello World,

Through this blog, I am going to ruminate over lots of technical stuff around databases.

Hoping to provide quality content to you all.

/Venkat

How to Handle SSIS Database movement from one environment to another

Below are the steps to follow the movement of SSISDB from one environment to another: -- opening the existing Database master key in S...