Viewing 15 posts - 12,271 through 12,285 (of 13,469 total)
here's the results of the second pass that Jeff asked for:
SQL2000/QA ...
October 21, 2007 at 9:12 am
ok here's some performance numbers from my machine, which has both SQL2000 and SQL 2005:
Jeff's inner join example took ...
October 21, 2007 at 7:55 am
I'm assuming the field is a varchar field,
you din't give an example but there's two methods to look at below;
if the values are always the same position, or the...
October 19, 2007 at 1:48 pm
this isn't what you want to here, I'm sorry.
.NET does not use codes to identify it's exceptions like VB 6.0 did. In
.NET, everything you encounter is a "type", including exceptions....
October 19, 2007 at 11:07 am
Best;
by simply clicking on your name and looking over your previous posts, it's obvious that the moment you encounter a question, you post it here first without ever attempting to...
October 19, 2007 at 10:47 am
so...
Your saying CLR's are for people who know sql, or people who don't know sql...I'm confused. 😉
October 19, 2007 at 4:54 am
the way to do that would be with a scalar function then:
Create Function dateConstant ()
returns datetime
AS
begin
return '01/01/2007'
end
select dbo.dateConstant()
October 19, 2007 at 4:48 am
i might be second guessing you, but i believe you want to change the date to a PARAMETER, and not a CONSTANT, right?
If my re-interpretation is right, then you want...
October 18, 2007 at 12:25 pm
something like this might get you closer to where you want to go... the fines are calculated, as well as the days delayed.
create table Borrowers(
MemberID int,
ItemID...
October 18, 2007 at 8:55 am
you'll have to save the winners in a table somewhere, in order to exclude them.
create table PreviousWinners(id int, Sample varchar(10))
select T1.ID,T1.Sample,MAX(RND) from T1,
Left Outer Join PreviousWinners on T1.Id=PreviousWinners.Id AND T1.Sample...
October 18, 2007 at 8:27 am
i don't think you can use a calculated column in this case, because the penalty amount resides in a different table(P as Penalty Table) than the items that determine the...
October 18, 2007 at 5:50 am
no i don't think your missing anything; an encyption method is a style to do it back and forth, but the actual implementation is not going to be the same...
October 18, 2007 at 5:07 am
The DBA Toolkit found here on SqlServerCentral includes an extended stored procedure for the blowfish encryption method:
http://www.sqlservercentral.com/articles/Security/sql2000dbatoolkitpart1/2361/
you could give that a try; it may or may not work; for example,...
October 18, 2007 at 4:28 am
you forgot the single quotes...
IF @TmpString NOT LIKE '[0-9]'
or if it was part of a large string, you'd add percent signs for the wildcard matches:
IF @TmpString NOT LIKE...
October 17, 2007 at 9:05 pm
can't you test with two clauses in the WHERE statement for a match, and also that it doesn't have the trailing word after it? you need to take the spaces...
October 17, 2007 at 7:37 pm
Viewing 15 posts - 12,271 through 12,285 (of 13,469 total)