Ambiguous Complex Type Definition With XML Source. Workaround?

Jan 19, 2006

Hi,

This could well be down to my _limited_ knowledge of XSD.



I have a document and SXD supplied by 3rd party.

Both documents are valid, according to XMLSpy.

When I give the document and xsd to SSIS XML Source it complains about ambiguous complex types.



In the XML doc there is an element called Allowance that has child elements.

There is also a group which references many other elements including Allowance.

When I remove the group, SSIS stops complaining about allowance.



Would the problem stem from SSIS creating an output called Allowance ('cause of it's children), getting to the group and again, 'cause allowance has children, try create another output called Allowance.

Is my understanding of this correct? Is there a work around for a situation like this?

The only thing I can come up with is deleting the group....

Possible to alias an element? Could alias the Group > Allowance g_Allowance.



Cheers,

Crispin

View 3 Replies


ADVERTISEMENT

Boolean Data Type Not Available (workaround For Checkbox.checked Storing?)

Sep 2, 2006

I have a page for inventory price entry that I have used for a while. Now I need to add a checkbox for whether or not the price includes shipping. I added the checkbox to the form and had it posting 'True' or 'False' to the database as nchar(10) data type. When the gridview pulls up the data, I have the Item Template like this, so it shows a disabled checkbox either checked or not: <asp:CheckBox ID="CheckBox2" runat="server" Checked='<%# Convert.ToBoolean(Eval("Shipping")) %>' Enabled="False" /> This works fine for displaying the values, but I copied the checkbox to the Edit Item Template, but did not disabled this one. At first, I didn't change the databindings, leaving it Convert.ToBoolean(Eval("Shipping")), which allowed me to go into Edit mode, change the checkbox, then click update. At which point it would return to it's original state (meaning Update wasn't actually updating). However if I change the databindings, then the page won't display. I checked the SQL statement, and sure enough, it has theUpdateCommand="UPDATE [PartsTable] ... SET [Shipping] = @Shipping... WHERE [PartID] = @original_PartIDAfter fiddling with the sql statement, now I get Object cannot be cast from DBNull to other types. I think that means that the checkbox is sending a null value to the database.Any insight as to how to get this to work is much appreciated. Thanks in advance.

View 4 Replies View Related

Reporting Services :: Source Of Report Definition Has Not Been Specified

May 15, 2015

I've been getting this error message a lot in recent days and I really don't know why.

When I preview the report in Visual Studio, the report runs without error.

When I integrated the report to run within the application, I kept getting the following error message:

"The source of the report definition has not been specified"...

View 4 Replies View Related

Sqlbulkcopy Error : The Given Value Of Type SqlDecimal From The Data Source Cannot Be Converted To Type Decimal Of The Specified

Apr 16, 2008

Hi,

The table in SQL has column Availability Decimal (8,8)

Code in c# using sqlbulkcopy trying to insert values like 0.0000, 0.9999, 29.999 into the field Availability
we tried the datatype float , but it is converting values to scientific expressions€¦(eg: 8E-05) and the values displayed in reports are scientifc expressions which is not expected
we need to store values as is


Error:
base {System.SystemException} = {"The given value of type SqlDecimal from the data source cannot be converted to type decimal of the specified target column."}

"System.InvalidOperationException: The given value of type SqlDecimal from the data source cannot be converted to type decimal of the specified target column. ---> System.InvalidOperationException: The given value of type SqlDecimal from the data source cannot be converted to type decimal of the specified target column. ---> System.ArgumentException: Parameter value '1.0000' is out of range.
--- End of inner exception stack trace ---
at System.Data.SqlClient.SqlBulkCopy.ConvertValue(Object value, _SqlMetaData metadata)
--- End of inner exception stack trace ---
at System.Data.SqlClient.SqlBulkCopy.ConvertValue(Object value, _SqlMetaData metadata)
at System.Data.SqlClient.SqlBulkCopy.WriteToServerInternal()
at System.Data.SqlClient.SqlBulkCopy.WriteRowSourceToServer(Int32 columnCount)
at System.Data.SqlClient.SqlBulkCopy.WriteToServer(DataTable table, DataRowState rowState)
at System.Data.SqlClient.SqlBulkCopy.WriteToServer(DataTable table)
at MS.Internal.MS
COM.AggregateRealTimeDataToSQL.SqlHelper.InsertDataIntoAppServerAvailPerMinute(String data, String appName, Int32 dateID, Int32 timeID) in C:\VSTS\MXPS Shared Services\RealTimeMonitoring\AggregateRealTimeDataToSQL\SQLHelper.cs:line 269"


Code in C#

SqlBulkCopy bulkCopy = new SqlBulkCopy(sqlConnection, SqlBulkCopyOptions.Default);
DataRow dr;
DataTable dt = new DataTable();
DataColumn dc;

try
{

dc = dt.Columns.Add("Availability", typeof(decimal));
€¦.

dr["Availability"] = Convert.ToDecimal(s[2]); ------ I tried SqlDecimal
€¦€¦€¦.

}
bulkCopy.DestinationTableName = "dbo.[Tbl_Fact_App_Server_AvailPerMinute]";
bulkCopy.WriteToServer(dt);



thx



View 8 Replies View Related

WebServices: This Complex Type Does Not Contain Any Properties

Aug 9, 2007

Hello everyone,
I am newbie in SSIS and I have one problem.
I have defined in Control Flow one WebService Task, specified the WSDL-File.
I have chosen one method from WS as Input. But this method requires one parameter of the ArrayOf_xsd_string type.
If I try to choose it, I receive following error:

===================================
This complex type does not contain any properties. (Microsoft.SqlServer.WebServiceTaskUI)
------------------------------
Program Location:
at Microsoft.SqlServer.Dts.Tasks.WebServiceTask.CustomGridControl.HandleEllipseBtn(Int64 row, Int32 col)

in my WSDL-File it already defined:



Code Snippet<complexType name="ArrayOf_xsd_string"><complexContent><restriction base="soapenc:Array"><attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:string[]"/>





Could you help me? Where I can define this ArrayOf_xsd_string type, or how can I correct my problem?
Thanks a lot for your Help!
Regards,

View 1 Replies View Related

Using A Complex Type As Parameter To A Webservice

Mar 28, 2007

I really need some information that shows how I could construct a query that take a complex type as parameter.

Regards, Christian

View 4 Replies View Related

Web Service Data Source Complex Parameters

Feb 8, 2007

I am building a report that takes a web service as data source. This web service does not take primitive types as parameters. The signature is something like this:

<soap:Body>
<GetXml xmlns="myreports.ws">
<root >
<TP Name="string">
<B Name="string" Surname="string">
<SA xsi:nil="true" />
</B>
<B Name="string" Surname="string">
<SA xsi:nil="true" />
</B>
</TP>
<TP Name="string">
<B Name="string" Surname="string">
<SA xsi:nil="true" />
</B>
<B Name="string" Surname="string">
<SA xsi:nil="true" />
</B>
</TP>
</root>
</GetXml>
</soap:Body>


My question is: how do I pass the xml to the web service from reporting services.

I have seen examples with simple types. They do it with this query:

<Query>
<SoapAction>myreports.ws/GetXml</SoapAction>
<Method Namespace="myreports.ws" Name="GetXml"></Method>
<Parameters>
<Parameter Name="Parameter1">
<DefaultValue>some value</DefaultValue>
</Parameter>
</Parameters>
<ElementPath IgnoreNamespaces="True">
GetXmlResponse{}/GetXmlResult{}/diffgram{}/NewDataSet/Element{@Attribute1,@Attribute2}
</ElementPath>
</Query>

But there are no example on using xml directly instead of parameters. Can anyone help me? Where do I put my xml?



View 3 Replies View Related

Data Reader Source As ODBC / Complex Sql

May 30, 2007

Hello All,



How do I get columns to output when I have a data reader source? My connection is an ODBC and does complex sql. I am connection to a Netezza database and I would like to execute a very complex query, but in essence does



Create newtable as

(select day, sessionId)

from source

// lots of other joins and unions



select day, sessionId from newtable





drop newtable



I have an ODBC connection and I have a Datareader source, I cannot connect this source to my SQL Server destination because no output columns are available. What am I missing here?



Are there any good examples of this, taking data from a ODBC source into SQL server?



Thanks in advance.

View 5 Replies View Related

SSIS Web Service Complex Type Inputs

May 21, 2007

Hi,

I am trying to make a call to a third-party web service in my SSIS package. The request has custom complex data type as the parameter. As has been pointed out in this forum before, the Web Service Task only lets you assign the outside parameter from a variable, not the internal parameters needed to create the complex data type.

To be more specific, the web service input wants a 'ContactSearchRequest' parameter. I can assign this from a variable. If I click on the 'value' field under the 'Input' section for the web service task, it shows me that the 'ContactSearchRequest' data type is made up of the following:

contactId - long
numResults - int
offset - int
passKey - string
searchParam - string
sortType - int

Unfortunately, I can't assign these internal parameters from a variable, at least not through the web service task interface.

My next thought was to create a variable of type 'object' and then set it in a script task prior to calling the web service task. However, I'm not sure exactly how to do this. How will my script know about the class definition of 'ContactSearchRequest'? Do I just create a class called 'ContactSearchRequest'?

I've used this same web service in a .NET C# project and after I imported the web service, visual studio knew all about the custom data types. How do I do something similar in SSIS?

Of course, the easiest solution would for Integration Service to allow me to set those internal parameters via variables, but we're apparently not there yet.

Any suggestions?

Thanks,
Trey

View 8 Replies View Related

Good Source (books, Articles) For Complex Queries?

Jun 9, 2008

Hi All -

Any recommendations for good advanced t-sql books/articles? I find myself involved with writing increasingly more complex queries and after spending a few hours on some, and then searching on this site for potential answers/help, I am wondering if there might be some good books on creating more advanced/complex t-sql for real world scenarios.

Thanks
- will

View 3 Replies View Related

Consuming WCF Service With Complex Data Type In SSIS

Oct 9, 2007



Hi,

Need a guidance on consuming the WCF service with complex type in the SSIS package.
I have a WCF service with complex type inside the complex type (Nested complex type) in the web method as an argument. When I try to use this WCF service in the SSIS web service task, I get an error "The web method has unsupported arguments".

I am able to consume the WCF service with the web method having Complex type and simple/prmitive type in side that as argument.

For example:

The web method in WCF service which accepts the argument as comlex type say "Employee" whose structure is:

Employee
{
FName String;
LName String;
Age int
}

It is possible to consume this WCF service and pass the arguments.

But when the Employee complex type is changed to have one more complex type in side it it give the above mentioned error. The Employee type is modified as:

Employee
{
FName String;
LName String;
Age String
Type EmployeeType;
}


EmployeeType
{
type string;
}

Now I get the error Web Method has unsupported arguments.

Can this be done in SSIS?

Virendra

View 3 Replies View Related

Integration Services :: Passing Complex Type As A Variable In Web Service Task

Oct 5, 2011

When you pass a complex type (the one represented by class) to a web service the BIDS UI allows you to enter values for every field of that type as constants. But what if you want to pass a variable? Once again the UI allows you to specify a variable for that complex type parameter. But how to make this variable in SSIS?I understand it should have the type of Object. But how to specify what the runtime type of this object is? And how to assign all fields to that object?

View 6 Replies View Related

Data Source Type Not Overwritten When Uploading RDL

Nov 5, 2007



Hello,


I've been working on an application that uploads an RDL to Reporting Services programmatically. I'm having problem with the data source properties for my uploaded report. The datasource for my report is custom datasource. It work s fine if the report still did not exist. But if the report already exist, after I upload the report to Reporting Services, the function will overwrite the RDL but it did not overwrite the Data source type correctly. Other setting like connection string is overwritten correctly.

For example, I already have RDL ABC with Data source type SQL, when I try to overwrite the existing RDL ABC which have Data source type Assembly, it still hold the SQL value for the data source type. But in the RDL itself (I checked in the rdl script in <DataProvider> tag), the value already overwritten to Assembly.

This problem also happen when I try to upload RDL using Report Manager. The Data source type are not overwritten by the action.

What should I do? Why it did not overwrite the datasource type? Maybe I do anything wrong here. I dont know what. Hope someone can help.


Thanks in advance

View 1 Replies View Related

Excel Source From Variables And Data Type Issue

Aug 22, 2007

Hi

I am after some help with the following issue

I have a package that reads a table for a file path of a excel file. This gets passed to a variable and then this file is imported into a staging table for further transformation work. The issue i have is that file 1 may contain data in Column A which is 50 characters long in which case i have to import the excel as a DT_WSTR, do a data conversion to a DT_STR and load to the staging table. However file 2 may contain data in Column which is over 255 characters in which case it would import as a DT_NTEXT which i then transform to a DT_TEXT and then to a DT_STR. I used a fixed file path in the Excel Connection to start with which was for File 1 so the datatype for column 1 is a DT_WSTR. I then changed the excel connection to a filepath variable, put the path of file 2 in my table and called it from my package. It failed as the data exceeding 255 characters in column 1 needed to be a DT_NTEXT. I can change it and it works but if i then run the package using file 1 (less than 255 characters) it fails again as it wants it to be a DT_WSTR.

Is there anyway around this? Am i missing something as i would have thought that by setting it to DT_NTEXT this would cover data under 255 characters as well.

Any help is gratefully aprreciated.

View 6 Replies View Related

Complex DB Search Forms (Store Proc Vs. Complex Where)

Nov 12, 2003

I have web forms with about 10-15 optional search parameters (fields) for a give table. Each item (textbox) in the form is treated as an AND condition.

Right now I build complex WHERE clauses based on wheather data is present in a textbox and AND each one in the clause. Also, if a particular field is "match any word", i get a ANDed set of OR's. As you can imagine, the WHERE clause gets quite large.

I build clauses like this (i.e., 4 fields shown):

SELECT * from tableName WHERE (aaa like '%data') AND (bbb = 'data') AND (ccc like 'data%') AND ( (xxx like '%data') OR (yyy like '%data%') )

My question is, are stored procedures better for building such dynamic SQL clauses? I may have one field or all fifteen. I've written generic code for building the clauses, but I don't know much about stored procedures and am wondering if I'm making this more difficult on myself.

View 7 Replies View Related

How Do You Assign A Data Source To A Page And Which Type Sqldatasource, Objectdatasource Or ?

Mar 5, 2007

Hi
Using ASP.NET 2.0, Sql Server 2005.
I have a simple page (NOT a formview) with some entries textbox's , checkbox and dropdownlistbox's
I want to link a datasource to the 'Item  Page' and bind the datasource's values to the page
The select statement is
Select a.IssueID,
a.ProjectID,
a.VersionID,
a.toincludeversionid,
a.Version,
a.toincludeversion,
a.TypeofEntryID,
a.PriorityID,
a.WorkFlowID,
a.Title,
a.Area,
a.Details,
a.Question,
a.Answer,
a.HowToRepro,
a.DevelopersNotes,
a.TestersNotes,
b.ProjectID,
b.ProjectName,
OldVersion.Version,
ToIncludeVersion.Version,
d.DESCRIPTION,
e.DESCRIPTION,
 
x.TaskID as TaskID,
x.DESCRIPTION as TaskDescription,
z.Taskdone,
CONVERT (char(9),z.TaskAssignedDate, 3) AS Workflowdate,
z.StaffID as StaffID,
w.username,
y.latest_workflowid
from issue as a
Inner join ProjS b on b.ProjectId=a.ProjectID
Left Outer join Version OldVersion on a.VersionID=OldVersion.VersionID
Left Outer join Version ToIncludeVersion on a.VersionID= ToIncludeVersion.VersionID
Inner join TypeOfEntry d on d.TypeOfEntryID=a.TypeofEntryID
Inner join Priority e on e.PriorityID=a.PriorityID
 
inner join workflow z on z.issueid=a.issueid
Inner join (select issueid,max(workflowid) as latest_workflowid from workflow group by issueid) y on y.latest_workflowid=z.workflowid
Inner join task x on  x.taskid=z.taskid
Inner join staffls w on w.StaffID=z.StaffID
 
Where a.IssueID= @IssueID
 
 
I hope I have made query clear, if not I don't mind explaining more.
 
Thanks in advance
 

View 1 Replies View Related

SSIS Import And Export Wizard Source Type -1 Instead Of Time

Feb 13, 2015

Running SQL 2008. Trying to copy data from one table into another table using SSIS Import/Export Wizard. Now, when I do a straight "Copy data from one or more tables or views", no problems. But when I use the "Write a query to specify the data to transfer", it will not let me get anywhere.

My source table has a field that is setup as "time". It has data, and no problems with the field. I even replicated my destination table structure exactly. But when I try to use the Import & Export wizard, for that one field I get an error stating the source field is unknown and it is labeled as "-1" instead of "time".

I found a couple of of workarounds. One is to cast the source field "time" as "datetime", and then end up with a "datetime2" field in the destination table. Works, but not what I want to store in that field. Second workaround is to use TSQL and use a "INSERT INTO...SELECT...FROM..WHERE.." statement. This works, and gives me the desired results with all data types being same in source and destination, but is a slight pain in the rear end.

I just want the Import & Export wizard to work. It should work. Why doesn't it know what "time" is? I even checked the MSSQLToSSIS10.XML mapping file the wizard is using. This is what it has for "time":

<dtm:DataTypeMapping >
<dtm:SourceDataType>
<dtm:DataTypeName>time</dtm:DataTypeName>
</dtm:SourceDataType>
<dtm:DestinationDataType>

[Code] .....

View 0 Replies View Related

Send Mail Task Message Source Type Variable

Jun 13, 2007

hi



I am trying something very simple but cannot see why it is failing.



I am trying to add a filename to the message source of a mail task from a variable.



I have Variable 1 User::CurrentFilePath, Scope = ForEachLoop, Data Type = String

and Variable 2 User::mailSource, Scope = ForEachLoop, Data Type = String



Variable 2 EvaluateAsExpression is set to True and the Expression for now is simply "Processing of File " + [User::CurrentFilePath] + "has Begun"



However when i enter this i get



The expression for variable "Test2" failed evaluation. There was an error in the expression.

In the Value and Value type boxes of the variable property.



Any advice greatly received



Regards



Scott

View 1 Replies View Related

Why Cant I Set The Precision For Decimal Data Type In SSIS Flat File Source?

Mar 2, 2007

I have a CSV Flat File Source with a Decimal column - but DataPrecision property is grayed out - why?

View 1 Replies View Related

XML Source Produces DT_UI8 Key Columns - Which SQL Server Data Type To Store?

Aug 12, 2007

I'm using the XML Source to process a hierarchical set of XML. As such, the XML Source creates keys to maintain the hierarchy. This is very convenient, and keeps me from having to invent my own keys.

The problem is that the datatype of these keys defaults to DT_UI8. Which SQL Server 2005 datatype should I use to store these values in my staging tables? BIGINT corresponds to DT_I8, which can't accept DT_UI8 values.

View 8 Replies View Related

Can I Use And Excel Doc Saved In An SQL Server Table In An Image Type As A Source For An SSIS Script?

Aug 10, 2007

Hi Folks,

My situation is that Excel files are to be downloaded into a SQL Server 2005 table (perhaps as type image or nvarchar), which serves as a document repository. From there, they should be converted to XML. Use of an NT file directory is strongly discouraged. I would like to have SSIS read the Excel from one field in a table and then write the XML into another field in the same (or perhaps another) table. Is this possible? If not, is the a strait-forward way to do this?

Also, I€™m hoping to invoke the SSIS script from a SQL Server INSERT trigger so the conversion is done during the INSERT.

Thanks,
Rob

View 7 Replies View Related

Ambiguous Error

Oct 27, 2003

I am receiving an error:

[Macromedia][SQLServer JDBC Driver][SQLServer]Ambiguous column name 'Employee_Id'.


This is my SQL/CF code:

<cfquery name="GetEmployee" datasource="CF_CSTS_DSN" >
SELECT *
FROM CST_EmployeeTraining INNER JOIN CST_Employee ON CST_EmployeeTraining.Employee_ID=CST_Employee.Empl oyee_ID
WHERE 1=1
<cfif isdefined("Form.Employee_ID")> AND Employee_ID='#FORM.Employee_ID#'</cfif>
<html>
<head> <title>Data Request</title> </head>
<body>
<div align="center">
<img src="CSTshorthead.jpg" width="580" height="72" border="0">
</div>
<cftable query="GetEmployee" startrow="1" colspacing="2" htmltable colheaders>
<cfcol header="<b>Employee ID</b>"
width=10
text="#Form.Employee_ID#">
<---!more code follows--->

Any ideas?
Thanks!
H

View 14 Replies View Related

Ambiguous Column Name?

May 30, 2008

....
nothing...please see the below...

View 12 Replies View Related

Ambiguous Column Name

Jul 13, 2007

Dear experts,
while i'm trying to insert data , i got error like
Ambiguous column name...that is related to joins
the query is
INSERT INTO MATABLE044
SELECT newid(), ledger.COLUMN002, wh.COLUMN001, Loc.COLUMN005, ledger.COLUMN008, ledger.COLUMN009, ledger.COLUMN010, ledger.COLUMN011,0,
1-1-1900, ledger.COLUMN006, ledger.COLUMN007, ledger.COLUMN014, 'Y', ledger.column016,ledger.COLUMN020, ledger.COLUMN021, ledger.COLUMN022,ledger.COLUMN023,
ledger.COLUMN024,ledger.COLUMN025,ledger.COLUMN026,ledger.COLUMN027,Loc.COLUMN005,ledger.COLUMN029,ledger.COLUMN030,ledger.COLUMN002EE,
'NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','NULL','SNSP_BRANCH','SNSP_BRANCH','SNSP_USER',convert(varchar(19),getdate(),120),NULL,convert(varchar(19),getdate(),120),newid(),'DBMS_REPUTIL.GLOBAL_NAME','en'

FROM MATABLE043 ledger
Inner JOIN MATABLE012 wh on ledger.column002 = wh.column002
Inner JOIN MATABLE024 Loc on wh.column001 = loc.column004
WHERE COLUMN002 ='c5a0bcc4-743a-4d9a-80a5-7c2ebbf6deec' and COLUMN006 = '3d42a36e-7df7-41cd-a6ee-189f4e3f2ad5'
AND COLUMN009 NOT IN ( SELECT COLUMN006 FROM MATABLE044)

what is the meaning


thank you very much

Vinod
Even you learn 1%, Learn it with 100% confidence.

View 2 Replies View Related

Ambiguous Column Name?

Mar 31, 2008

I'm getting an 'Ambiguous column name 'Converted_Mortgage_Number' with this SQL/php query. Can anyone please see why?


DECLARE
@PageSize INT,
@PageNumber INT,
@FirstRow INT,
@LastRow INT

SELECT@PageSize = $pageLength,
@PageNumber = $pageNumber;

SELECT@FirstRow = ( @PageNumber - 1) * @PageSize + 1,
@LastRow = (@PageNumber - 1) * @PageSize + @PageSize ;


WITH results AS


( SELECT


t1.[Converted_Mortgage_Number],
t1.[Converted_Mortgage_Advance_No],
t1.[Original_Account_Number],
CASE
WHEN t3.description IS NOT NULL
THEN t3.description
ELSE t1.CACS_Location_Code
END AS CACS_Location_Code,
t1.[Original_Account_Number_1],
t1.[Payment_Amount],
t1.[Letter_ID],
t1.[Batch_Activity_Date],
t1.[Activity_Date],
t1.[Activity_Time],
CASE
WHEN t6.description IS NOT NULL
THEN t1.[Collection_Activity] + ' - '+ t6.description
ELSE t1.[Collection_Activity]
END AS [Collection_Activity],
CASE
WHEN t5.description IS NOT NULL
THEN t1.[Party_Contact_Code] + ' - ' + t5.description
ELSE t1.[Party_Contact_Code]
END AS [Party_Contact_Code],
CASE
WHEN t7.description IS NOT NULL
THEN t1.[Place_Called] + ' - ' + t7.description
ELSE t1.[Place_Called]
END AS [Place_Called],
t1.[Promise_Amount_1],
t1.[Promise_D_ate_1],
t1.[Promise_Amount_2],
t1.[Promise_D_ate_2],
CASE
WHEN t8.description IS NOT NULL
THEN t1.[Non_Pay_Excuse_Code] + ' - ' + t8.description
ELSE t1.[Non_Pay_Excuse_Code]
END AS [Non_Pay_Excuse_Code],
CASE
WHEN t2.description IS NOT NULL
THEN t1.CACS_State + ' - ' + t2.description
ELSE t1.CACS_State
END AS CACS_State,
t1.[User_ID/Transaction_Type],
t1.[Arrears_Amount],
t4.[Sequence_Number],
t4.[History_Text],
ROW_NUMBER() OVER (ORDER BY [$criteria] $direction) AS RowNumber

FROM format_cacs_cch AS t1

LEFT OUTER JOIN format_cacs_history_1 AS t4
ON t1.Converted_Mortgage_Number = t4.Converted_Mortgage_Number
AND t1.Activity_Date = t4.Activity_Date
AND t1.Activity_Time = t4.Activity_Time

LEFT JOIN sd_cacs_states AS t2
ON t1.CACS_Location_Code = t2.location
AND t1.CACS_State = t2.state

LEFT JOIN sd_cacs_Location_details AS t3
ON t1.CACS_Location_Code = t3.code

LEFT JOIN sd_party_contacted_code AS t5
ON t1.[Party_Contact_Code] = t5.code

LEFT JOIN sd_collection_activity_code AS t6
ON t1.[Collection_Activity] = t6.code

LEFT JOIN sd_place_called AS t7
ON t1.[Place_Called] = t7.code

LEFT JOIN sd_non_pay_excuse_code AS t8
ON t1.[Non_Pay_Excuse_Code] = t8.code

WHERE (t1.Converted_Mortgage_Number = '$mortgage' $additional_date_params)



)

SELECT

[Converted_Mortgage_Number],
[Converted_Mortgage_Advance_No],
[Original_Account_Number],
CACS_Location_Code,
[Original_Account_Number_1],
[Payment_Amount],
[Letter_ID],
[Batch_Activity_Date],
[Activity_Date],
[Activity_Time],
[Collection_Activity],
[Party_Contact_Code],
[Place_Called],
[Promise_Amount_1],
[Promise_D_ate_1],
[Promise_Amount_2],
[Promise_D_ate_2],
[Non_Pay_Excuse_Code],
CACS_State,
[User_ID/Transaction_Type],
[Arrears_Amount],
[Sequence_Number],
[History_Text]

FROM results

WHERERowNumber BETWEEN @FirstRow AND @LastRow
ORDER BY [$criteria] $direction ;

View 5 Replies View Related

Ambiguous Variable Name?

Oct 10, 2007

Hi,

I have a package that I migrated from DTS. There are several "execute SQL" tasks that take an Input parameter of "myVariable", which is a string defined at the package level and has a default value assigned to it.

However, the package is throwing this error:

Error 1 Validation error. Err LogComletion : Failed to lock variable "myVariable" for read access with error 0xC001F032 "The variable name is ambiguous because multiple variables with this name exist in different namespaces. Specify namespace-qualified name to prevent ambiguity.".

How come I cannot use this variable when defined at the package level? If I move the variable to the task level, it works fine, but I want to re-use the variable in several places in the package.

Thanks

View 3 Replies View Related

8114 Workaround

Dec 14, 2004

The very simplified version of my problem is that these

Select DISTINCT Cast(KWID as NUMERIC)
FROM OV_MID

Select DISTINCT Convert(Numeric,KWID)
FROM OV_MID

should work, but don't because KWID is a varchar and somewhere in there is something that won't convert.

I get this error:
Server: Msg 8114, Level 16, State 5, Line 1
Error converting data type varchar to numeric.

I would love to find out which rows are causing the error, but more importantly I would like to have a Null value where the conversion doesn't work and the numeric values where it does work.

I have already deleted all obvious non-numeric characters, but I believe there are some line terminators being read as carriage returns in this table. :confused:

Any workaround or way to determine which rows have KWID that cannot be converted to numeric would be most appreciated.

Thanks!

View 1 Replies View Related

Deadlocks Workaround?

Jul 20, 2005

Hi All,I have read about deadlocks here on Google and I was surprised to readthat an update and a select on the same table could get into adeadlock because of the table's index. The update and the selectaccess the index in opposite orders, thereby causing the deadlock.This sounds to me as a bug in SQL Server!My question is: Could you avoid this by reading the table with a'select * from X(updlock)' before updating it? I mean: Would thisresult in the update transaction setting a lock on the index rowsbefore accessing the data rows?Merry Christmas!/Fredrik Möller

View 3 Replies View Related

How Can I Workaround This Problem?

Nov 8, 2006

Hello everbody,

this query:

SELECT * FROM TBL_DEVICE_DRIVERS

WHERE (DD_CATEGORIES & 2147483648) > 0

bring the error message:

Invalid operator for data type.

The value 2147483648 is hex 0x80000000 for bitwise

joining defined.

I try to cast it to decimal, but it does not work.

Have anybody an idea?

Thanks for answers!

View 4 Replies View Related

Ambiguous Column Name Problem

Apr 8, 2008

I have a problem when running the code after I select an item from the dropdownbox and click select: 1 <%@ Page Language="C#" MasterPageFile="~/Default.master" Title="View Orders allocated to Ships" %>
2 <%@ import namespace="System.Data.SqlClient" %>
3
4 <script runat="server">
5
6 protected void ShipIDSelect_Click(object sender, EventArgs e)
7 {
8 SqlConnection conn;
9 SqlCommand comm;
10 SqlDataReader reader;
11 string connectionString =
12 ConfigurationManager.ConnectionStrings[
13 "ShippingSystemConnectionString1"].ConnectionString;
14 conn = new SqlConnection(connectionString);
15 comm = new SqlCommand(
16 "SELECT OrderID, CustomerID, Date, NumberofItems, DescriptionsofItems, SafeItems, Destination FROM [Order] o, Ordersonship os " +
17 "WHERE os.ShipID = @ShipIDDropDownList " +
18 "AND o.OrderID = os.OrderID", conn);
19 comm.Parameters.Add("@ShipIDDropDownList", System.Data.SqlDbType.Int);
20 comm.Parameters["@ShipIDDropDownList"].Value = Convert.ToInt32(ShipIDDropDownList.SelectedValue);
21
22 conn.Open();
23 reader = comm.ExecuteReader();
24 if (reader.Read())
25 {
26 orderIDLbl.Text = reader["OrderID"].ToString();
27 customerIDLbl.Text = reader["CustomerID"].ToString();
28 dateLbl.Text = reader["Date"].ToString();
29 numofitemsLbl.Text = reader["NumberofItems"].ToString();
30 descripofitemsLbl.Text = reader["DescriptionsofItems"].ToString();
31 safeLbl.Text = reader["SafeItems"].ToString();
32 destinationLbl.Text = reader["Destination"].ToString();
33 }
34 reader.Close();
35 conn.Close();
36 conn.Dispose();
37 }
38 </script>
39
40 <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
41 <br />
42 <table style="position: static">
43 <tr>
44 <td style="width: 147px">
45 <strong>ShipID:</strong></td>
46 <td style="width: 100px">
47 <asp:DropDownList ID="ShipIDDropDownList" runat="server" DataSourceID="SqlDataSource1"
48 DataTextField="ShipID" DataValueField="ShipID" Style="position: static">
49 </asp:DropDownList>
50 <asp:Button ID="ShipIDSelect" runat="server" Style="position: static" Text="Select" OnClick="ShipIDSelect_Click" />
51 <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:ShippingSystemConnectionString1 %>"
52 SelectCommand="SELECT [ShipID] FROM [OrdersonShip]"></asp:SqlDataSource>
53 </td>
54 <td style="width: 100px">
55 </td>
56 </tr>
57 <tr>
58 <td style="width: 147px">
59 </td>
60 <td style="width: 100px">
61 </td>
62 <td style="width: 100px">
63 </td>
64 </tr>
65 <tr>
66 <td style="width: 147px">
67 <strong>OrderID:</strong></td>
68 <td style="width: 100px">
69 <asp:Label ID="orderIDLbl" runat="server" Style="position: static" Text="" Width="178px"></asp:Label></td>
70 <td style="width: 100px">
71 </td>
72 </tr>
73 <tr>
74 <td style="width: 147px">
75 <strong>CustomerID:</strong></td>
76 <td style="width: 100px">
77 <asp:Label ID="customerIDLbl" runat="server" Style="position: static" Text="" Width="177px"></asp:Label></td>
78 <td style="width: 100px">
79 </td>
80 </tr>
81 <tr>
82 <td style="width: 147px; height: 21px">
83 <strong>Date:</strong></td>
84 <td style="width: 100px; height: 21px">
85 <asp:Label ID="dateLbl" runat="server" Style="position: static" Text="" Width="177px"></asp:Label></td>
86 <td style="width: 100px; height: 21px">
87 </td>
88 </tr>
89 <tr>
90 <td style="width: 147px; height: 21px">
91 <strong>Number of Items:</strong></td>
92 <td style="width: 100px; height: 21px">
93 <asp:Label ID="numofitemsLbl" runat="server" Style="position: static" Text="" Width="177px"></asp:Label></td>
94 <td style="width: 100px; height: 21px">
95 </td>
96 </tr>
97 <tr>
98 <td style="width: 147px">
99 <strong>Description of Items:</strong></td>
100 <td style="width: 100px">
101 <asp:Label ID="descripofitemsLbl" runat="server" Style="position: static" Text="" Width="178px"></asp:Label></td>
102 <td style="width: 100px">
103 </td>
104 </tr>
105 <tr>
106 <td style="width: 147px">
107 <strong>Are Items Safe?:</strong></td>
108 <td style="width: 100px">
109 <asp:Label ID="safeLbl" runat="server" Style="position: static" Text="" Width="177px"></asp:Label></td>
110 <td style="width: 100px">
111 </td>
112 </tr>
113 <tr>
114 <td style="width: 147px">
115 <strong>Destination:</strong></td>
116 <td style="width: 100px">
117 <asp:Label ID="destinationLbl" runat="server" Style="position: static" Text="" Width="177px"></asp:Label></td>
118 <td style="width: 100px">
119 </td>
120 </tr>
121 </table>
122 </asp:Content> I get a Ambiguous column name 'OrderID'. Error. How do I fix it?The stack trace is below: [SqlException (0x80131904): Ambiguous column name 'OrderID'.] System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) +98 System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) +82 System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) +346 System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) +3430 System.Data.SqlClient.SqlDataReader.ConsumeMetaData() +52 System.Data.SqlClient.SqlDataReader.get_MetaData() +130 System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString) +371 System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async) +1272 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result) +334 System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method) +45 System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method) +162 System.Data.SqlClient.SqlCommand.ExecuteReader() +114 ASP.ships_viewordersonship_aspx.ShipIDSelect_Click(Object sender, EventArgs e) in c:SystemShipsViewOrdersonShip.aspx:23 System.Web.UI.WebControls.Button.OnClick(EventArgs e) +96 System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument) +116 System.Web.UI.WebControls.Button.System.Web.UI.IPostBackEventHandler.RaisePostBackEvent(String eventArgument) +31 System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument) +32 System.Web.UI.Page.RaisePostBackEvent(NameValueCollection postData) +72 System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3824  Regards, Peter   

