Viewing 15 posts - 286 through 300 (of 347 total)
Its complaining about invalid token or may not be well formed.
November 11, 2010 at 1:34 pm
I get the following error :
An OlEDb error has occured . error code 0X80004005
An OLE DB record os available. Source Microsoft office access database engine" Description : Invalid argument.
The acquire...
November 8, 2010 at 8:54 am
I don't have any control over the source excel file. Is there any way I can convert it ?
November 5, 2010 at 7:43 am
I am using a sql command in place of a oledb destination to populate the table. The sql command executes a stored proc and the returns the value of ColA...
October 15, 2010 at 11:23 am
Got it
ALTER PROCEDURE usp_PreInsert
@File_ID INT
AS
BEGIN
IF (SELECT COUNT(Has_Errors) AS Errors_Entity FROM dbo.Staging_Entities
WHERE File_ID = @File_ID AND Has_Errors > 0
UNION
SELECT COUNT(Has_Errors) AS Errors_Contracts FROM dbo.Staging_Contracts
WHERE File_ID = @File_ID AND Has_Errors >...
October 14, 2010 at 1:22 pm
I am trying to do something like this :
ALTER PROCEDURE usp_PreInsert
@File_ID INT
AS
BEGIN
IF (SELECT COUNT(Has_Errors) AS Errors_Entity FROM dbo.Staging_Entities
WHERE File_ID = @File_ID AND Has_Errors > 0
UNION
SELECT COUNT(Has_Errors) AS Errors_Contracts...
October 14, 2010 at 12:38 pm
I need to do something like this but not getting the correct syntax:
SELECT CSP.P_Degree_Name
(CASE WHEN CSP.P_Degree IS NULL THEN NULL
ELSE
( SELECT CSP.P_Degree_Name,DEGREE_ID FROM...
October 11, 2010 at 9:56 am
Yes, I am sure that I am using the right database .
September 28, 2010 at 10:17 am
Replace and Substring worked for me. Thanks
September 27, 2010 at 2:25 pm
I was looking for something like this 713-777-9906
September 23, 2010 at 2:30 pm
Viewing 15 posts - 286 through 300 (of 347 total)