Viewing 15 posts - 46 through 60 (of 188 total)
If you are using a transformation to fill your spreadsheet:
Create an Excel template that you always use for the destination. (Just the field names on the worksheet.)
Upstream of the transform,...
May 2, 2007 at 7:08 pm
Go back to your dts package in design view. Right click in the design window. Select Package Properties, the logging tab, and then have the package execution log to your...
July 5, 2006 at 2:44 pm
Here's a thought, try truncing the date in it's native language and make sure the year part is formatted as YYYY to avoid the 2000 thing (year 30 is the default - but...
July 5, 2006 at 1:54 pm
This is what you need to know right here!
http://www.sqlservercentral.com/columnists/jsack/capturingtheerrordescriptioninastoredprocedure.asp
June 19, 2006 at 12:28 pm
BTW, a good rule of thumb is to store your data scrubbed and display your data formatted. In other words, don't format your phone numbers when you import them into...
June 9, 2006 at 6:13 pm
I wrote that function in t-sql for myself today, but you can do the same thing in your activeX Jess.
When you are on the transformations tab
remove your automapping
highlight areacode and...
June 9, 2006 at 3:31 pm
Here's a function I just wrote to format phone numbers:
CREATE FUNCTION dbo.FormatPhone(@inphone varchar(20))
RETURNS varchar(20)
AS
BEGIN
declare @outphone varchar(20)
declare @ext varchar(6)
declare @pos smallint
--remove any non-numeric characters
set @pos = patindex('%[^0-9]%',@inphone)
while @pos > 0
begin...
June 9, 2006 at 2:17 pm
And don't forget about this handy little baby:
This example uses PARSENAME to return information about the authors table in the pubs database.
USE pubs
SELECT PARSENAME('pubs..authors', 1) AS 'Object Name'
SELECT PARSENAME('pubs..authors', 2)...
May 15, 2006 at 12:15 pm
Forget managing this in DTS. This is what the job scheduler already excels at! Viewing the job history of the job makes it really easy to undertand your progess/retry status...
December 30, 2005 at 1:04 pm
Not necessarily a fix for this situation, but a good reminder just the same:
After altering a stored procedure, execute with recompile.
November 21, 2005 at 12:23 pm
Thanks Eric! I have shared with my team - crediting you of course!
August 16, 2005 at 5:17 pm
Hopefully at least this coverage will prompt more people to buy and read Ken's book. I consider it to be the most valuable book on my desk at work. It...
July 27, 2005 at 11:19 am
BTW, I was wondering if this might be helpful - can you save your DTS package as a BAS module in SQL 7? If so, that would help you with...
May 11, 2005 at 11:29 am
Create an ExecSQL task that selects the date you want from your date table. The date you capture should become an output parameter. Assign the output parameter to a global...
May 11, 2005 at 11:15 am
May 9, 2005 at 10:26 am
Viewing 15 posts - 46 through 60 (of 188 total)