Viewing 15 posts - 6,151 through 6,165 (of 15,381 total)
eobiki10 (12/10/2013)
December 10, 2013 at 3:00 pm
eobiki10 (12/10/2013)
December 10, 2013 at 2:24 pm
eobiki10 (12/10/2013)
I think a comma delimited list would be fine.
You realize that violates 1NF right? A column of data in a row of a table should hold 1 and only...
December 10, 2013 at 1:41 pm
Hi and welcome to the forums. It is nearly impossible to tell you how to fix this. It is however fairly easy to tell you the problem. Your subquery is...
December 10, 2013 at 12:54 pm
pgupta6644 (12/10/2013)
select @mesg_string = 'Error : ' + @mesg_out
where @chk_dt <= @org_dt
becuase the where conditions will be changing and messing will different...
December 10, 2013 at 12:37 pm
As a general rule you should NOT design your tables based on how you expect to query the tables. You should design your tables to support the data. Then you...
December 10, 2013 at 12:19 pm
Why do you need to use dynamic sql for this? I don't see anything in what you posted that would indicate you need to use dynamic sql.
The reason you are...
December 10, 2013 at 12:17 pm
SQLRNNR (12/10/2013)
Sean Lange (12/10/2013)
Congrats Gail. I think the creep of the Thread may have reached unstoppable speed at this point. 😛Just who is that creep this week?
I am pretty sure...
December 10, 2013 at 12:11 pm
eobiki10 (12/10/2013)
Thanks for your information but what should I do on this case?
That depends. Do you really want a comma delimited list in a single column or do you want...
December 10, 2013 at 12:10 pm
eobiki10 (12/10/2013)
Yes, I still have issue with error.
So what is the EXACT query you are trying and what is the error message? This is probably incredibly simple to fix but...
December 10, 2013 at 9:48 am
eobiki10 (12/10/2013)
Actually my value has the closing parameter. I must have have missed it when I copied the sql to paste on this forum
So are you good to go then...
December 10, 2013 at 9:31 am
eobiki10 (12/10/2013)
Please I need help with this. I am having an error when I try to run a report that contains this code. The error is this "the Select...
December 10, 2013 at 8:52 am
Congrats Gail. I think the creep of the Thread may have reached unstoppable speed at this point. 😛
December 10, 2013 at 7:26 am
In MySQL a foreign key can reference columns which don't have a uniqueness constraint on them, which is an excellent feature that more DBMSs really ought to support. There's no...
December 4, 2013 at 2:33 pm
Technically speaking your Row_Number is in fact ordering, it is just ordering by the constant value of the parameter. 😉
Be very very careful with what you are doing here. So...
December 4, 2013 at 2:29 pm
Viewing 15 posts - 6,151 through 6,165 (of 15,381 total)