View 5 Replies View Related

Ambiguous Match Found.

Nov 3, 2003

Does anyone know what this error means?

Ambiguous match found.

i'm using sql server 2000


here is my code

Dim con As SqlConnection = New SqlConnection

con.ConnectionString = _
"Data Source=localhost;" + _
"Initial Catalog=registeruser;" + _
"User ID=int422;" + _
"Password=int422"


Dim cmd As SqlCommand = New SqlCommand

cmd.Connection = con
cmd.CommandType = CommandType.Text
cmd.CommandText = "SELECT salt,hash FROM users WHERE login_id = '" + user.Text + "'"


Dim rdr As SqlDataReader = cmd.ExecuteReader(CommandBehavior.CloseConnection)


con.Open()

Dim salt, hash As String



While rdr.Read()


If user.Text = rdr.Item("login_id").ToString() Then

salt = rdr.Item("salt").ToString()
hash = rdr.Item("hash").ToString()


End If


End While

con.Close()


Label1.Text = salt



End Sub

View 1 Replies View Related

SQL 2012 :: Ambiguous Column Name

Mar 21, 2014

I'm planning an upgrade to SQL Server 2012 and noticed the following.

We have a query that includes a duplicate column name in the SELECT statement. This query happens to work in a db we have that is set to SQL 2000 (80) compatibility level, but the same exact query fails when I set the db to SQL 2008 (100) compatibility level.

