Viewing 15 posts - 9,241 through 9,255 (of 9,641 total)
It would help if you posted some sample data and details as to what you are doing.
I find the error quite easy to understand. On row 44870 the column...
February 19, 2008 at 1:25 pm
Select
parent_product,
product,
sub_product
From
products P Join
...
February 19, 2008 at 1:19 pm
I changed to a Fuzzy Lookup with a minimum similariaty of 1 and a similarity threshold of .99 ( as high as it will go) and I get a match...
February 18, 2008 at 9:17 am
I think the error handling is logical. I would suggest alos passing back some kind of error flag so that your UI/business layer knows that it tried to create...
February 18, 2008 at 6:48 am
Well, as far as I am concerned, if that is truly your definition of uniqueness you should have that unique index on the table anyway.
February 16, 2008 at 9:18 am
First off, you probably would have gotten quicker response had you posted this in the Reporting Services forum.
Your expression sounds fairly simple to me, if I understand correctly. In...
February 16, 2008 at 9:05 am
First off, how are the tables being updated? I normally put this kind of work in the stored procedure/front end doing the updating. The only way to encapsulate...
February 16, 2008 at 8:58 am
Here is a link to an article on this site that answers your question:
Basically is says that Supported means if a transaction was started by the process that calls the...
February 16, 2008 at 8:30 am
It would be helpful if you posted some sample data form the csv and the table specification. Based on the limited information given it sounds like you may have...
February 16, 2008 at 8:20 am
To accomplish what you are trying to accomplish you do not need to create the connection and command in the ASP.NET page. You just need pass the parameter...
February 16, 2008 at 8:15 am
The best way to send the date to SQL Server is YYYY/MM/DD. So if you switch this:
SUBSTRING(INVOICEDATE,7,2) + "/" + SUBSTRING(INVOICEDATE,5,2) + "/" + SUBSTRING(INVOICEDATE,1,4)
to this:
SUBSTRING(INVOICEDATE,1, 4) + "/"...
February 15, 2008 at 3:41 pm
I don't think you can alter a running job. What you can do is just add the second step before starting the job like this (note adding on success...
February 15, 2008 at 3:00 pm
WHere are you setting the report data source to the sqlcommand you are executing?
February 15, 2008 at 9:26 am
Have you verified that you are getting an empty string from the app? Are you sure youare getting data back to the app? I would change the if...
February 15, 2008 at 7:43 am
I just assumed the temp table represented the master table for example and testing purposes.
February 13, 2008 at 11:24 am
Viewing 15 posts - 9,241 through 9,255 (of 9,641 total)