Viewing 5 posts - 1 through 5 (of 5 total)
Hi,
Please help to solve this !!!
i need to create tables and insert values in following tables, the scenario is
create table tbl1(tbl1_col1 int primary key ,tbl1_col2 int)
create table tbl2(tbl2_col1 int ,tbl2_col2...
December 17, 2012 at 12:27 pm
I need to find out the rows which are all having unpredictable characters only.
Example:
computers data ? exist
mobile ? communication
technology ? review
Is there any way to find rows having...
November 2, 2012 at 1:13 am
Thanks a lot for your reply. Its working fine.
November 1, 2012 at 10:38 pm
Please help me to find unpredictable special characters like ? , ? in fields.
For example:
declare @tbl table(val nvarchar(100) null)
insert into @tbl
select '?'
union all
select '?'
union all
select '©'
select * From @tbl
It...
November 1, 2012 at 7:56 am
I have character or symbol in my column like "?". Please help me to find out the rows which are all having this("?") character.
My column value: Digital ? Packet Data
I...
November 1, 2012 at 7:07 am
Viewing 5 posts - 1 through 5 (of 5 total)