Viewing 15 posts - 811 through 825 (of 1,192 total)
Yeah, heavy reliance on the "Statements such as..." in the current documentation.
The SQL Server 2000 documentation was a bit clearer, saying that @@ROWCOUNT is set to 0 by any statement...
October 9, 2015 at 8:27 am
Perhaps something like this?
CREATE TABLE #SomeClarionValues (DATEOFACCESS int, TIMEOFACCESS int)
INSERT INTO #SomeClarionValues
VALUES (78439,1),(78439,69087),(78439,40001), (75247,7511378),(75247,8630000)
SELECT
ClarionConvertedToDatetime=DATEADD(MILLISECOND,(TIMEOFACCESS-1)*10,DATEADD(DAY,DATEOFACCESS,'1800-12-28T00:00:00.000'))
FROM #SomeClarionValues
DROP TABLE #SomeClarionValues
Cheers!
EDIT: I had mistyped and put a couple identical rows in the...
October 8, 2015 at 9:01 am
The date of the last successful CHECKDB is already there. It's the date in the Value column.
Cheers!
October 5, 2015 at 1:12 pm
There are a few issues with your setup. First, you allow x to be only 1 or 2. According to the problem, x cannot equal 1 (must be >=2), and...
October 5, 2015 at 9:25 am
Lynn Pettis (10/1/2015)
Never tried this, but can you load two different trace files into a single instance of Profiler to correlate actions captured by different traces?
You can open multiple files...
October 1, 2015 at 11:59 am
The trancount for those sessions is 2, so it could be as mundane as locks hanging around from other statements in other transactions. In that case, it would appear to...
October 1, 2015 at 11:39 am
Just to be clear I understand the requirements, you just want all possible combinations of the sizes and colors in the comma delimited lists, along with a flag that...
September 30, 2015 at 12:34 pm
Ah, my bad. That was just the fault of my removing the the wrong column from the SELECT list.
I had originally included both columns in the SELECT, and just...
September 29, 2015 at 2:52 pm
For an alternative syntax, you can also just join on the LIKE (in Bill's code, added while I was typing this you wouldn't need to add the wildcards, since they're...
September 29, 2015 at 2:03 pm
To be fair, that solution was the very first response to your question 🙂
September 29, 2015 at 1:41 pm
Yes, you can mirror to a newer version of SQL Server. The caveat there is that once you fail over to the new server, you can't fail the mirror back...
September 29, 2015 at 9:14 am
Well, I poked around this problem for a bit, and came up with the following. It has all sorts of warts (I'm not generating my numbers the most efficient way...
September 28, 2015 at 2:44 pm
Michael L John (9/28/2015)
Jacob Wilkins (9/28/2015)
To really minimize downtime, I like to set up mirrors from the old environment to the new. Then...
September 28, 2015 at 9:48 am
The process that Kristen describes will work nicely.
To really minimize downtime, I like to set up mirrors from the old environment to the new. Then migration is just failing the...
September 28, 2015 at 9:13 am
Kristen-173977 (9/16/2015)
Lynn Pettis (9/16/2015)
... but somewhere on my travels I saw this which satisfies my perception that an arithmetic...
September 25, 2015 at 2:47 pm
Viewing 15 posts - 811 through 825 (of 1,192 total)