Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9194923
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T21:31:35+00:00 2026-06-17T21:31:35+00:00

I am having trouble including an XML namespace in the following table-valued function. I

  • 0

I am having trouble including an XML namespace in the following table-valued function. I need this namespace in order to perform an xpath join. The issue seems to be my use of the WITH method, but this syntax is required when I execute the query in straight SQL.

The exact error reads:

“Incorrect syntax near ‘default’. Expected ID or QUOTED_ID.”

Does anyone know the exact syntax for including an XML namespace in this T-SQL table-valued function body? Here is the T-SQL code:

USE [Context]
GO

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER FUNCTION [dbo].[GetStuff]()
RETURNS @X TABLE(
  DisplayName NVARCHAR(250) NULL,
  StandardCode NVARCHAR(250) NULL
)
--WITH RETURNS NULL ON NULL INPUT
AS      
BEGIN

DECLARE @MyTempTable  TABLE ( 
  DisplayName NVARCHAR(250) NULL,
  StandardCode NVARCHAR(250) NULL
);

;WITH XMLNAMESPACES (default 'http://www.mynamespace.org/someSchema')

INSERT INTO @MyTempTable (DisplayName, StandardCode)
    SELECT Distinct OI.DisplayName, OI.StandardCode
    FROM db..Actor B
    JOIN db..Part DP ON B.Id = DP.Id
    JOIN db..Intent OI ON OI.StandardCode = DP.XML.value('(/US/California/Orange/LA/Pizza)[1]','nvarchar(max)')
    JOIN db..Status PS ON B.Id = PS.Id
    WHERE PS.StandardCode in ('Happy','Employed')
    AND OI.Active = 1
    ORDER BY OI.DisplayName

  RETURN;

  END
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T21:31:36+00:00Added an answer on June 17, 2026 at 9:31 pm

    I don’t think this solves the syntax error, but you are creating a second table variable for nothing. This:

    ALTER FUNCTION [dbo].[GetStuff]()
    RETURNS @X TABLE(
      DisplayName NVARCHAR(250) NULL,
      StandardCode NVARCHAR(250) NULL
    )
    --WITH RETURNS NULL ON NULL INPUT
    AS      
    BEGIN
    
    DECLARE @MyTempTable  TABLE ( 
      DisplayName NVARCHAR(250) NULL,
      StandardCode NVARCHAR(250) NULL
    );
    
    ;WITH ... INSERT @MyTempTable ...
    

    Should be:

    ALTER FUNCTION [dbo].[GetStuff]()
    RETURNS @X TABLE(
      DisplayName NVARCHAR(250) NULL,
      StandardCode NVARCHAR(250) NULL
    )
    --WITH RETURNS NULL ON NULL INPUT
    AS      
    BEGIN
    
    ;WITH ... INSERT @X ...
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was having trouble figuring out the XPATH of the following. There are several
I am having trouble including a module in a namespaced class. The example below
I am having trouble including a test under a cmake project. My project is
Having no end of trouble including a large landscape pdf in a portrait .tex
Having trouble with each function... Will try to explain by example... In my code,
Having trouble understanding how to filter an images table by tag information in a
Having trouble understanding. With the following css : .bloc .field:nth-last-child(2){ ...some values... } and
Having trouble framing this assertion in Rspec for my rails app. A User has
I'm having trouble including standard header files like iostream.h and fstream.h . On my
I am having trouble transforming particular characters from an XML feed into XHTML. I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.