Viewing 15 posts - 1,291 through 1,305 (of 5,685 total)
This is inverted from the model I'm used to for a scenario like this. Usually either the worker, or a local monitoring software on the worker, will 'call in'...
August 16, 2012 at 12:50 pm
Sadly, yes, I've seen similar items. I've had it explained to me twice by people who get it and I still end up with a glazed look by the...
August 16, 2012 at 12:45 pm
Since you're doing a full database replication instead of selective, I'd actually recommend using mirror/snapshot. It's basically easy-mode transactional replication. Check it out; it's definately future proof as...
August 16, 2012 at 12:37 pm
david.ostrander (8/16/2012)
August 16, 2012 at 12:29 pm
smallmoney (8/14/2012)
August 14, 2012 at 4:23 pm
I personally usually just do them in a single build, like so:
SELECT
s.[databaseid]
,s.[databasename]
,s.[filename]
,s.[filetype]
FROM
#stuff AS s
JOIN
(SELECT DatabaseID FROM #stuff GROUP BY DatabaseID HAVING COUNT(*) > 1) AS drv
ONs.DatabaseID = drv.DatabaseID
That said, it'll...
August 14, 2012 at 4:10 pm
Lynn Pettis (8/14/2012)
I really, really, REALLY want to ask some of these people if they even know how to think.
Right now Lynn I'm just very glad I didn't say a...
August 14, 2012 at 4:04 pm
patrickmcginnis59 (8/14/2012)
Evil Kraig F (8/14/2012)
...stuff...
The post I was replying to asked if there was anything to back up my theory that RBAR was slow because of the T-SQL overhead. I...
August 14, 2012 at 3:30 pm
I was going to hit you with a lmgtfy but it actually would have taken longer. You have the keywords, google is your friend.
August 14, 2012 at 2:36 pm
patrickmcginnis59 (8/14/2012)
<snip> A series of non-data retrieval encodings.
I believe there is possible confusion on definitions here. Patrick, what do you define as 'set-based programming'? For reference, the...
August 14, 2012 at 2:29 pm
There should be more errors when this runs. This is not a primary indication error but a result of the error occurrance. Somewhere above (or perhaps below, but...
August 14, 2012 at 2:08 pm
Jan Van der Eecken (8/14/2012)
venoym (8/14/2012)
...and we're now dealing with ICD9 to ICD10 conversion, ...
You are only now converting to ICD10? Those have been mandatory in South Africa (where I...
August 14, 2012 at 2:02 pm
Jeff Moden (8/13/2012)
Evil Kraig F (8/10/2012)
Not that I don't admire Jeff's abilities, but he doesn't speak the language sometimes... or better stated, he speaks the language of database.
I respectfully submit...
August 13, 2012 at 9:04 pm
Not that I don't admire Jeff's abilities, but he doesn't speak the language sometimes... or better stated, he speaks the language of database.
From the perpsective of every coder, here's the...
August 10, 2012 at 4:30 am
SQLRNNR (8/9/2012)
Evil Kraig F (8/9/2012)
Sean Lange (8/9/2012)
August 9, 2012 at 3:05 pm
Viewing 15 posts - 1,291 through 1,305 (of 5,685 total)