Viewing 15 posts - 1 through 15 (of 38 total)
@mark-3, your professional response is commendable. Thanks and good luck on your book!
September 5, 2012 at 7:27 am
Gartner's research will give you some idea on BI solutions and their place in the industry.
http://www.gartner.com/technology/reprints.do?id=1-196WFCB&ct=120207&st=sb
August 9, 2012 at 1:14 pm
I usually struggle w/ improving queries involving parallelism. Some dbas I've worked with recommended MAXDOP hint.
Even with those recommendations, I notice my queries some time don't use all available CPUs....
August 9, 2012 at 12:56 pm
Try some of these options.
Option A:
- Use bcp to import data (after dropping all keys/constraints etc)
- Recreate all the keys/constrains after the data load
- Run the validation routine in SSIS...
August 9, 2012 at 10:37 am
Based on your description update-join seems close to what you want to accomplish. Lookup update-join. Ben Nadel has few good articles on it.
August 9, 2012 at 10:28 am
1. Create a table which will contain per record set: simple sql query with aliases, destination path including file name where flat file needs to be placed.
2.a. Create SSIS package...
August 9, 2012 at 10:22 am
If I have the option then I'd stick with tools that I'm familiar with. SSRS does a decent job with reports. I have been impressed with it's continuous growth.
Here are...
August 9, 2012 at 9:26 am
I have answer to my own question. The other package is also called via command line. Please consider this issue resolved.
December 7, 2011 at 11:42 am
I saw the same error if you had syntax error in the script component. I'll treat this like a generic error applicable to many unrelated issues unless some one clarifies...
August 8, 2011 at 8:54 am
The article covers the diagram feature well. I got an email with the subject line "Database Modeling and Diagrams with SQL Server 2008". It led me to think this article...
May 19, 2009 at 8:46 am
try this
SELECT
SUBSTRING(st.text, (qs.statement_start_offset/2)+1,
((CASE qs.statement_end_offset
WHEN -1 THEN...
April 17, 2009 at 3:20 pm
Grant,
Good point.
I tried your query suggestion.
What's a good way to tie the cached query with the user? I can see the time it was executed and other statistics information related...
April 17, 2009 at 11:26 am
In his situation what is a good way to address this? I'm inclined to suggest that he restores from a backup containing the missing data. Once that step is done,...
April 17, 2009 at 11:18 am
add the error, your temp table script, insert script, and anything else that gives everyone a clear picture
April 16, 2009 at 2:21 pm
Viewing 15 posts - 1 through 15 (of 38 total)