Log in
::
Register
::
Not logged in
Home
Tags
Articles
Editorials
Stairways
Forums
Scripts
Videos
Blogs
QotD
Books
Ask SSC
SQL Jobs
Training
Authors
About us
Contact us
Newsletters
Write for us
Recent Posts
Recent Posts
Popular Topics
Popular Topics
Home
Search
Members
Calendar
Who's On
Home
»
SQL Server 2008
»
SQL Server 2008 - General
»
The query has been canceled because the...
The query has been canceled because the estimated cost of this query
Rate Topic
Display Mode
Topic Options
Author
Message
Anuj Rathi
Anuj Rathi
Posted Friday, January 25, 2013 8:56 PM
SSC Journeyman
Group: General Forum Members
Last Login: Friday, March 22, 2013 3:01 AM
Points: 93,
Visits: 163
Hi Experts,
I am getting below error while executing the stored procedure.
The query has been canceled because the estimated cost of this query (3258) exceeds the configured threshold of 2500. Contact the system administrator.
I am importing the XML into the table. Actually, I am uploading CSV contacts in my application & then push the XML to sql server. Here, I extract the contacts using xpath query, & save into a table. In my local machine, this code works fine while I upload this code on production server, it raises the above error. below is the sample code which I am using:
INSERT INTO @TempTable(FullName, FirstName, LastName, Email, DateOfBirth, CountryCode)
SELECT FullName = T.Item.query('fullname').value('.', 'VARCHAR(256)'),
FirstName = T.Item.query('firstname').value('.', 'VARCHAR(256)'),
LastName = T.Item.query('lastname').value('.', 'VARCHAR(256)'),
Email = T.Item.query('email').value('.', 'VARCHAR(256)'),
DOB = CASE WHEN T.Item.query('dateofbirth').value('.', 'VARCHAR(10)') = '' THEN NULL
ELSE CONVERT(DATE, T.Item.query('dateofbirth').value('.', 'VARCHAR(10)'), 103)
END,
CC = T.Item.query('country').value('.', 'CHAR(2)')
FROM @xmlData.nodes('contacts/contact') AS T(Item);
above code works fine & takes only few milliseconds on my local system but throws an error on production server.
Post #1411976
Anuj Rathi
Anuj Rathi
Posted Saturday, January 26, 2013 10:00 AM
SSC Journeyman
Group: General Forum Members
Last Login: Friday, March 22, 2013 3:01 AM
Points: 93,
Visits: 163
I have found a solution. I also want to share with you guys.
http://social.msdn.microsoft.com/Forums/en/sqldatabaseengine/thread/31f80c1f-6285-4966-b7ed-9d0f93816f52
Post #1412044
Lynn Pettis
Lynn Pettis
Posted Saturday, January 26, 2013 10:41 AM
SSC-Insane
Group: General Forum Members
Last Login: Today @ 1:13 PM
Points: 21,832,
Visits: 27,850
Anuj Rathi (1/26/2013)
I have found a solution. I also want to share with you guys.
http://social.msdn.microsoft.com/Forums/en/sqldatabaseengine/thread/31f80c1f-6285-4966-b7ed-9d0f93816f52
Making it a hot link:
http://social.msdn.microsoft.com/Forums/en/sqldatabaseengine/thread/31f80c1f-6285-4966-b7ed-9d0f93816f52
Lynn Pettis
For better assistance in answering your questions, click here
For tips to get better help with Performance Problems, click here
For Running Totals and its variations, click here
or
when working with partitioned tables
For more about Tally Tables, click here
For more about Cross Tabs and Pivots, click here
and
here
Managing Transaction Logs
SQL Musings from the Desert
Fountain Valley SQL
(My Mirror Blog)
Post #1412048
Jeff Moden
Jeff Moden
Posted Saturday, January 26, 2013 5:24 PM
SSC-Dedicated
Group: General Forum Members
Last Login: Today @ 4:01 PM
Points: 33,108,
Visits: 27,033
Anuj Rathi (1/26/2013)
I have found a solution. I also want to share with you guys.
http://social.msdn.microsoft.com/Forums/en/sqldatabaseengine/thread/31f80c1f-6285-4966-b7ed-9d0f93816f52
Whoa! Thank you very much for posting the solution and it's real nice that a person on that thread recommended creating some XML indexes, but in the name of Codd and all that is holy in the world of databases, let's back the database truck up a couple of miles.
Ok... let's ask a question here. How many people think that storing a CSV column of data in a database is a good idea?
Even if you could index it, would it be a good idea?
I certainly hope no one thinks so. So why do people allow what turns out to be some highly denormalized data with HUGE and (many times) unnecessary delimiters that will screw up their online indexing because of the blob content to be stored in their databases???
Forget about the XML indexes. Normalize the data and store it in the database correctly!
{EDIT} Yeah, yeah... I know 2012 overcomes the blob-content problem with rebuilding indexes online. What's been the excuse since 2000 came out? That doesn't change the fact that XML is one of the most horribly bloated, pipe clogging, disk hogging, memory eating, denormalized methods of communication ever devised (Heh... man, it was hard to keep THAT clean
).
--Jeff Moden
"
RBAR
is pronounced "ree-bar" and is a "Modenism" for "
R
ow-
B
y-
A
gonizing-
R
ow".
First step towards the paradigm shift of writing Set Based code:
Stop thinking about what you want to do to a row... think, instead, of what you want to do to a column."
For better, quicker answers on T-SQL questions, click on the following...
http://www.sqlservercentral.com/articles/Best+Practices/61537/
For better answers on performance questions, click on the following...
http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
Post #1412085
Anuj Rathi
Anuj Rathi
Posted Sunday, January 27, 2013 5:29 AM
SSC Journeyman
Group: General Forum Members
Last Login: Friday, March 22, 2013 3:01 AM
Points: 93,
Visits: 163
Hi Jeff,
You are right. This is not good to save CSV in database. I also don't save xml data into database.
I think Sathya (who proposed that solution) was thinking that I save my CSV in database & this is the query to fetch records.
But this is not the case. Actually, I have to import contacts CSV in my web application. Here I convert this CSV contacts into XML & pass this XML to database as XML data type.
Here @xmlData is the variable which receives input data in my stored procedure. then I extract data with the help of XQuery & save into my table.
Post #1412117
« Prev Topic
|
Next Topic »
Permissions
You
cannot
post new topics.
You
cannot
post topic replies.
You
cannot
post new polls.
You
cannot
post replies to polls.
You
cannot
edit your own topics.
You
cannot
delete your own topics.
You
cannot
edit other topics.
You
cannot
delete other topics.
You
cannot
edit your own posts.
You
cannot
edit other posts.
You
cannot
delete your own posts.
You
cannot
delete other posts.
You
cannot
post events.
You
cannot
edit your own events.
You
cannot
edit other events.
You
cannot
delete your own events.
You
cannot
delete other events.
You
cannot
send private messages.
You
cannot
send emails.
You
may
read topics.
You
cannot
rate topics.
You
cannot
vote within polls.
You
cannot
upload attachments.
You
may
download attachments.
You
cannot
post HTML code.
You
cannot
edit HTML code.
You
cannot
post IFCode.
You
cannot
post JavaScript.
You
cannot
post EmotIcons.
You
cannot
post or upload images.
Copyright © 2002-2013 Simple Talk Publishing. All Rights Reserved.
Privacy Policy.
Terms of Use.
Report Abuse.