1
2
3
Declare @Name varchar(128)
Declare @Table varchar(128)
...

C# On Cache SQL Server Views

by GateKiller, July 25, 2008 10:50

Just a couple of more chang...

98c852e2d9b26249745ea92c72964d3f Talk
1
Drop Table #Views

C# On Cache SQL Server Views

by GateKiller, July 25, 2008 10:20

Jonathan, Thanks very much ...

98c852e2d9b26249745ea92c72964d3f Talk
1
2
3
this.getHttpRequest(identifier).onreadystatechange = function() {
	ajaxChat.handleResponse(identifier);
};

JavaScript On AJAX makeRequest

by GateKiller, July 23, 2008 08:35

Does it work if you remove ...

98c852e2d9b26249745ea92c72964d3f Talk
1
2
3
Declare @Name varchar(128)
Declare cCursor Cursor LOCAL FORWARD_ONLY FAST_FORWARD READ_ONLY For Select Name From SysObjects Where XType = 'V'
...

C# On Cache SQL Server Views

by GateKiller, July 07, 2008 11:33

Thanks for the input guys :...

98c852e2d9b26249745ea92c72964d3f Talk
1
2
3
Declare @Name varchar(128)
Declare @Cursor Cursor
...

C# Cache SQL Server Views

by GateKiller, July 02, 2008 15:07, 7 refactorings, tagged with sql query unoptimized

Question: Is there anyway t...

98c852e2d9b26249745ea92c72964d3f Talk
1
2
3
4
// ***** Encryption and Decryption ***** //

byte[] Key(string sText) {
...

C# Encryption and Decryption

by GateKiller, June 20, 2008 14:00, 2 refactorings, tagged with Encrypt, Decrypt, C#

This is my first attempt at...

98c852e2d9b26249745ea92c72964d3f Talk