Viewing 15 posts - 421 through 435 (of 448 total)
I don't think what you're trying to do will work. You'll probably have to split out your COUNT into a CASE statement:
CASE WHEN Year = '2005'
THEN COUNT(2005)
ELSE 0
END as...
January 9, 2006 at 10:44 am
Are you able to log in to the new server to verify that it can connect to the other server? I've had this problem before and for some odd...
January 9, 2006 at 10:31 am
There's the option of starting a job that runs the DTS package through a trigger. Alternatively, set up a trigger to populate a table and a job that runs...
January 9, 2006 at 10:24 am
Enough to say that while some things are similar (creating a global variable or reading from a file), there are enough differences that you'll really want to do a lot...
January 9, 2006 at 10:23 am
That's amusing (though the development method sounds eerily familiar in some aspects). Reminds me of a story from http://www.thedailywtf.com where a guy went in to discuss some...
January 6, 2006 at 10:11 am
As above - if you need to run the package from a stored proc, you'll either need to do something via command-line to call DTSRun or you can "schedule" a...
January 5, 2006 at 12:06 pm
While this may not be the solution you are looking for, have you considered using Reporting Services to do this? Populate a table with the data. Set up...
January 5, 2006 at 12:03 pm
Well, if you've already got the file, you can use a component from http://www.sqldts.com to do FTP uploads. Ideally the filename won't change. If it does...
January 5, 2006 at 11:57 am
May want to look into VB.Net if you're going to code with the CLR and/or SSIS. For the rest, it depends on what you need to do. There...
January 5, 2006 at 11:48 am
If I remember correctly, SQL Server is able to use the PK/FK relationships when it computes query plans to produce plans that are a little more effective.
I can see that...
January 5, 2006 at 11:34 am
I think we're using the product from http://www.zipcodedownload.com
If I'm not mistaken, we get the Zip+4 Premium or the Zip Commercial - quarterly updates. Zip+4 runs ~ $400/year...
January 5, 2006 at 11:23 am
We get quarterly updates for a couple of hundred dollars a year. Using DTS and some scripting we can automate that without too much trouble. Now if you're...
January 4, 2006 at 1:34 pm
Well, you can create a job and run sp_startjob with the job name to kick it off, but you will want to test it to see how well that works...
January 4, 2006 at 12:34 pm
On a related note - working with Excel into and out of SQL databases is a little harder in SSIS due to the Unicode/Non-Unicode translations. If you have a...
January 3, 2006 at 5:04 pm
It's cool, but it makes it really difficult for large models. Perhaps more of an effort to fit items on screen instead of one large row for items and...
September 22, 2005 at 11:54 am
Viewing 15 posts - 421 through 435 (of 448 total)