Hi, I write a simple query:
select sum(b.variable) as loan_amt
from DatabaseName.dbo.TableName a
left join DatabaseName.dbo.TableName2 b
on …
Then I got the error below, any help?
System.Xml.XmlException
‘false’ is an unexpected token. Expecting white space. Line 6, position 62.
Stack Trace:
at System.Xml.XmlTextReaderImpl.Throw(Exception e)
at System.Xml.XmlTextReaderImpl.Throw(String res, String arg)
at System.Xml.XmlTextReaderImpl.ThrowExpectingWhitespace(Int32 pos)
at System.Xml.XmlTextReaderImpl.ParseAttributes()
at System.Xml.XmlTextReaderImpl.ParseElement()
at System.Xml.XmlTextReaderImpl.ParseElementContent()
at System.Xml.XmlTextReaderImpl.Read()
at System.Xml.XmlSubtreeReader.Read()
at Quest.Toad.Editor.Parsers.SqlParser.ParseChunk(SemanticTree nodes, NavigatorNode parentNode, XmlReader reader)
at Quest.Toad.Editor.Parsers.SqlParser.DeepParseXml(SemanticTree nodes, NavigatorNode parentNode, ChunkTypes chunkType, String xml, Boolean findTagChunk)
at Quest.Toad.Editor.Parsers.SqlParser.Parse(String text, Boolean checkSyntax)
at Quest.Toad.Editor.EditorForm.Parse(Boolean processParserMessages, Boolean syntaxCheck, Boolean parseSelection, Boolean pShowAllWarnings)
at Quest.Toad.Editor.EditorForm.DoExecuteSqlScript()
at Quest.Toad.Editor.EditorForm.ExecuteSqlScript()