Viewing 15 posts - 5,206 through 5,220 (of 5,685 total)
Check out the DelimitedSplit8k function here:
http://www.sqlservercentral.com/Forums/Topic943562-338-1.aspx#bm944589
It'll do exactly what you need.
October 28, 2010 at 11:13 am
Brandie Tarvin (10/28/2010)
GilaMonster (10/28/2010)
Brandie Tarvin (10/28/2010)
GilaMonster (10/28/2010)
Woot. Just got a mail fom my ISP. Bandwidth cap permanently increased by 1 GB, no additional charge. Excellent!
AWESOME! Time to start watching some...
October 28, 2010 at 11:05 am
Jay-45986 (10/28/2010)
I can actually see it getting fired off!
One problem though - it was only inserting the last record of the batch. So I did some googling, and...
October 28, 2010 at 10:47 am
Are you getting this error when you schedule the package via a job and were successful from BIDS/VisStudio, or are you getting this from Visual Studio directly before a deployment...
October 28, 2010 at 10:22 am
Wayne, they're looking for last data modify.
Which might work, if all the fields are in an index. But afaik (assuming we CAN find the last modified date) even the...
October 27, 2010 at 11:12 pm
Raunak Jhawar (10/27/2010)
Also, if a directory by name 20101027 (yyyymmdd) why not use the CreationTime property?
I didn't want to use creation time because runtimes may be a bit wild. ...
October 27, 2010 at 10:41 pm
There, found what I was looking for. Thank you for that url Raunak, was the missing link for me. 🙂
Final code (functional and tested):
...
October 27, 2010 at 10:21 pm
Awesome link, thanks, exactly what I was looking for. With a little puzzlement, I've figured out how to get it to do what I want (I think).
However,...
October 27, 2010 at 10:07 pm
Steve Jones - SSC Editor (10/27/2010)
pin a post in that forum? Or others? Don't want to pin in every forum.
Shame you can't have those two links just be immediately clickable...
October 27, 2010 at 9:39 pm
So, you want fresh topics in that forum, rather then responses to the pinned topic? Just confirming from what I see. When I read the pinned item it...
October 27, 2010 at 9:32 pm
Check out this article:
http://msdn.microsoft.com/en-us/library/ms141237.aspx
In particular, this section:
In addition to the fast load options exposed in the OLE DB Destination Editor dialog box,you can configure the OLE DB destination to use...
October 27, 2010 at 7:54 pm
That looks right to me... I assume that's a simplified trigger for our benefit.
Some things can ignore triggers, like Bulk Insert has the ability to turn it off. ...
October 27, 2010 at 7:32 pm
Under 99% of circumstances, you'd run the procedure via a query window.
Example, if you made this proc:
CREATE PROC AlphaProc
(@blah INT = NULL)
AS
SELECT @blah
You would run it for different variables like...
October 27, 2010 at 6:43 pm
Steve Jones - SSC Editor (10/27/2010)
October 27, 2010 at 6:00 pm
Steve, I did a search (honestly, a brief one) about basic troubleshooting/optimizations for queries that I think would save a lot of headaches if I could just link some folks...
October 27, 2010 at 5:34 pm
Viewing 15 posts - 5,206 through 5,220 (of 5,685 total)