Posts Topics Forums Images
Search videos from message boards Videos Search messages from microblogs Microblogs Search messages from imdb.com Imdb Search messages from yuku.com Yuku Search messages from lefora.com (free forums) Lefora
My account: Login | Sign Up
Loading... 

Thread: executing sql server function

Started 1 month, 3 weeks ago by sparrow37
> Hi all: I want to execute following sql server function in Management studio. ALTER FUNCTION [Develop_pricebook].[SplitWords](@text varchar(8000)) RETURNS @words TABLE (pos smallint primary key, value varchar(8000)) what will be syntax for it. I tried following but got error select dbo.[SplitWords] 'sdasdda,dfdsf' exec dbo.[SplitWords] 'sdasdda,dfdsf' select * ...
Site: SQL Server Forums  SQL Server Forums - site profile
Forum: New to SQL Server  New to SQL Server - forum profile
Total authors: 2 authors
Total thread posts: 2 posts
Thread activity: no new posts during last week
Domain info for: sqlteam.com

Other posts in this thread:

afrika replied 1 month, 3 weeks ago
> You should use dbo for your objects and not "Develop_pricebook" Once you do, try it again select [dbo].[SplitWords] ('sdasdda,dfdsf')

 

Top contributing authors

Name
Posts
sparrow37
1
user's latest post:
executing sql server function
Published (2009-10-31 14:34:00)
> Hi all: I want to execute following sql server function in Management studio. ALTER FUNCTION [Develop_pricebook].[SplitWords](@text varchar(8000)) RETURNS @words TABLE (pos smallint primary key, value varchar(8000)) what will be syntax for it. I tried following but got error select dbo.[SplitWords] 'sdasdda,dfdsf' exec dbo.[SplitWords] 'sdasdda,dfdsf' select * from dbo.[SplitWords] 'sdasdda,dfdsf'
afrika
1
user's latest post:
executing sql server function
Published (2009-10-31 15:42:00)
> You should use dbo for your objects and not "Develop_pricebook" Once you do, try it again select [dbo].[SplitWords] ('sdasdda,dfdsf')

Related threads on "SQL Server Forums":

Related threads on other sites:

Thread profile page for "executing sql server function" on http://www.sqlteam.com. This report page is a snippet summary view from a single thread "executing sql server function", located on the Message Board at http://www.sqlteam.com. This thread profile page shows the thread statistics for: Total Authors, Total Thread Posts, and Thread Activity