Viewing 11 posts - 1 through 11 (of 11 total)
A big part of the DBA's skill set will be dictated by the job description itself- i.e. the workplace and installation context. For example, I've seen department installations managed...
June 22, 2008 at 2:43 pm
We may be at odds. I'm imagining a fact table "items" with foreign keys to customers.
Using count to rollup a column will give you a tally of records...
May 18, 2008 at 9:06 pm
Just add the measure as a count of the items. When you slice and dice by customer (in a front end tool such as ssms or proclarity, or an mdx...
May 18, 2008 at 2:42 pm
In analysis services you mean?
May 13, 2008 at 9:15 pm
If its just a matter of running a batch process regularly an executable or batch file started from scheduled tasks would work just fine.
May 13, 2008 at 2:31 pm
You're right- I'd use stored procs for data access and wrap them in a data access layer that returns scalar types or framework objects. I'd then wrap these in...
May 12, 2008 at 11:13 pm
If you are programming using a multithreaded environment like java or .net you can just run the long running query from a new thread. If you're in a single...
May 12, 2008 at 11:08 pm
There's nothing wrong with employing base views for reporting purposes either. This is a standard practice and will make your life easier for the other 49 reports. Probably you'll...
May 12, 2008 at 11:06 pm
To optimise this query, rewrite the cursor as a join, perhaps utilizing a second temp table, and ensure an index is employed for the join criteria - for example by...
May 12, 2008 at 10:57 pm
You need the additional join here.
Also note that its better to wrap the sql code in a stored procedure for security and performance reasons.
April 30, 2008 at 3:22 pm
Right click the database and choose "Tasks - Export Data". Choose "Next" then "Next" again. You will be in the "Destination" step. For a data destination, choose...
February 25, 2008 at 12:52 pm
Viewing 11 posts - 1 through 11 (of 11 total)