Viewing 15 posts - 8,611 through 8,625 (of 13,882 total)
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
I have never seen all of this written out so concisely before, thank you for the hard work that's gone into this.
March 11, 2015 at 1:57 am
m_swetz (3/10/2015)
March 10, 2015 at 12:57 pm
sunder.bugatha (3/10/2015)
SET @I = '0745'
IF( SUBSTRING(@I,1,1)= 0)
SET @I = '0'+ CAST((CAST(@I AS INT)+15) AS VARCHAR(10))
ELSE
SET @I = CAST((CAST(@I AS INT)+15) AS VARCHAR(10))
IF( SUBSTRING(@I,1,1)= 0)
SELECT CASE WHEN SUBSTRING(@I,3,2)='60'...
March 10, 2015 at 8:25 am
Priya004 (3/10/2015)
March 10, 2015 at 4:56 am
d.carpenter (3/10/2015)
I've developed an ssis project using vs2013 when I should have used vs2012. is there a way I can downgrade the project so it opens in vs2012??Thanks
Not as far...
March 10, 2015 at 4:23 am
VS2013 works fine with SQL 2014 – can you describe your problem?
March 10, 2015 at 4:07 am
d.carpenter (3/10/2015)
Is there a way of opening a project created VS2014 in VS2013?Thanks
VS2014 does not exist. There is only VS2013 and VS2015. Please double-check your question.
March 10, 2015 at 4:01 am
suresh0534 (3/9/2015)
I got the Solution.
Below is the Solution.
DECLARE @str VARCHAR(400)
--Add your specialcharacters here
DECLARE @specialchars VARCHAR(50) = '%[~,@,#,$,%,&,*,(,),.,!^?:]%'
SET @str = 'KRA!NTHI@#KUMAR, KU%^?MAR GO~()$U.:D'
WHILE PATINDEX( @specialchars, @str ) > 0
---Remove special...
March 9, 2015 at 1:27 pm
Viewing 15 posts - 8,611 through 8,625 (of 13,882 total)