Viewing 15 posts - 361 through 375 (of 542 total)
smknox,
I use a lot of words that show up as keyword, but I'm careful to use "[" and "]" around each word. Some words I use that come up as...
March 15, 2004 at 8:49 pm
Rick,
The easiest way to set this up would be a view that joins the two tables. Then query the view within OLAP instead of the table.
cl
March 15, 2004 at 3:05 pm
Quote:
Also looming is the announced end of mainstream support of SQL Server 2000, which will end on December 31st 2005. If SQL Server 2005 doesn’t release until the second quarter...
March 15, 2004 at 2:58 pm
Tom,
NO problem there are all; I do it all the time. The trick is to use the "Dynamic Properties Task".
1st, use VB or SQL to concatenate the file string,...
March 8, 2004 at 10:01 pm
"worked a treat" ... ?? Is that Australian? I love slang...
February 26, 2004 at 12:29 pm
You can use whatever scheduling mechanism you want, really, all it has to do is make a database connection and execute a proc. Personally, I usually use SQL jobs and...
February 24, 2004 at 12:14 pm
Great article. Writing a follow up - about how to "stage" the data and then scheduling external processing- would be awesome. I've implemented it here but would love to here...
February 23, 2004 at 7:30 pm
Yeah, they covered this exact issue at PASS. Using parameters instead of building a string was significantly faster, specifically due to execution plan re-use.
Another bit of advice: When doing a...
February 20, 2004 at 7:25 pm
Heres a loop that will grab everything between the "*" rows, no matter how many rows of data there are (the query above assumes 3 + delimiter).
declare @YOurOrigTable table (ID...
February 20, 2004 at 7:20 pm
Here's another example
/*-----------------------------------------------------------------------------------------------
This script tracks the rows in a database over time.
The base table used is #TempRowCount, which has new records added everytime the script is run.
A dynamic query based...
February 20, 2004 at 6:56 pm
Excellent Idea, Tony. I've starting using parameterless procs for a number of reason's, the main being performance. In fact, I'm working on a generic Parameter table to deal with this. ...
February 20, 2004 at 6:54 pm
Steve,
How 'bout the problems when trying to edit a post?
No offense, but the new site is really buggy, although the most annoying issue is no "Code" formatting option (probably "as...
February 20, 2004 at 6:49 pm
I don't think that's going to work, as the derived table will still only return 10 rows. You can't use correlated subqueries either, as they must return only one value.
In...
February 20, 2004 at 6:47 pm
Gary's statement removes duplicates, but not triplicates or higher. It was unclear from your statement which behavior you wanted, but this will remove all but the record with the lowest...
February 20, 2004 at 6:37 pm
OK, a , ) is not a wink, it's syntax! What the heck happened to the Code option on this website? I love it when new tech doesn't do everything...
February 20, 2004 at 6:25 pm
Viewing 15 posts - 361 through 375 (of 542 total)