Viewing 15 posts - 916 through 930 (of 1,243 total)
Sean Lange (9/15/2014)
BWFC (9/15/2014)
Sean Lange (9/15/2014)
Lynn Pettis (9/13/2014)
SQLRNNR (9/13/2014)
Sean Lange (9/13/2014)
September 15, 2014 at 7:27 am
Sean Lange (9/15/2014)
Lynn Pettis (9/13/2014)
SQLRNNR (9/13/2014)
Sean Lange (9/13/2014)
September 15, 2014 at 7:16 am
create table #tblRegistration
(
Phone1 varchar (10)
)
insert into #tblregistration
select '9334457582' union
select '1234567890'
select
replace(Phone1,SUBSTRING(phone1,3,6),'******') ---This one
from #tblregistration
drop table #tblRegistration
This should stop the error message. Just include the marked...
September 15, 2014 at 3:53 am
gouri92 (9/15/2014)
I have 10 digit Mobile numbers in one column of table.
I have to display the data in the following way
933445758293******82
123456789012******90
I have to display two digits from starting and...
September 15, 2014 at 3:40 am
Eirikur Eiriksson (9/15/2014)
😎
;WITH SAMPLE_DATA(MOBILE) AS
(SELECT * FROM
(VALUES
('9334457582')
...
September 15, 2014 at 3:21 am
declare @Mobile as varchar(10) = '9334457582'
select replace(@mobile,SUBSTRING(@Mobile,3,6),'******')
Does this do what you want?
September 15, 2014 at 3:11 am
SQLRNNR (9/11/2014)
Everything is awesome
I went to sleep humming that damn song and it's still stuck in my head now!! I did take it upon myself to share it with...
September 12, 2014 at 1:04 am
SQLRNNR (9/10/2014)
Sean Lange (9/10/2014)
SQLRNNR (9/10/2014)
Sean Lange (9/10/2014)
Ed Wagner (9/10/2014)
whereisSQL? (9/10/2014)
Sean Lange (9/10/2014)
Ed Wagner (9/10/2014)
djj (9/10/2014)
TelephoneTelegraph
Pony Express
History
Lessons Learned
and promptly forgotten so we can repeat ourselves.
Is that old age or selective learning?
Both...
September 11, 2014 at 4:04 am
Try this
set dateformat dmy
declare @Date varchar(max) = 'Fri 14/01/2009'
declare @processed date= reverse(left(reverse(@date),10))
September 5, 2014 at 9:05 am
TomThomson (9/5/2014)
Ed Wagner (9/5/2014)
BWFC (9/5/2014)
TomThomson (9/4/2014)
Ed Wagner (9/4/2014)
djj (9/4/2014)
Ed Wagner (9/4/2014)
Revenant (9/4/2014)
SQLRNNR (9/4/2014)
silverspoon
Feed
Qats
Granola
Museli
Sawdust 🙂
Project
Projectile
Pork chop
September 5, 2014 at 6:11 am
TomThomson (9/4/2014)
Ed Wagner (9/4/2014)
djj (9/4/2014)
Ed Wagner (9/4/2014)
Revenant (9/4/2014)
SQLRNNR (9/4/2014)
silverspoon
Feed
Qats
Granola
Museli
Sawdust 🙂
September 5, 2014 at 1:50 am
Grant Fritchey (9/4/2014)
BWFC (9/4/2014)
Grant Fritchey (9/4/2014)
September 4, 2014 at 6:55 am
Grant Fritchey (9/4/2014)
September 4, 2014 at 6:20 am
Stuart Davies (9/3/2014)
BWFC (9/3/2014)
Has anybody out there got any experience with Serif WebPlus x5?
Sadly yes - but only in an evaluation way. From memory you have to tie into their...
September 4, 2014 at 12:54 am
Has anybody out there got any experience with Serif WebPlus x5?
September 3, 2014 at 1:17 pm
Viewing 15 posts - 916 through 930 (of 1,243 total)