Oracle SQL Developer cant find JDK JAVA.exe
This week I had fun with Oracle realm … I never though that it would be so much pain stepping out of MS world.. where everything happens at click of button… But any ways I though I would share few …
This week I had fun with Oracle realm … I never though that it would be so much pain stepping out of MS world.. where everything happens at click of button… But any ways I though I would share few …
I was trying to show Bing Map with Traffic Layer using JavaScript/Ajax and found pretty good example Here is complete Snippet. Just create a test HTML file and copy / paste snippet to see what it look like. Click …
I had real good challenge today. What I wanted was replace tons of method and put “_” at the end without manually going hundreds of rename. So I tried power of RegX search/replace option Here is full documentation about all …
Have you ever try to assign null to int value in C# or VB Both language has totally different behavior. VB allows you assign Nothing but it will translate to zero on the other end C# throws error “type is …
I compiled some tips and techniques for ReSharper AddIn for VisualStudio For those who don’t know what is ReSharper please check this link
PowerShell rocks but I still use DOS commands to automate many day to day tasks Here is a script which can loop through files and perform whatever actions you want As you can see that %%F will return full path …
How to loop through files in a folder using MS DOS batch file or Commandline Read more »
If you ever tried to cast string to XML data type in SQL Server then you may encounter this error select cast(xmldata as XML) from XMLFiles Msg 9402, Level 16, State 1, Line 1 XML parsing: line 1, character 54, …
unable to switch the encoding error with XML Data type Read more »
Have you ever got annoyed by C# IDE that you don’t find all errors until you compile project? If you ever worked with Visual Basic you will appreciate how much time saver it can be to detect all errors before …
This post shows how to find string in a file from MS DOS commandline ::findstr with /C: switch will search entire file for exact string findstr /M /C:"search-string-xyz" "C:\Files\MyLog.txt" > log_search_status.txt if %errorlevel%==0 ( echo SUCCESS – STRING FOUND ) …
How to search string in DOS Batch file from commandline using findstr Read more »
If you ever tried to automate your build process from commandline then here is easy way to compile your solution @echo off SET PROGRAM_32BIT=%ProgramFiles% if not "%ProgramFiles(x86)%" == "" set PROGRAM_32BIT=%ProgramFiles(x86)% ::TODO: I have this sample for VS2010 but change it …
How to compile Visual Studio Solution from commandline and check status in DOS BAT file Read more »