Viewing 15 posts - 8,596 through 8,610 (of 13,876 total)
Maddave (3/13/2015)
March 13, 2015 at 4:34 am
Going off on a slight tangent, what about bad error messages?
I've just had this one in SSIS:
Executing the query "exec ..." failed with the following error: "Package execution failed...
March 13, 2015 at 3:03 am
Gary Varga (3/13/2015)
Yes!!! Commented out code. That's what source code control is for. If you need to leave a reference to old code then just leave a comment WHY it...
March 13, 2015 at 2:58 am
Superfluous comments are worse than no comments. You know the type:
--Find the average
select @avg = avg(x)
Reminds me of those people who, when doing presentations, just recite what is written on...
March 13, 2015 at 2:01 am
One simple solution is to schedule the package to run frequently and process any files it finds. If it finds no files, it completes without doing anything.
Might that work?
March 12, 2015 at 12:51 pm
Nice work Stephanie. Are you involved in QA by any chance? If not, you should be:-)
March 12, 2015 at 9:13 am
You cannot 'ignore' this. You need to refine your match criteria to avoid it.
March 12, 2015 at 12:26 am
Brandie Tarvin (3/11/2015)
Phil Parkin (3/11/2015)
What sort of C# app is this? Windows forms, console, web etc?
Ummm... That's a good question. Where would I look to find that information? (Someone else...
March 11, 2015 at 9:56 am
What sort of C# app is this? Windows forms, console, web etc?
March 11, 2015 at 9:50 am
Try adding a couple more statements:
switch (name) {
case "Job1": this.DTDQC.Src = Page.ResolveClientUrl(imagename);
break;
case "Job2": this.XMEDPTX.Src = Page.ResolveClientUrl(imagename);
break;
default:
MessageBox.Show("hello, how are you");
break;
...
March 11, 2015 at 9:41 am
So something like
MessageBox.Show("Here is the message");
is highlighted as an error? It should work. Could there be an error on the preceding line?
March 11, 2015 at 9:28 am
Are there any triggers on any of the target tables?
March 11, 2015 at 7:10 am
So do the replace first, then the split.
March 11, 2015 at 4:59 am
That would not help either. I would have to do one join on the update for the transactions found, a delete for transactions not found followed by an insert of...
March 11, 2015 at 3:49 am
You could break your string into its individual words, using something like Jeff Moden's splitter[/url] and then match those against your bad words table. That should run fairly quickly.
March 11, 2015 at 2:01 am
Viewing 15 posts - 8,596 through 8,610 (of 13,876 total)