Viewing 15 posts - 8,611 through 8,625 (of 13,876 total)
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
A CLR TVF is the fastest and best, in my opinion. Is that an option for you?
March 9, 2015 at 11:38 am
Another option here is to use SSIS, where you have instant access to C# via script tasks.
March 9, 2015 at 8:15 am
It has to be said: this is a very weird requirement. I would be interested to know why you are doing things this way – are you able to provide...
March 6, 2015 at 10:17 am
davoscollective (3/6/2015)
omarlopez7 (3/6/2015)
In that case not work, i says if you us on the where section like this.Select * from table
where date between '12-12-12' and '12-31-12'
Between is inclusive of the...
March 6, 2015 at 6:37 am
omarlopez7 (3/6/2015)
In that case not work, i says if you us on the where section like this.Select * from table
where date between '12-12-12' and '12-31-12'
I do not understand your point.
BETWEEN...
March 6, 2015 at 6:27 am
rolinoberto (3/6/2015)
suppose I have an application, which is used to fill and use the information stored in a database, suppose (after...
March 6, 2015 at 6:18 am
Viewing 15 posts - 8,611 through 8,625 (of 13,876 total)