Viewing 15 posts - 24,436 through 24,450 (of 26,490 total)
Actually, the problem was that you can't upgrade SQL Server 2000 EE to SQL Server 2005 DE. We got it done though, just took a little extra work.
😎
July 24, 2008 at 10:29 am
After some research (didn't find anything), the only explanation I can come up with for this is that we thought we told setup to install the database engine, but must...
July 24, 2008 at 9:43 am
A) That is why I am trying to come up with a subset that is large enough to satisfy my testing. If after a few million rows of test...
July 24, 2008 at 12:01 am
Four years ago, my predecessors predecessor wrote 2 scaler UDF's, one to encrypt and one to decrypt a string using the same algorithm that the SIS system uses on-line. ...
July 23, 2008 at 7:21 pm
See if this test code helps you.
create table #TestTable (
ActionVal int
);
insert into #TestTable (ActionVal)
select 1 union
select 2 union
select 3 union
select 4 union
select 5 union
select 6 union
select...
July 23, 2008 at 4:33 pm
Does this number look about right: 2,758,547,353,515,625?
That's a heck of a lot of data to ensure that both functions are equivalent.
😎
July 23, 2008 at 2:34 pm
LOL!! :w00t:
Thanks. Once I finish working on the second function, I'll start with your code and see what I can come up with. I appreciate the jump start!
Edit:...
July 23, 2008 at 2:11 pm
We are still waiting for the OP to provide more information before doing anything. All we can do at the moment is shoot in the dark, and that may...
July 23, 2008 at 8:51 am
I can see GSquared's point, just don't seem to see another way to explain it at the moment. I'll keep thinking about it and if I come up with...
July 23, 2008 at 7:48 am
Just a guess, but ORLY = Oh, Really.
Like I said, just a guess. :w00t:
😎
July 23, 2008 at 6:32 am
GSquared (7/22/2008)
July 22, 2008 at 11:50 am
Actually, most of us have just asked for more from OP.
😎
July 21, 2008 at 10:30 pm
Sounds good!
😎
July 21, 2008 at 3:47 pm
Here is a sample, but be forwarned. the code below is not protected from a SQL Injection Attack. There are ways to write this to protect you, but...
July 21, 2008 at 3:45 pm
tbeadle (7/21/2008)
declare dnameStr varchar(30)
set dnameStr = 'ts2_' + @site + '_app'
select...
July 21, 2008 at 3:31 pm
Viewing 15 posts - 24,436 through 24,450 (of 26,490 total)