Viewing 15 posts - 15,751 through 15,765 (of 18,923 total)
That can't be the full code????
Anyways this works :
Declare @Exec as varchar(100)
set @Exec = 'select ''' + convert(varchar(20),getdate(),106) + ''''
exec(@Exec)
July 4, 2005 at 12:00 pm
I'm surprised nobody answered this one faster :
--I use this table for many other string operations as well
CREATE TABLE [Numbers] (
[PkNumber] [int] IDENTITY (1, 1) NOT NULL ,
CONSTRAINT [Pk_Number]...
July 4, 2005 at 11:56 am
Forgot to add this :
You need the microsoft common controls 6.0 reference. Then check the toolbox for the extended list of available controls (toolbox icon) : Microsoft listview...
July 4, 2005 at 11:15 am
If you prove he's wrong then I think you get the job
.
July 4, 2005 at 11:11 am
I think you'd be better off using a listview to show the results... You could populate it for any query since you can dynamically add columns.
July 4, 2005 at 10:13 am
There's none really. Functions are meant to either return a table or a scalar value. Sp can do the same thing but they can't be used in a...
July 4, 2005 at 10:11 am
Depends how you use them... this is really where you make the choice. The server will still optimize the query equally in each object.
Did you have a case scenario...
July 4, 2005 at 9:43 am
You guys need to pay attention :
Category = HUMOR. Stop thinking rationally when you see this
.
July 4, 2005 at 9:27 am
Will be simpler for me to do the package... give me a few hours, I have something else to do first.
July 4, 2005 at 9:20 am
Yes it does. If you read correctly I have a : for each field in myrs.Fields()
This will work if you have 0 to X nullable columns and...
July 4, 2005 at 8:49 am
Viewing 15 posts - 15,751 through 15,765 (of 18,923 total)