RVRohit Varmainrohit36a.hashnode.dev·Jun 5, 2023 · 6 min readInterview Questions - Part1Conditions for a garbage collection What triggers the garbage collector Garbage collection occurs when one of the following conditions is true: The system has low physical memory. The memory size is detected by either the low memory notification fro...00
RVRohit Varmainrohit36a.hashnode.dev·Jun 5, 2023 · 1 min readDot Net Core Hosting in VMInstall: · aspnetcore-runtime-2.2.8-win-x64· dotnet-hosting-3.1.15-win· WebPlatformInstaller_x64_en-US Task 1: Setting the localhost to hostname (In hosts file) 1. Win+R type drivers 2. Go to etc folder and edit hosts 3. Add 127.0.0.1 relate247-api....00
RVRohit Varmainrohit36a.hashnode.dev·Jun 5, 2023 · 3 min readSQL Tips and TricksScenario when we need to filter specific select cases with joins SELECT DISTINCT ProgramID ,STUFF(( SELECT '|' + t1.TrancID FROM @TBL_ReportColumns T1 WHERE T1.ProgramID = T2.ProgramID FOR XML PATH('') ), 1, 1, '') AS TransactionCode --,trancName,tr...00
RVRohit Varmainrohit36a.hashnode.dev·Jun 5, 2023 · 1 min readProcess to Set Up a new Web App in IIS**1. Go to path: %systemroot%\system32\inetsrv and get password using command: rri\svc_relate using appcmd list apppool “QARelate” /text: *2. Create apppool DevRelateAPI in rcdlslaprlt001 similar to how it’s in Server0013. Set apppool’s identity to b...00
RVRohit Varmainrohit36a.hashnode.dev·Jun 5, 2023 · 2 min readGit Rebase Vs MergeShort Version Merge takes all the changes in one branch and merges them into another branch in one commit. Rebase says I want the point at which I branched to move to a new starting point So when do you use either one? If you only ever rebase com...00