Viewing 15 posts - 16 through 30 (of 33 total)
Hey,
I would use a bit, because it maps nicer over to a boolean value than any other value. For a radiobutton, I would think the same because you base it...
October 6, 2004 at 3:11 pm
Hey,
Did you try possibly uninstalling the XP Service Pack 2? Maybe that's a side-effect from that. It did have a lot of issues with it.
Brian
September 30, 2004 at 11:26 am
Hey,
Don't think so; you could try splitting the queries into multiple values and concatenating them at the end like:
exec @SQL1 + @SQL2
But I don't think that will work.
Brian
September 30, 2004 at 11:17 am
Or left(field, 100)
Brian
September 28, 2004 at 6:15 am
Hey,
Yeah, the one thing that I should of mentioned but didn't, and that is present in Aaron's response is that for string values, you need to use '' to represent a...
September 27, 2004 at 9:11 am
September 27, 2004 at 8:53 am
Hey,
Are we talking about numerical data or text? For an insert statement, you can do:
fieldname in ('10', '85', '13')
'10, 85' wouldn't work because that's assuming one value.
For numerical, remove the...
September 27, 2004 at 8:52 am
Hey,
I don't think you can do that, because I thought select into created a new table, which would need dbo or ddladmin rights. Regardless select into would probably need insert...
September 27, 2004 at 8:49 am
Hey,
Well, one other thing your street address has the following suffixes shown above:
St
Ctr
Rd
Ave
There is a list of these suffixes (I believe) on the US postal services web site. If you search...
September 25, 2004 at 6:27 am
Hey,
It has the potential to be a problem in the future... Do you also trust the network staff too?
Brian
September 25, 2004 at 6:21 am
I guess I should add that if you could, it would be by putting a template in the model database.
September 23, 2004 at 11:33 am
I don't think so..... I would save a template to a SQL file, and run it, then don't save it so you still have the original template.
September 23, 2004 at 11:31 am
Hey,
Try:
IF ISNULL(DTSSource("Field2")) Then
IF DTSSource("Field2") = 0 Then
'Do whatever
End If
End If
Did you find where a end if or end function may be missing?
Brian
September 23, 2004 at 8:40 am
Hey,
It means there is no End If that it can find. Make sure of that.
In addition, if you still have problems, it may be that you want to check null...
September 22, 2004 at 4:42 pm
Hello,
I don't know of any TP tools, but with .NET that probably would be easy, what you could do is use the INFORMATION_SCHEMA.COLUMNS table to retrieve the database information, and...
September 22, 2004 at 4:37 pm
Viewing 15 posts - 16 through 30 (of 33 total)