Viewing 15 posts - 3,931 through 3,945 (of 39,768 total)
Another test here, a partial (or whole) fix is in:
SELECT *
FROM dbo.Articles AS a
GO
-- two line breaks before this
-- Test as SallyDev
EXECUTE AS USER = 'SallyDev'
SELECT...
May 9, 2019 at 4:02 pm
This was interesting to me as well when I stumbled on it.
May 9, 2019 at 3:57 pm
That's how I feel. It's a good first step, and it's a way to start getting businesses to be more responsible. Someone yesterday (Eric Russell) posted that maybe companies should...
May 9, 2019 at 3:55 pm
There are some slow times. Just had the gateway issue myself. Some of this is the load of people running searches. The default system uses FTS and that doesn't scale...
May 8, 2019 at 9:42 pm
OK, I see a bug here. Even though it says I'm unsubscribed, I've gottne emails.
Failed a high priority bug here.
May 8, 2019 at 6:47 pm
We have a bug filed for this item to ensure that when answers change, users are marked as correct. The points and correct/incorrect will get sorted here (soon, I hope).
May 8, 2019 at 5:18 pm
I would follow Chris M's strategy. Why check for the constraint? Look for the data.
May 8, 2019 at 5:16 pm
Maybe use a checksum + some other value in the row? A PK perhaps?
May 8, 2019 at 5:15 pm
Hmm, I'm not sure what you're doing. If I go to a post by Jeff, and I click " follow" under his name/rank/points, I see this:
May 8, 2019 at 5:13 pm
That's interesting. The idea that you need a license to collect personal data. That might help ensure startups think about this stuff early. Right now a new company is essentially...
May 8, 2019 at 3:58 pm
If you have these as computed columns, then your DDL should explain that.
When you write " if it is in past we expire it meaning stamp it with latest "Stepsetupdate"",...
May 8, 2019 at 3:33 pm
I'm not sure what happened there. I just answered from a test account and selected Sys.time() and was marked correct. Are you sure you didn't pick sys.gettime()? Can you screen...
May 8, 2019 at 3:24 pm
I assume you can split the string into a table.
WITH cteString (a)
AS
(SELECT a
FROM (VALUES ('X'), ('Y'), ('Z')) x(a)
)
SELECT i.a + j.a + k.a
FROM cteString...
May 8, 2019 at 2:49 pm
What is latest, and what is "expiration is latest step date"? You don't have a step date in your data.
It's a little unclear what you are asking for here, and...
May 8, 2019 at 2:44 pm
Viewing 15 posts - 3,931 through 3,945 (of 39,768 total)