I've learned just enough sql to do this.
I'm trying to export information from an oracle database into sql using the following--
select label,
local_creation_time,
text_part,
opc_act_messages.severity,
opc_act_messages.message_group
from opc_nodes,
opc_act_messages,
opc_msg_text
where opc_nodes.node_id=opc_act_messages.node_id and
opc_act_messages.message_number=opc_msg_text.message_number
it works fine except the text_part column seems to be too big to fit into a sql column so it truncates the message into 2 rows. Which of course kills any chance I've got of making an accurate report.
Any suggestions and thanks in advance!
I'm trying to export information from an oracle database into sql using the following--
select label,
local_creation_time,
text_part,
opc_act_messages.severity,
opc_act_messages.message_group
from opc_nodes,
opc_act_messages,
opc_msg_text
where opc_nodes.node_id=opc_act_messages.node_id and
opc_act_messages.message_number=opc_msg_text.message_number
it works fine except the text_part column seems to be too big to fit into a sql column so it truncates the message into 2 rows. Which of course kills any chance I've got of making an accurate report.
Any suggestions and thanks in advance!