The error is (ColumnName is just an example):

Ambiguous column name 'ColumnName'

View 7 Replies View Related

Ambiguous Values Returned

May 15, 2008

Hello,

I'm brand new to this forum and I'm stuck. We've got a query which queries three tables: booking, catheter and patients. The following (dodgy) query has pulled off the data for years, without problems:


SELECT
CARDIAC_CATHETER.CARDIAC_CATHETER_ID,
CARDIAC_CATHETER.OPERATOR1,
CARDIAC_CATHETER.TEST_DATE,
BOOKING.STATUS,
BOOKING.TEST_DATE AS BOOKING_TEST_DATE,
BOOKING.PROCEDURE_DATE_TIME,
CARDIAC_CATHETER.ITEM_NO,
CARDIAC_CATHETER.BILLING_CATEGORY,
PATIENTS.REFERRING_PHYSICIAN1,
PATIENTS.HOSPITAL_UNIT_NUMBER
FROM
(CARDIAC_CATHETER INNER JOIN PATIENTS ON CARDIAC_CATHETER.PATIENT_ID = PATIENTS.PATIENT_ID)
LEFT OUTER JOIN BOOKING ON PATIENTS.PATIENT_ID = BOOKING.PATIENT_ID AND 'CATHETER' = BOOKING.CLINIC AND BOOKING.STATUS <> 'CANCELLED' AND BOOKING.PROCEDURE_DATE_TIME >= (CARDIAC_CATHETER.TEST_DATE - 1)
AND BOOKING.PROCEDURE_DATE_TIME < (CARDIAC_CATHETER.TEST_DATE + 1)
WHERE
CARDIAC_CATHETER.TEST_DATE > '2005-04-01' AND CARDIAC_CATHETER.BILLING_CATEGORY LIKE '3%'


About 2500 perfect rows and 12 rows which have duplicate catheter id values. There are six pairs of duplicated records. It's only the cardiac_catheter.catheter_id and cardiac_catheter.test_date which are duplicated - the first row shown below contains correct values, the second doens't. The other values returned, on both rows, are correct. Here is some sample data:

CARDIAC_CATHETER_ID
cat_id1234
cat_id1234

CARDIAC_CATHETER_TEST_DATE
19/12/2005 13:17
19/12/2005 13:17

BOOKING_TEST_DATE
19/12/2005 13:33
19/12/2005 08:46

PROCEDURE_DATE_TIME
20/12/2005 10:30
19/12/2005 08:46

CLINIC
CATHETER
CATHETER

I know the query is rubbish. Has anyone got any idea how it can be improved and sorted so that we don't pull back ambiguous data?

Thanks,

Stewart

View 5 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved