Viewing 15 posts - 211 through 225 (of 236 total)
That was uncalled for, insulting, and part of the problem. Antonio, you need to educate yourself on the issue. You are no better than anyone else. You can't fight ignorance...
September 18, 2006 at 10:07 am
Something wrong with the one that came with your machine?
August 29, 2006 at 8:54 am
Set a unique index on those columns, and SQL Server will not allow duplicate values. If this column is the primary key, define it as such and SQL Server will...
August 28, 2006 at 10:01 am
possible problems:
Quoted identifiers could be messing you up.
SET QUOTED_IDENTIFIER OFF
It could also be getting messed up because the final 'GO' is not on its own line.
You also have an unclosed...
August 15, 2006 at 1:18 pm
it is because every row in your join meets the condition in the where clause, not just the most recent payment. You need to either use DISTINCT, or change your...
August 15, 2006 at 1:09 pm
if you do not know the value ahead of time, you can make sure that things don't have trailing spaces by comparing the datalength.
where col1 = col2 and datalength(col1) =...
August 15, 2006 at 1:01 pm
It's not slow performance that causes this problem. When I've seen this before, it's been caused by a process with extremely good performance, but with a lot of work to...
August 15, 2006 at 12:51 pm
You can do this with DTS tasks. Certain DTS functions can be dialed back to smaller batch sizes, and the whole DTS package can be set to a limited amount...
August 14, 2006 at 10:35 am
You just schedule this proc to run every night using a SQL Agent Scheduled job... there's no better way than that.
August 14, 2006 at 10:28 am
I think you're right. This is typical Microsoft style... if somebody is a threat to your trade secrets... purchase them.
July 20, 2006 at 12:35 pm
Pardon me, but can anyone tell me what the actual "advantage" is to having a licensed copy of Windows? Seems to me, the only advantage over a pirated copy is...
July 5, 2006 at 3:44 pm
Looking at the answers so far I think the situation is obvious. There are so many feature sets in various phones, because people do want it. The majority of people...
June 5, 2006 at 8:32 am
Somebody asked me this in an interview once. I didn't get the job
May 12, 2006 at 9:11 am
MySQL does not support stored procedures, so there would be no such tool.
{The "Pro" Version 5.0 supports SPs, but you have to pay for it}
May 1, 2006 at 10:22 am
I agree this is sneaky and underhanded, but on the surface, I like the idea. It's a case of "if you're not doing anything wrong, you have nothing to worry...
May 1, 2006 at 9:00 am
Viewing 15 posts - 211 through 225 (of 236 total)