Viewing 15 posts - 1,231 through 1,245 (of 15,381 total)
Luis Cazares (9/23/2016)
Someone needs a course on how to write basic DML. Or maybe I'm just grumpy this week.
You might be grumpy but good grief. That code was horrible.
September 23, 2016 at 1:46 pm
Ed Wagner (9/23/2016)
September 23, 2016 at 7:10 am
Holy what the???? There are so many issues with that code it is hard to know where to start. First of all...you are storing more than 1 value in a...
September 22, 2016 at 1:23 pm
Smendle (9/22/2016)
Eirikur Eiriksson (9/22/2016)
For a variable inside the procedure use this😎
DECLARE @MY_INT_VAR INT;
SET @MY_INT_VAR = 0;
i could be confusing this with a .NET programming environment but doesn't that initialize the...
September 22, 2016 at 12:13 pm
H Laforest (9/20/2016)
But there is no data in the table. There is at that point to EmpID = 2 or 1 for that matter
The presence of data makes no difference...
September 22, 2016 at 10:54 am
Smendle (9/22/2016)
Eirikur Eiriksson (9/22/2016)
For a variable inside the procedure use this😎
DECLARE @MY_INT_VAR INT;
SET @MY_INT_VAR = 0;
i could be confusing this with a .NET programming environment but doesn't that initialize the...
September 22, 2016 at 10:52 am
I knew the answer but for the life of me I couldn't figure out why I needed to choose 4 answers. For some reason my brain did not understand that...
September 22, 2016 at 10:48 am
hegdesuchi (9/21/2016)
Hi,Thank you!!
My reference file also has array format and not generic collection format. I am not sure if I can use list when we have output as an array
I...
September 21, 2016 at 12:14 pm
river1 (9/21/2016)
I have this stored procedure that has inside:
SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED
The goal is to decrease the isolation level to the lowest possible. It seems to be...
September 21, 2016 at 8:20 am
BLOB_EATER (9/21/2016)
September 21, 2016 at 7:45 am
hegdesuchi (9/19/2016)
I am new to c# and I am stuck with logic for nested arrays.
Below is my example and I am not sure how to do it. The value...
September 21, 2016 at 7:30 am
Eirikur Eiriksson (9/19/2016)
I'm normally very tolerant when it comes to noobs but this one only leaves me three choises😎
1) deaf
2) daft
3) dumb
I think that is only two choices as daft...
September 19, 2016 at 2:26 pm
You need to get in the habit of posting information in a consumable format.
create table #Something
(
SomeValue varchar(100)
)
insert #Something
select 'Day20ReminderCampaign2016_09_15_13:46:57' union all
select 'Day3ReminderCampaign2016_09_19_02:28:39'
From there is it is fairly trivial to...
September 19, 2016 at 9:47 am
Ed Wagner (9/16/2016)
Sean Lange (9/16/2016)
September 16, 2016 at 12:38 pm
erouse (9/16/2016)
This is my data now.
LABORLC
152685A B C D E
152969A B
This is what I would like...
September 16, 2016 at 12:20 pm
Viewing 15 posts - 1,231 through 1,245 (of 15,381 total)