Viewing 15 posts - 1,156 through 1,170 (of 14,953 total)
You can't cluster SSIS, but you can have it running separately on each node, which accomplishes much the same thing. All it really means is that, if the SSIS...
July 26, 2012 at 12:05 pm
Start by modeling the data the business needs. Design a database that supports that model. Then work out how to get any useful information from the old database...
July 26, 2012 at 11:52 am
Beyond Matt's general data about heaps, these two particular tables have other differences that are important. One has a GUID as the leading edge of the PK, one has...
July 26, 2012 at 11:50 am
Steve Jones - SSC Editor (7/26/2012)
derek.colley (7/26/2012)
My advice would be to hire a company to find a DBA for you.
Sorry Abel but this is god-awful advice. I recently got...
July 26, 2012 at 11:41 am
Yes, as you've written it, it's a pretty standard and usual sort of proc. That's the way it's meant to be used.
July 26, 2012 at 11:28 am
I'd have to have some sample data, and table structures to insert it into, to real nail this one down.
My first suspicion would be that the monthly depreciation has a...
July 26, 2012 at 11:24 am
Is LPAR unique in the IHS table? If so, select from there, and use Inline Select statements in your Select clause, instead of joins. That usually fixes this...
July 26, 2012 at 10:40 am
The proper way to write an Insert Select statement is to list the target and source columns explicitly. Leave out any columns you don't want explicit values for (like...
July 26, 2012 at 10:31 am
I'm not sure what you're asking here. Merge, as you've used it, is good for "upsert" operations (update/insert). That's largely what it was created for. As such,...
July 26, 2012 at 9:21 am
Have you set the language property of the report to one that works that way?
July 26, 2012 at 6:37 am
marcia.j.wilson (7/25/2012)
GSquared (7/25/2012)I used to work at a company where your review had to include scores from 1-10 on various aspects of your job duties. Wasn't ranked against others...
July 26, 2012 at 6:22 am
Eric M Russell (7/25/2012)
Where convert(varchar, a.submitted, 120) = convert(varchar, '2011-07-07 14:39:39', 120)
Style 120 actually doesn't strip out the time portion of the datetime, so what they're doing makes no sense....
July 25, 2012 at 12:17 pm
Check the job posting. If it's like the usual ones, it asks for a full set of skills that have nothing to do with being a DBA, as well...
July 25, 2012 at 11:53 am
The reason they're doing what they're doing is that they don't know how to properly deal with times in DateTime columns. Format 120 strips the time out. They...
July 25, 2012 at 11:45 am
Modify your error proc (usp_GetErrorInfo) so that it inserts into a table, then you're good to go.
July 25, 2012 at 11:32 am
Viewing 15 posts - 1,156 through 1,170 (of 14,953 total)