Viewing 15 posts - 766 through 780 (of 1,473 total)
Seems pretty straightforward. Gathers data from the other server and stores it on yours. There's nothing glaring about this that is inefficient or wrong. There are some...
January 27, 2009 at 12:27 pm
Jeff mentioned on another thread yesterday that he's been really busy. There's a few he hasn't had time to reply to yet. Give it time :P.
January 27, 2009 at 8:43 am
Read this forum. Look at the problems and the solutions. When you see something you don't understand, Google more information on it, or look and see if there's...
January 26, 2009 at 11:12 pm
And that you're using 2005 or above. (Different error message if you're on 2K, but figured it was worth mentioning for anyone else who might read this and try to...
January 26, 2009 at 7:34 pm
Unfortunately, not right away, no. I know that normally doing any kind of data access in an inline function is a "bad idea", in the same respect that playing...
January 26, 2009 at 1:18 pm
How about this?
[font="Courier New"]
CREATE FUNCTION dbo.fnGICSPFParseGICCatalog_Test(
@string VARCHAR(8000),
@TrimAll BIT)
RETURNS VARCHAR(8000)
AS
BEGIN
DECLARE @b-2 VARCHAR(8000)
SET @b-2 = '' -- Initialize @b-2
IF @TrimAll = 1
SELECT @b-2 = @b-2 + SUBSTRING(@String,N,1)
FROM Tally
WHERE N...
January 26, 2009 at 12:54 pm
I actually run into this issue a lot with Crystal. If you run the report with parameters that return no data, the whole thing blows up. As Gus...
January 26, 2009 at 12:35 pm
This is basically gap finding, and it seems like you should be able to use a variation of Jeff's identity gap finding technique for this. I've been trying to...
January 25, 2009 at 7:12 pm
I get it now. Great explanation. So you've also found that it's quicker to dump repeatedly into the slightly bigger varbinary's than just dumping into one big one...
January 25, 2009 at 3:27 pm
RBarryYoung (1/24/2009)
January 25, 2009 at 9:47 am
The article in my signature describes how to set this up, but let's say you have tableA with one column Aval.
Your table / sample data script would look like this:
DECLARE...
January 24, 2009 at 10:54 am
Jeff Moden (1/23/2009)
Man, I blew another pork chop out my nose when I saw the trigger and the cursor.
WAIT WAIT WAIT.
Blew a pork chop out of your nose?
So.......
January 24, 2009 at 9:55 am
Phil,
Your providing of sample data is much appreciated, as are the expected results from your requests. However, if you find that you're not getting a lot of...
January 24, 2009 at 9:49 am
Jeff Moden (1/24/2009)
Garadin (1/23/2009)
He wrote an article on it actually. See the Running Totals link in my signature.
Heh... I'm getting closer... normally, you beat me to this on providing...
January 24, 2009 at 9:43 am
Loops, cursors, complex correlated subqueries, inline functions with data access, functions in the where clause (I believe, don't see this one much)... all are examples of RBAR. In other...
January 24, 2009 at 9:35 am
Viewing 15 posts - 766 through 780 (of 1,473 total)