Hello,
I need to produce with T-SQL a user defined function or stored
procedure that make one SLQ-Statement and prepare as string from the
result set.
The request muss be able to return a very long unicode string. The
return value nvarchar is being truncated so I'm trying to create a
stored procedure, that returns a ntext string.
I can't manage it (I am no T-SQL specialist). Maybe someone can help
me?
Thanks for your help.
-----
Here is my sp:
alter procedure F_FUNCTION (@userid int, @parentid int, @status int,
@return ntext output)
AS
BEGIN
DECLARE @onelevel nvarchar(4000)
DECLARE @pos varchar(1000)
DECLARE @leveldone varchar(100)
DECLARE @levelplaned varchar(100)
DECLARE @planeddate nvarchar(4000)
DECLARE @elementid varchar(10)
DECLARE @levelid varchar(10)
DECLARE @levelstatus varchar(10)
DECLARE @levelupd nvarchar(4000)
DECLARE @levelauthor varchar(10)
DECLARE @prevelementid varchar(10)
BEGIN
declare level_cursor CURSOR FOR
SELECT
B.ElementPos,B.LevelID,A.LevelDone,A.LevelPlaned,A .PlanedDate,A.MatrixContentID,A.Status,
convert(varchar,A.Upd,126) as Upd,A.Author
FROM T_TABLE1 as B left outer join T_TABLE2 as A on
(A.MatrixContentID=B.ID AND A.UserID=@userid AND A.Status<>3)
where B.ParentID=@parentid
ORDER BY B.ElementID,B.ElementPos
END
set @onelevel=''
OPEN level_cursor
FETCH NEXT FROM level_cursor
INTO @pos,@levelid,@leveldone, @levelplaned,
@planeddate,@elementid, @levelstatus,@levelupd,@levelauthor
WHILE @@FETCH_STATUS = 0
BEGIN
set @prevelementid=@elementid
if (@pos IS NULL)
set @onelevel=''
else
set @onelevel=@pos
if (@elementid IS NULL)
set @onelevel=@onelevel+'*-*'
else
set @onelevel=@onelevel+'*-*'+@elementid
if (@levelid IS NULL)
set @onelevel=@onelevel+'*-*'
else
set @onelevel=@onelevel+'*-*'+@levelid
if (@leveldone IS NULL)
set @onelevel=@onelevel+'*-*'
else
set @onelevel=@onelevel+'*-*'+@leveldone
if (@levelplaned IS NULL)
set @onelevel=@onelevel+'*-*'
else
set @onelevel=@onelevel+'*-*'+@levelplaned
if (@planeddate IS NULL)
set @onelevel=@onelevel+'*-*'
else
set @onelevel=@onelevel+'*-*'+@planeddate
if (@levelstatus IS NULL)
set @onelevel=@onelevel+'*-*'
else
set @onelevel=@onelevel+'*-*'+@levelstatus
if (@levelupd IS NULL)
set @onelevel=@onelevel+'*-*'
else
set @onelevel=@onelevel+'*-*'+@levelupd
if (@levelauthor IS NULL)
set @onelevel=@onelevel+'*-*'
else
set @onelevel=@onelevel+'*-*'+@levelauthor
-- Part Output
print @onelevel
if (@return is NULL)
exec(@return+@onelevel)
else
exec(@return+'*;*'+@onelevel)
FETCH NEXT FROM level_cursor
INTO @pos,@levelid, @leveldone, @levelplaned,
@planeddate,@elementid,
@levelstatus,@levelupd,@levelauthor
if (@prevelementid IS NOT NULL AND @prevelementid=@elementid)
FETCH NEXT FROM level_cursor
INTO @pos,@levelid, @leveldone, @levelplaned,
@planeddate,@elementid,
@levelstatus,@levelupd,@levelauthor
END
CLOSE level_cursor
DEALLOCATE level_cursor
RETURN
END
-----
Call of the function with:
exec dbo.F_FUNCTION 550,1632, 0, ''
Here the beginning of the query analyser output:
1.00000*-*691*-*1684*-*3*-*0*-**-*0*-*2005-09-22T00:43:00*-*277
Server: Msg 170, Level 15, State 1, Line 1
Line 1: Incorrect syntax near '*'.
----- 6 6763
I think you cannot return that using an output parameter - you'll have to
return it as a field in a SELECT.
On 24 Oct 2005 08:17:01 -0700, re*@infoman.de wrote: Hello,
I need to produce with T-SQL a user defined function or stored procedure that make one SLQ-Statement and prepare as string from the result set. The request muss be able to return a very long unicode string. The return value nvarchar is being truncated so I'm trying to create a stored procedure, that returns a ntext string.
I can't manage it (I am no T-SQL specialist). Maybe someone can help me?
Thanks for your help.
----- Here is my sp: alter procedure F_FUNCTION (@userid int, @parentid int, @status int, @return ntext output) AS BEGIN DECLARE @onelevel nvarchar(4000) DECLARE @pos varchar(1000) DECLARE @leveldone varchar(100) DECLARE @levelplaned varchar(100) DECLARE @planeddate nvarchar(4000) DECLARE @elementid varchar(10) DECLARE @levelid varchar(10) DECLARE @levelstatus varchar(10) DECLARE @levelupd nvarchar(4000) DECLARE @levelauthor varchar(10) DECLARE @prevelementid varchar(10)
BEGIN declare level_cursor CURSOR FOR SELECT B.ElementPos,B.LevelID,A.LevelDone,A.LevelPlaned, A.PlanedDate,A.MatrixContentID,A.Status, convert(varchar,A.Upd,126) as Upd,A.Author FROM T_TABLE1 as B left outer join T_TABLE2 as A on (A.MatrixContentID=B.ID AND A.UserID=@userid AND A.Status<>3) where B.ParentID=@parentid ORDER BY B.ElementID,B.ElementPos END
set @onelevel=''
OPEN level_cursor
FETCH NEXT FROM level_cursor INTO @pos,@levelid,@leveldone, @levelplaned, @planeddate,@elementid, @levelstatus,@levelupd,@levelauthor
WHILE @@FETCH_STATUS = 0 BEGIN set @prevelementid=@elementid
if (@pos IS NULL) set @onelevel='' else set @onelevel=@pos
if (@elementid IS NULL) set @onelevel=@onelevel+'*-*' else set @onelevel=@onelevel+'*-*'+@elementid
if (@levelid IS NULL) set @onelevel=@onelevel+'*-*' else set @onelevel=@onelevel+'*-*'+@levelid
if (@leveldone IS NULL) set @onelevel=@onelevel+'*-*' else set @onelevel=@onelevel+'*-*'+@leveldone
if (@levelplaned IS NULL) set @onelevel=@onelevel+'*-*' else set @onelevel=@onelevel+'*-*'+@levelplaned
if (@planeddate IS NULL) set @onelevel=@onelevel+'*-*' else set @onelevel=@onelevel+'*-*'+@planeddate
if (@levelstatus IS NULL) set @onelevel=@onelevel+'*-*' else set @onelevel=@onelevel+'*-*'+@levelstatus
if (@levelupd IS NULL) set @onelevel=@onelevel+'*-*' else set @onelevel=@onelevel+'*-*'+@levelupd
if (@levelauthor IS NULL) set @onelevel=@onelevel+'*-*' else set @onelevel=@onelevel+'*-*'+@levelauthor
-- Part Output print @onelevel
if (@return is NULL) exec(@return+@onelevel) else exec(@return+'*;*'+@onelevel)
FETCH NEXT FROM level_cursor INTO @pos,@levelid, @leveldone, @levelplaned, @planeddate,@elementid, @levelstatus,@levelupd,@levelauthor
if (@prevelementid IS NOT NULL AND @prevelementid=@elementid) FETCH NEXT FROM level_cursor INTO @pos,@levelid, @leveldone, @levelplaned, @planeddate,@elementid, @levelstatus,@levelupd,@levelauthor
END
CLOSE level_cursor DEALLOCATE level_cursor
RETURN
END
----- Call of the function with: exec dbo.F_FUNCTION 550,1632, 0, ''
Here the beginning of the query analyser output:
1.00000*-*691*-*1684*-*3*-*0*-**-*0*-*2005-09-22T00:43:00*-*277 Server: Msg 170, Level 15, State 1, Line 1 Line 1: Incorrect syntax near '*'.
-----
Am 24 Oct 2005 08:17:01 -0700 schrieb re*@infoman.de:
.... ----- Call of the function with: exec dbo.F_FUNCTION 550,1632, 0, ''
Here the beginning of the query analyser output:
1.00000*-*691*-*1684*-*3*-*0*-**-*0*-*2005-09-22T00:43:00*-*277 Server: Msg 170, Level 15, State 1, Line 1 Line 1: Incorrect syntax near '*'.
-----
ntext is a valid datatype for the OUTPUT variable of a stored procedure.
This is not the problem. Your error appears here:
....
-- Part Output
print @onelevel
if (@return is NULL)
exec(@return+@onelevel)
else
exec(@return+'*;*'+@onelevel)
....
because if @return is Null then you do a
exec('1.00000*-*691*-*1684*-*3*-*0*-**-*0*-*2005-09-22T00:43:00*-*277')
and what should this be?
EXEC starts another stored proc, from there you get your error message. And
so it is an error in line 1.
bye
Helmut
Hello Helmut,
thanks for your answer.
With exec(@return+@onelevel) I try to fill my @return variable with
the content of @onelevel. I can't do it with set @return=@onelevel
because @return is of type ntext.
How can I do it else?
thanks and bye,
Agnès.
Not sure if you can do this with ntext, but try this
select @return = @return + '*;*' + @onelevel
(re*@infoman.de) writes: thanks for your answer. With exec(@return+@onelevel) I try to fill my @return variable with the content of @onelevel. I can't do it with set @return=@onelevel because @return is of type ntext.
How can I do it else?
You can't. Since you are in a dead end, I suggest that you explain
your underlying business problem that you are trying to solve. What
does the calling side of this look like?
I can offer one workaround: move to SQL 2005, which offers the
new datatype nvarchar(MAX), which in difference to ntext is a first
class citizen.
--
Erland Sommarskog, SQL Server MVP, es****@sommarskog.se
Books Online for SQL Server SP3 at http://www.microsoft.com/sql/techinf...2000/books.asp
On 25 Oct 2005 00:35:55 -0700, re*@infoman.de wrote: Hello Helmut,
thanks for your answer. With exec(@return+@onelevel) I try to fill my @return variable with the content of @onelevel. I can't do it with set @return=@onelevel because @return is of type ntext.
How can I do it else?
thanks and bye, Agnès.
What's wrong with returning it via SELECT rather than via a parameter? This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Tod Thames |
last post by:
I currently have a sql statement that works great. I want to convert it
to a stored procedure so I can generate results from a webpage. Below
is the stored procedure that is working fine.
...
|
by: MD |
last post by:
I am trying to create a dynamic SQL statement to create a view.
I have a stored procedure, which based on the parameters passed calls
different stored procedures. Each of this sub stored procedure...
|
by: serge |
last post by:
I can not create a stored procedure that calls another not yet created
stored procedure?
In MS SQL I get a warning that the calling procedure does not exist but the
new stored
Procedure gets...
|
by: dog |
last post by:
I've seen plenty of articles on this topic but none of them have been
able to solve my problem.
I am working with an Access 97 database on an NT4.0 machine, which has
many Access reports.
I...
|
by: David Shorthouse |
last post by:
Hey folks,
I am attempting to pass null as the input value from a series of
textboxes if the user does not input a value prior to submit. To try and do
this, I am using a vbscript function on...
|
by: Ornette |
last post by:
Hello,
I have a stored procedure which generates some values in the table.
When I use update() how to populate the dataset with theses values ?
For the moment I use output parameter but it...
|
by: verb13 |
last post by:
I am running this query to an sql server 2000 database from my asp
code:
"select * from MyTable where
MySqlServerRemoveStressFunction(MyNtextColumn) = '" &
MyAdoRemoveStressFunction(MyString) &...
|
by: ramuygl |
last post by:
want to create store procedure that. want to send the table name as argument and retrive the data of that argument. and want to store data in temperary table using the insert query.
HERE I AM...
|
by: Snow |
last post by:
Hello:
I want to find that the ntext column data string have more than 2000
characters. I need to truncate those strings to the segments with 200
character, then put those segments along with...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
|
by: Aliciasmith |
last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
|
by: tracyyun |
last post by:
Hello everyone,
I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
|
by: Teri B |
last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course.
0ne-to-many. One course many roles.
Then I created a report based on the Course form and...
|
by: nia12 |
last post by:
Hi there,
I am very new to Access so apologies if any of this is obvious/not clear.
I am creating a data collection tool for health care employees to complete. It consists of a number of...
|
by: isladogs |
last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM).
In this month's session, Mike...
|
by: GKJR |
last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...
| |