Viewing 15 posts - 1,726 through 1,740 (of 26,488 total)
I ran the query...
March 22, 2018 at 9:20 am
Msg 245, Level 16, State 1, Line 4
Conversion failed when converting the nvarchar value...
March 22, 2018 at 9:07 am
Hope this can get you started:
create table #T(
ID varchar(3),
diag1 varchar(10),
diag2 varchar(10),
diag3 varchar(10),
diag4 varchar(10),
diag5 varchar(10),
March 22, 2018 at 8:36 am
NineIron - Thursday, March 22, 2018 8:01 AMYes.
March 22, 2018 at 8:32 am
March 22, 2018 at 7:55 am
NineIron - Thursday, March 22, 2018 7:40 AMYes. That's correct.
One, that means the table has as many columns needed for all the...
March 22, 2018 at 7:45 am
Hi All,
I am facing some serious issue with SSIS package.
In My project, I am...
March 22, 2018 at 7:35 am
March 22, 2018 at 7:28 am
March 22, 2018 at 7:22 am
March 22, 2018 at 7:05 am
The only answer I can come up with without reading anything about sequences (haven't used them yet) is that the sequence could possibly be reset therefore resulting in duplicate values.
March 22, 2018 at 7:00 am
March 21, 2018 at 10:58 pm
March 21, 2018 at 9:48 pm
Like this, for one method:
create table dbo.test1
([Category] char(1) null,
[CNT] int null
);
create table dbo.test2
([Category] char(1) null);
insert into dbo.test1 ([Category], [CNT])
values ('A', 5),('B',...
March 21, 2018 at 6:15 pm
Viewing 15 posts - 1,726 through 1,740 (of 26,488 total)