Viewing 15 posts - 2,461 through 2,475 (of 15,381 total)
Luis Cazares (8/13/2015)
Sean Lange (8/13/2015)
jodevil99 (8/13/2015)
select *
from quer a
cross join (select 'Text1' as MyText union all select 'Text2') x
missing keyword
select *
from quer a
cross apply (values('Text1'),...
August 13, 2015 at 1:01 pm
jodevil99 (8/13/2015)
select *
from quer a
cross join (select 'Text1' as MyText union all select 'Text2') x
missing keyword
select *
from quer a
cross apply (values('Text1'), ('Text2')) x (MyText)
SQL command...
August 13, 2015 at 12:22 pm
jodevil99 (8/13/2015)
Well, considering the error messages did not say much more and were in french, I don't think it was really relevent to post a french error message here
Actually it...
August 13, 2015 at 10:28 am
SQLRNNR (8/13/2015)
Ed Wagner (8/13/2015)
Sean Lange (8/13/2015)
Ed Wagner (8/13/2015)
Sean Lange (8/13/2015)
Every table name and every column name are exactly 6 UPPER case letters.
I feel your pain. Baan's tables were named...
August 13, 2015 at 9:53 am
Grant Fritchey (8/13/2015)
Lynn Pettis (8/13/2015)
Ed Wagner (8/13/2015)
I've worked in both environments and really prefer case-insensitive. As a habit, though, I try to write everything as case-sensitive.
Having been working in...
August 13, 2015 at 9:35 am
Lynn Pettis (8/13/2015)
Ed Wagner (8/13/2015)
I've worked in both environments and really prefer case-insensitive. As a habit, though, I try to write everything as case-sensitive.
Having been working in case sensitive...
August 13, 2015 at 9:16 am
Ed Wagner (8/13/2015)
Sean Lange (8/13/2015)
Every table name and every column name are exactly 6 UPPER case letters.
I feel your pain. Baan's tables were named using a multi-part naming convention...
August 13, 2015 at 9:13 am
jodevil99 (8/13/2015)
The first one tells me I lack a "FROM" clause (and underlines union to identify where's the mistake)
The second one says it...
August 13, 2015 at 9:04 am
Sure here are a couple of examples.
select *
from MyTable
cross join (select 'Text1' as MyText union all select 'Text2') x
select *
from MyTable
cross apply (values('Text1'), ('Text2')) x (MyText)
August 13, 2015 at 7:59 am
Jack Corbett (8/13/2015)
...Of course the case sensitivity thing is rather silly in that system. Every table name and every column name are exactly 6 UPPER case letters.
That's why...
August 13, 2015 at 7:47 am
TomThomson (8/12/2015)
Sean Lange (8/12/2015)
August 13, 2015 at 7:24 am
SQLRNNR (8/12/2015)
Lynn Pettis (8/12/2015)
August 12, 2015 at 12:37 pm
TomThomson (8/12/2015)
Ed Wagner (8/11/2015)
It is good to hear that Baan is no more, but I'm not surprised. I guess their miserable product finally caught up with them.
It died (but...
August 12, 2015 at 12:29 pm
anjaliagarwal5 (8/12/2015)
there are lot of values inserting in that table, but this special character will be always at the end if present.
Probably the easiest way is to use replace.
declare @SomeValue...
August 12, 2015 at 10:34 am
roger.plowman (8/12/2015)
August 12, 2015 at 8:45 am
Viewing 15 posts - 2,461 through 2,475 (of 15,381 total)