Viewing 14 posts - 1 through 14 (of 14 total)
Have a look at this blog post - http://www.brentozar.com/archive/2013/08/what-queries-are-failing-in-my-sql-server/ - it shows how you can query the extended event data to retrieve the sql_text causing the error.
March 4, 2015 at 7:47 am
Hi,
Sorry for the delay in getting back to you - work getting in the way!
It seems that 'validation' is a lot more strict than loading data using XMLBulLoad. I finally...
January 16, 2014 at 8:21 am
The error suggests that the XSD does not contain a 'PACKID' element within the PACK element... The example that worked for me looked like this (for the PACK element):-
<xsd:element name="PACK"...
January 8, 2014 at 5:12 am
You should be able to load the XML into two tables - as per your original attempt. See attached files.
I've included an XML BulkLoad VB script - if you...
January 7, 2014 at 2:16 am
See this documentation on technet...
http://technet.microsoft.com/en-us/library/ms345182(v=sql.100).aspx
February 29, 2012 at 4:31 am
Check out the File Watcher task from Konesans (http://www.konesans.com/products/file-watcher-task.aspx).
According to their web-site : "The task will detect changes to existing files as well as new files; both...
April 7, 2011 at 7:35 am
Try Professional SQL Server 2000 DTS from Wrox :-http://www.amazon.com/gp/product/0764543687/sr=8-3/qid=1151680753/ref=pd_bbs_3/103-0902090-0047034?ie=UTF8
Also Professional SQL Server 2005 Integration Services (http://www.amazon.com/gp/product/0764584359/qid=1151680901/sr=2-3/ref=pd_bbs_b_2_3/103-0902090-0047034?s=books&v=glance&n=283155)
June 30, 2006 at 9:24 am
When I tested "missing mandatory data" earlier, I was using a character field. I've now retried this on a date field and am now generating errors. All I've...
August 1, 2005 at 7:48 am
It looks as if the 'validation' that I have previously seen is probably not schema validation as such, but results when supplied data does not conform to the data-types specified...
August 1, 2005 at 5:46 am
When you use SQLXMLBulkLoad the XML file will be validated against the schema file, and you can specify an error file that will record any failures including schema problems...
Here's some...
July 29, 2005 at 3:17 am
There is a Support Lifecycle page available at Microsoft...
June 22, 2004 at 8:54 am
Try this script...
selecto2.name as
,
o1.name as [trigger],
case
when OBJECTPROPERTY ( object_id(o1.name ),'ExecIsInsteadOfTrigger') = 1 then 'Instead Of'
when OBJECTPROPERTY ( object_id(o1.name ),'ExecIsAfterTrigger') = 1 then 'After'
end as [Trigger Type],
case OBJECTPROPERTY (...
May 7, 2004 at 5:07 am
This is a bug in SP3. See Knowledge Base Article 814113
March 4, 2004 at 2:53 am
I've seen this error message when a Package created using SQL 2000 Client Tools is edited using SQL 7.0 Client Tools.
January 23, 2004 at 4:53 am
Viewing 14 posts - 1 through 14 (of 14 total)