Viewing 15 posts - 106 through 120 (of 5,590 total)
Steve Jones - SSC Editor (7/12/2016)
July 12, 2016 at 2:35 pm
Phil Parkin (6/8/2016)
IF COL_LENGTH('dbo.mytable', 'col1') IS NULL
BEGIN
ALTER TABLE dbo.mytable
...
June 10, 2016 at 10:54 am
Ed Wagner (6/6/2016)
WayneS (6/6/2016)
PRO TIP:If you're depending on an email notification to warn you when a backup fails, lack of receiving the email doesn't mean that the backup succeeded.
That sounds...
June 6, 2016 at 11:58 am
PRO TIP:
If you're depending on an email notification to warn you when a backup fails, lack of receiving the email doesn't mean that the backup succeeded.
June 6, 2016 at 11:27 am
drew.allen (6/6/2016)
Ray K (6/5/2016)
BTW,...
June 6, 2016 at 11:24 am
Ray K (6/5/2016)
BTW, I...
June 6, 2016 at 11:23 am
RBarryYoung (5/27/2016)
Anyone else going to SQL Saturday in Philly next week? I don't think I recognized anyone on the speakers list...
I'll be there.
May 30, 2016 at 7:47 am
Grant Fritchey (5/24/2016)
WayneS (5/24/2016)
Grant Fritchey (5/24/2016)
Thrilling stuff Steve. Congrats!My two are graduating high school tomorrow (and turning 18 on the same day, **** I'm old).
Especially if you consider that...
May 25, 2016 at 6:16 pm
Grant Fritchey (5/24/2016)
Thrilling stuff Steve. Congrats!My two are graduating high school tomorrow (and turning 18 on the same day, **** I'm old).
Especially if you consider that you waited to...
May 24, 2016 at 3:56 pm
ThomasRushton (5/23/2016)
Been a bit quiet here over the weekend - was there an outage, or did everyone else suddenly have an attack of Real Life?
SQL Saturday Atlanta for me.
May 23, 2016 at 9:05 am
In your article, you have:
var results = db.Customer.Where(c => c.State == "Ohio");
Which is changed to this to limit the query to only the necessary columns:
var results = db.Customer
...
May 17, 2016 at 1:12 pm
You gotta just love the way ORM does this:
var results = db.Customer.Where(c => c.State == "Ohio");
what really was running behind the scenes was this:
SELECT
*
FROM
Customer
WHERE
State...
May 17, 2016 at 12:54 pm
jasona.work (5/12/2016)
Michael L John (5/12/2016)
Ed Wagner (5/12/2016)
Lynn Pettis (5/12/2016)
J Livingston SQL (5/12/2016)
Lynn Pettis (5/12/2016)
And Post Padder is still at it.yeah....about 15 today
We can call him pp. :w00t:
Agreed. Now...
May 12, 2016 at 3:41 pm
Sean Lange (5/9/2016)
OP:
My SQL update string looks like this: "UPDATE " + tableName + " SET ??? = " +...
May 9, 2016 at 4:08 pm
solomon.jernas (5/9/2016)
Error:Login Failed for user 'APP' Reason Password did not matche that for the login provided
Error No : 18456 : Serverity 14 State 8
State 8 means that...
May 9, 2016 at 1:10 pm
Viewing 15 posts - 106 through 120 (of 5,590 total)