Viewing 15 posts - 1 through 15 (of 26 total)
Nice. Below are the stats based on changing it to the link Luis provide. Though one single call isn't noticeable to the eye, I would imagine if you are doing...
March 27, 2015 at 3:22 pm
I work in healthcare and we use close to this same code at a claim level instance. So for one claim for a single visit, it can have up to...
March 27, 2015 at 3:01 pm
This may help also
;WITH DiagWithRowNum AS
(
SELECT
VisitGuid,
DiagnosisText,
ROW_NUMBER() OVER (Partition By...
March 27, 2015 at 2:28 pm
I created an operator with multiple names and then just send it using the below? There may be some limitations (maybe) but I'm not sure what all you'll be using...
March 13, 2015 at 8:00 am
Can you provide your restore script?
February 11, 2011 at 12:20 pm
Hey John, just finished up testing it. I had to make a couple of minor changes. Based on various filenames and some having 2 or more "_", I ended up...
January 15, 2011 at 3:51 pm
Wow! Thanks John. I did not even think about isolating it that way. So far it looks like it does what is expected. Great Job! I am going to run...
January 14, 2011 at 7:58 pm
When this latency occurs, have you verified that there is nothing blocking at the Subscriber?
September 30, 2009 at 1:21 pm
When we patch we do patch the subscribers first also, then the publisher (which is where our distributor is as well). The below article mentions patches for replicated databases also....
May 8, 2009 at 8:40 pm
Remove DISTINCT. Hope this helps
SELECT company, min(ID)as ID
INTO DistinctCompanies
FROM companies
GROUP BY company
April 30, 2009 at 1:13 pm
You'll get an error msg similar to this "Cannot rename the table because it is published for replication."
April 23, 2009 at 7:59 pm
If you truncate the table, then you will lose all the data to include anything that may not be in your current production file. Is that what you really want...
April 23, 2009 at 7:40 pm
LOL. You all make my day sane if there is a such thing as "sane". http://forums.pentaho.org/showthread.php?t=68857
April 12, 2009 at 10:00 pm
I am not disregarding the foundation. If I have made that impression, I apologize. I am merely debating the comment that GOTO should never be used.
April 12, 2009 at 9:27 pm
Viewing 15 posts - 1 through 15 (of 26 total)