Viewing 15 posts - 781 through 795 (of 6,486 total)
300mb of data should load in no time flat, but you seem to be going at it the hard way.
If the input file is to simply be inserted into a...
October 29, 2013 at 10:57 pm
Jeff Moden (10/8/2013)
Matt Miller (#4) (10/8/2013)
October 8, 2013 at 11:24 pm
Jeff Moden (10/8/2013)
logitestus (10/8/2013)
October 8, 2013 at 5:51 pm
You're looking to use SQL Agent as the scheduler. Just use the following article to decide which way you want to schedule the job:
September 18, 2013 at 7:26 pm
Sean's syntax would allow you to check to see if the view returns anything. If you're looking to find out if specific columns are not null, you'd have to...
September 14, 2013 at 9:16 pm
RonKyle (8/21/2013)
August 21, 2013 at 9:25 pm
GilaMonster (6/12/2013)
Ed Wagner (6/12/2013)
Just because we can do something doesn't mean we should. The technical workaround does work, but I don't think it's a good idea.
It's not a good...
June 12, 2013 at 11:28 am
LutzM (6/11/2013)
Depending on the value of @recipientcount it might take a while to perform all those single row...
June 11, 2013 at 11:14 am
Kingston Dhasian (6/6/2013)
dwain.c (6/5/2013)
Stefan Krzywicki (6/5/2013)
June 6, 2013 at 10:22 am
Michael Valentine Jones (5/29/2013)
Are there Non-Functional DBAs?
Is Business analysis speak, a non-functional DBA would mostly be concerned with performance and security (i.e. the "non-functional requirements"). Of course I...
May 31, 2013 at 2:54 pm
One more option might be to use CLR integration, to get at the JAR from one of the integration libraries (such as IKVM). This will make the parameter passing...
May 20, 2013 at 3:15 pm
While SQL Server could no doubt hold that data, it would be only a part of the solution.
The User interface part would have to be provided somehow,...
May 3, 2013 at 10:11 am
I think you're looking for something like this.
;with ct1 as
(select
name
,Duration, 2 as rank
from #temp
), ct2 as
(
select
name
, sum(Duration) as value
, 'Duration' as category,
, 1 as rank
from ct1
group...
May 1, 2013 at 10:55 am
ejoell 66477 (4/29/2013)
One issue concerning asking applicant how to resolve a situation. That's how I got my first two jobs in the field. ...
April 29, 2013 at 10:33 am
Grant Fritchey (4/26/2013)
jasona.work (4/26/2013)
As for smuggling back Canucks, do we want the hockey players...
April 26, 2013 at 7:03 pm
Viewing 15 posts - 781 through 795 (of 6,486 total)