Viewing 15 posts - 5,251 through 5,265 (of 5,356 total)
Hi,
quote:
HI, I have face the same problem too last time. To get out of this trouble, i practise using yyy-mm-dd date format...
May 19, 2003 at 12:02 am
quote:
When is mysql v5 due out?
I think at this moment nobody really knows this. Production...
May 18, 2003 at 11:47 pm
Hi,
that's right, I think you only get 1,2,3 when you drop the identity column and create it again. But in most cases you can't do that. If you need an...
May 16, 2003 at 9:26 am
I didn't mean that you're stupid, but my question.
I've made the experience that I sometimes look for the complicated and oversee the obvious.
Cheers,
Frank
May 16, 2003 at 8:55 am
Hi,
another try,
DECLARE @text varchar(8000)
SELECT @text = <your_textfield> FROM <table>
IF len(@text)>0
PRINT 'HALLO'
ELSE
PRINT 'SCHADE'
Cheers,
Frank
May 16, 2003 at 8:38 am
Oops,
my mistake!
Should have been reading more careful. You cannot use CHARINDEX on textfields. I'll keep searching.
Cheers,
Frank
Edited by - a5xo3z1 on 05/16/2003 08:27:51 AM
May 16, 2003 at 8:26 am
Hi,
I've tested it on my Server (SQL2k) and it runs.
Stupid question: Is startdate a datetime field?
Cheers,
Frank
May 16, 2003 at 8:12 am
Hi,
is SQL Server Agent running?
under account with appropriate rights?
Cheers,
Frank
May 16, 2003 at 7:59 am
Hi,
if you mean by comment something like '/', '//', '/*' in your textfield you can use CHARINDEX or PATINDEX to check for existance. See BOL for details.
Cheers,
Frank
May 16, 2003 at 7:57 am
Hi,
could it be you're using a different collation order on SQL2k than on SQL7?
Cheers,
Frank
May 16, 2003 at 7:30 am
quote:
That makes sense. Hope you didn't pull too much hair out looking for it. First place I always check is the administrators...
May 16, 2003 at 6:57 am
quote:
Actually use bit for Y/N values. Less need to worry about data options not being in range.
May 16, 2003 at 5:29 am
Hi Brian,
verified your statement. The user in question is local admin to his box, no access under his account to Server a, but as member of an NT User Group...
May 16, 2003 at 5:03 am
I just received something that might be worth taking a look at
Category: Stored Procedures
Level: Intermediate
Description: Display information similar to sp_who2, but has the same columns as the process manager in...
May 16, 2003 at 4:59 am
Hi,
here's a stored procedure I use to collect Server Statistics. It's a modification of something I found somewhere else
CREATE procedure dbo.pactldbmonitor
as
declare @last_rundatetime
declare @now datetime
declare @cpu_busy int
declare @io_busyint
declare @idleint
declare @pack_receivedint
declare...
May 16, 2003 at 4:08 am
Viewing 15 posts - 5,251 through 5,265 (of 5,356 total)