Viewing 15 posts - 526 through 540 (of 5,685 total)
I wouldn't expect to see a difference unless the NOEXPAND hint was used, forcing the query to run without allowing the where clause access to the underlying indexes.
January 10, 2014 at 3:20 pm
homebrew01 (1/10/2014)
January 10, 2014 at 3:19 pm
The fastest way to have your reports have up to date information is not using a warehouse, period. Hook to the source DBs.
The next fastest way is transactional replication,...
January 9, 2014 at 5:34 pm
Well, since I can't run test code since I don't have a sample I can directly use, best I can offer is an idea of the code:
SELECT
vendorno,
MIN(datetime)
FROM
table
WHERE
...
January 8, 2014 at 2:03 pm
Instead of dropping the table, simply TRUNCATE it. That'll reset all your seeds and the like and you won't have to redefine the schema constantly, which fries dependencies and...
January 8, 2014 at 1:09 pm
sneumersky (1/8/2014)
Is this type of external metadata validation behavior (entire worksheet) able to be short-circuited at design time (as opposed to the runtime behavior with DelayValidation).
The confirm metadata/etc options are...
January 8, 2014 at 11:28 am
RonKyle (1/7/2014)
January 7, 2014 at 10:07 pm
Mountain Steve (1/7/2014)
January 7, 2014 at 5:36 pm
To do the row sampling, afaik it still loads the entire sheet into memory, which is why you stall after you select the source sheet. The cache is too...
January 7, 2014 at 5:35 pm
Do you have the step logging on? That truncated version (which you got from the history window) doesn't have the full story.
You need to open the step log and...
January 7, 2014 at 5:22 pm
I realize you don't want to redesign your system, but this is code-parsing at best, painful at worst.
There are a few components you need here, particularly if you want to...
January 7, 2014 at 3:34 pm
I'm confused as to the problem. Are you trying to initiate the package from one server, but have it run locally on another?
Basically... you don't. You need to...
January 7, 2014 at 3:29 pm
You can report off OLTP systems with a light touch as long as you're not looking for significant aggregations and the like. My guess is they're not, not yet.
What...
January 6, 2014 at 4:46 pm
curious_sqldba (1/6/2014)
Please let me know which tools you have been using for this. Thanks in advance.
SQL Agent. Doesn't do everything that you're looking for but we have a centralized...
January 6, 2014 at 4:38 pm
Grant Fritchey (1/6/2014)
January 6, 2014 at 4:36 pm
Viewing 15 posts - 526 through 540 (of 5,685 total)