Viewing 15 posts - 9,241 through 9,255 (of 9,643 total)
Have you verified that is it in fact the same clerk? Could it be something like a varchar field where one row has spaces at the end and the...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
February 19, 2008 at 1:39 pm
Are you allowing mixed authentication on the named instance and setting an sa password? It sounds like you are setting up the named instance to use the Domain password...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
February 19, 2008 at 1:30 pm
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
February 19, 2008 at 1:25 pm
Select
parent_product,
product,
sub_product
From
products P Join
...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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) + "/"...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
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...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
February 15, 2008 at 3:00 pm
WHere are you setting the report data source to the sqlcommand you are executing?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
February 15, 2008 at 9:26 am
Viewing 15 posts - 9,241 through 9,255 (of 9,643 total)