Viewing 15 posts - 1 through 15 (of 61 total)
Unfortunately I do not use SQL server 2005.
Further more, above link is talking about static 90 degree turn, as he knows all the columns, I do not. It will be...
July 5, 2006 at 7:06 am
oh, forgot to mention.
select statement is dynamic, ea
select ' + @fields + ' from table
so we don't really know what @fields may have.
July 3, 2006 at 2:29 pm
try
... WHERE @@IDENTITY ...
June 28, 2006 at 8:08 am
I think it's possible if your column 1 has IDENTITY.
Then I believe you can do whatever with that.
Such as ORDER BY $IDENTITY or WHERE $IDENTITY = 'blabla'
June 28, 2006 at 7:58 am
Sorry... there was not suppose to be COUNT
tring is like this:
EXEC ('SELECT ' + @ReverseFields + ' = ItemID FROM biditems where EventID in (' + @EventID + ')')
October 13, 2005 at 10:55 am
won't work... i get an error... like data type int and convert type modulo...
ok... let's try w/o modulo
how can I do some sort of a INSTRING to cut numbers before...
October 10, 2005 at 6:49 am
oh, how would I do that if originally @currentBid and @NewBid are data type 'money' and @bidincrement is 'varchar'
October 7, 2005 at 10:39 am
Thank you... I forgot about modulo existence
October 7, 2005 at 10:27 am
I just didn't know if something like that would possible to do on Application side. I'll try that. SOrry for asking here =)
September 2, 2005 at 2:09 pm
Yeah, only users associated with those specific EventIDs and FieldIDs we are passing in should show up.
September 1, 2005 at 6:31 am
Yeah that would work except.... thanks for replying though.
As I said - data in DB is dynamic, procedure should not rely on UserID.
Procedure will only receive 2 parameters - set...
August 31, 2005 at 3:07 pm
I was trying to find some solution, but couldn't. COuld you please help me do this?
here is statements as you asked:
create table zTempTable1 (FieldID int, FormID int, ReportName varchar(128))
create table...
August 31, 2005 at 9:18 am
I thought tables show everything in pretty easy way.
What other details should I provide?
August 31, 2005 at 8:25 am
Viewing 15 posts - 1 through 15 (of 61 total)