Viewing 15 posts - 16 through 30 (of 117 total)
Intellisense is fine, but there is the tried and true ALT+F1. In SSMS simply select the object name in the query window and press ALT+F1 which executes the sp_help...
February 11, 2016 at 9:34 am
You may want to consider performance differences between using an IN and an INNER JOIN
select columns
from dbo.sometable
where ItemCode in (select Item from #tempTable)
-- AND --
select columns
from dbo.sometable st
inner
join ...
February 11, 2016 at 7:38 am
There is an updated version of this pending. I changed the use of XML as the extract mechanism for data which allowed me to remove the dependency on a...
February 8, 2016 at 8:59 am
I hear the argument "we don't want to be locked in" from the app dev folks - the same ones that aren't afraid to be locked in to their programming...
May 31, 2012 at 6:25 am
I'd be interested in throwing in on an open source effort. I agree that it can do much more than only SSIS. I look forward to sharing my...
January 28, 2012 at 8:53 am
Well done! I had created a process framework at my last company that was similar in it's approach but more generic in nature. I used a queueing mechanism...
January 26, 2012 at 7:57 am
I enjoyed the article and think it's a good overall non-biases intro. There are a couple of points I feel are worth mentioning. The in-line TVF can be...
December 26, 2011 at 8:56 am
In all a well written and reasoned article and I agree wit the practices outlined as far as production goes. However, it's a regular practice at our shop to...
December 16, 2011 at 6:30 am
I like this idea! Having a body of knowledge that can be applied to these situations will be a great resource.
IMHO: Steer away from the term "best practice". ...
September 24, 2011 at 9:51 am
Ninja's_RGR'us (7/25/2011)
What were the time differences?
They generally range from 1/3 - 1/2 longer for the context switching. I have one person (a mother of twins) that can context switch...
July 25, 2011 at 7:55 am
A few years back I learned of a test that demonstrates the evils of multitasking. It's a way of training people not to say "no" but "not yet". ...
July 25, 2011 at 6:46 am
I have a hybrid approach. First, I look for an MS only solution. There's a tremendous number resources available thru SQL Server Central, other web sites and blogs...
April 30, 2011 at 3:27 pm
I don't think you can overlook the usefulness of bcp and/or bulk insert. They're frequently overlooked in favor of SSIS. Many times SSIS is overkill for loading/producing simple...
December 17, 2010 at 6:54 am
It looks like it's an issue with one of the varchar data columns.
You might want to look at the table variable -- maybe bust out the varchar 5/6 to sysname....
November 3, 2010 at 5:45 pm
Having the ability to "variableize" a few commands like BULK INSERT and OPENQUERY would be nice.
...something like:
BULK INSERT dbo.MyTable
from @FileSpec
with ...
...and for open query...
create proc myproc @key int
as
declare...
September 23, 2010 at 8:39 pm
Viewing 15 posts - 16 through 30 (of 117 total)