Home/Blog/Uncategorized
Topic

Uncategorized

219 posts in this collection.

Uncategorized

Temporary Table and Table Variables in SQL Server

Temporary Table The following code demonstrates how to create a temporary table.Syntax : [code:sql] CREATE TABLE #TempEmployee(employeeID int,employeeName varchar(100));[/code] This table is automatically dropped…

·2 min read
Uncategorized

Coldfusion Wrapper for jquery Autocomplete

For one of my project I required autocomplete box. I know coldfusion has its own autocomplete but has lots of limitation. I wanted autocomplete…

·11 min read
Uncategorized

Virtual Fix Table Header JQuery

There are so many ways to fix table header. We can fix table header row and rest of content of table will have overflow…

·1 min read
Uncategorized

Visitor’s Browser Window Display Area

To know the available display area in a visitors browser excluding the pixels occupied by the toolbars and other add-ons on the users browser…

·1 min read
Uncategorized

List All Databases, Objects, Tables by A Simple Single Line Query.

Try below query and see all databases and objects get listed in sql server. [code:sql]sp_msforeachdb ‘select "?" AS db, * from [?].sys.tables’;[/code]

·1 min read
Uncategorized

SQL Server Read Excel Sheet

Today we had a requirement to insert data into database from excel sheet. I used POI Utility to read data from excel sheet and…

·1 min read
Uncategorized

Clear Values of All Form Elements Using jQuery

I always wanted to have one common function to reset all form elements. Please have a look at jQuery code that does the same…

·1 min read
Uncategorized

Correct Method to check if a Javascript function is Exists or not

Hi everyone, Sometime you might want to call a function in Javascript but check whether the function exists or not before calling it. You…

·1 min read
Uncategorized

ColdFusion And AJAX File Upload

I have created simple jquery plugin for file upload. I have used multiple file upload in Ajax but it’s not possible to upload file…

·6 min read
Uncategorized

MsSQL – Copy Data from One Table to Another Existing Table

Today, there was a need to insert data from one table to another table. There are many ways to insert data from one to…

·1 min read
Uncategorized

Random Salt Password Encryption

Random Salt Password Encryption Technique[code:js]/* Client Side */function encryptPassword(){var salt = #session.salt#;var passField = document.getElementById(‘txtPassword’);// Submit this password value while submitting form.return md5(md5(passField.value) +…

·1 min read
Uncategorized

Find Longest Executing Queries in SQL Server (2005,2008)

I have been working with queries today and wanted to find some queries which was very high on its execution time. There was a…

·1 min read