16/04/2007, 17:36
|
| | Fecha de Ingreso: abril-2007
Mensajes: 27
Antigüedad: 17 años, 6 meses Puntos: 0 | |
ayuda al crear vistas hola amigos estoy realizando una migracion sql server 2000 a postgres
mi vista original es la sgte:
create view basura12006 as select ci1,paterno,materno,nombre1 from fiscalia2006 where rtrim(ltrim(paterno))+rtrim(ltrim(materno))+ltrim( rtrim(nombre1)) in (select rtrim(ltrim(ape_pat)+rtrim(ltrim(ape_mat))+ltrim(r trim(nombre1))) from funcionario)
y no se como puedo hacer para llevarla a postgres
lo hice exactamente igual que la original y me el sgte error:
ERROR: operator does not exist: text + text
Estado SQL:42883
Sugerencias:No operator matches the given name and argument type(s). You may need to add explicit type casts.
Caracter: 185
y me subraya esta parte (ape_pat)+rtrim(ltrim(ape_mat)) q es donde esta el error alguien me puede ayudar porfavor .
gracias de antemano |