Jun 22, 2005 #1 dataforums Programmer Joined May 3, 2005 Messages 25 Location US Can anyone plz tell me what is worng in the following statement? I am trying to declare a LONG varable to hold a very large string. DECLARE str LONG VARCHAR(8000); THX
Can anyone plz tell me what is worng in the following statement? I am trying to declare a LONG varable to hold a very large string. DECLARE str LONG VARCHAR(8000); THX
Jun 23, 2005 #2 rbod Programmer Joined Feb 1, 2005 Messages 74 Location US you probably don't need to mention the size for LONG VARCHAR. try: DECLARE str LONG VARCHAR; Upvote 0 Downvote