Viewing 15 posts - 10,576 through 10,590 (of 13,461 total)
for SQL 2000, there is a set of extended stored procedures right here on SSC that have a collection of encryption methods:http://www.sqlservercentral.com/articles/SQLServerCentral/sqlserver2000encryptiontools/2344/
the tools include the following:
The tools are extended stored...
September 1, 2009 at 9:39 am
Chandhini (9/1/2009)
In my Database, i need to create two different roles to access the db. one is for application and the other one is for development.
For application -...
September 1, 2009 at 7:56 am
here's the example i always reference from my snippets:
DECLARE @var VARBINARY(128),
@res NVARCHAR(64)
SET @var = CAST(N'Hello World' AS VARBINARY(128))
PRINT @var
--results: 0x480065006C006C006F00200057006F0072006C006400
SET @res =...
August 31, 2009 at 7:56 pm
i don't use complex foreign keys , but here is an example i whipped up for the syntax:
this foreign key references two columns in the parent table...limit is 16 i...
August 31, 2009 at 1:07 pm
gboyer (8/31/2009)
I am trying to find a count on all records in a table that have more the 2 numbers after the decimal point in an Amount Column. The field...
August 31, 2009 at 12:15 pm
Scott Solice (8/31/2009)
I could use Replace, Stuff,...
August 31, 2009 at 11:23 am
give us more info,
sounds like the query is big, so
save the actual query as a text file, and show us the estimated execution plan, saved as a .sqlplan file....
August 31, 2009 at 11:14 am
is there a performance problem or something that really requires those threads to be killed, or is it something you noticed and it bothers you?
a sleeping thread is not necessarily...
August 31, 2009 at 11:00 am
not enough information to give anything but a generalized guess;
There's two obvious places there is a slowdown :
if your web pages are in .NET, they are not compiled/loaded into memory...
August 31, 2009 at 9:53 am
Faye Fouladi (8/31/2009)
Request.QueryString("Contract_ID") is a vchar(100) and sometimes is coming a GUID.
When it is vchar(100)...
August 31, 2009 at 9:37 am
here's one I use that was posted by Jesse Roberge ; note this one features the 2005 option where you can INCLUDE other columns in the page data so it...
August 30, 2009 at 5:18 pm
well there are two ways to do it via TSQL;
the preferred way is like this:
ALTER LOGIN Victoria WITH PASSWORD = 'B3r1000d#2-36';
the old procedure sp_password can be used as well,a t...
August 28, 2009 at 9:54 am
I'd seen this before;
here's how i've done it, and i broke it down to help everyone understand.
the way it works is the first 3 digits is the century julian offset,...
August 28, 2009 at 9:44 am
Grant Fritchey, who contributes a ton of time helping people here on SSC wrote a couple of ebooks that you can download for free right here on SSC:
August 27, 2009 at 8:39 pm
Glad my example worked out for you;
sometimes it's the forest and the trees...hard to see the solution until you step back a bit.
i saw you are using functions that return...
August 27, 2009 at 6:50 pm
Viewing 15 posts - 10,576 through 10,590 (of 13,461 total)