Viewing 15 posts - 136 through 150 (of 172 total)
Sorry I'm still not seeing the issue. Why can't you catch the value in a variable, or write it to a temporay table (local or global), or write the...
May 21, 2003 at 1:50 pm
Sounds like 'import data' from the Enterpise Manager' interface is your best bet (fast and easy). This is along the same lines as 'cstrong' and it does cover text...
May 21, 2003 at 11:41 am
In addition to copy and paste you can change the 'Execute Mode' to save the 'Results to File'.
May 21, 2003 at 11:25 am
Sorry for not responding directly to the question before, but yes you can run multiple instances of a DTS package.
Quick Test:
use the DTSrun utility to generate the...
May 5, 2003 at 2:52 pm
If I remember correctly, DTS is not used dynamically due to being slower than the alternative (SQL stored procedure, XML call). Keep in mind, too, that if you really...
May 2, 2003 at 5:34 pm
The answer to both issues can be found at: http://www.microsoft.com/traincert/mcpexams/faq/procedures.asp
May 2, 2003 at 5:22 pm
To add to rajeshpatavardhan, first check to see if @m_err <> 0, then start custom error checking.
April 24, 2003 at 9:22 am
Hello.
Yes it does work. I'm running all of my tests form the test server. I've been able to access other computers from a test job...
April 1, 2003 at 2:42 pm
Antares' mention of FETCH seems worth greater comment.
Barring large overhead due to the cursor, this seems the cleanest.
Question though, which would be less of a burden, a temporary table or...
February 25, 2003 at 2:56 pm
One way is to use two TOP statements:
USE Northwind
SELECT TOP 1 tablename.LastName
FROM
(Select TOP 20 LastName
from Employees
order by HireDate)
AS tablename
February 3, 2003 at 1:22 pm
Thanks for the additional info, this is a neat idea.
Everett
January 31, 2003 at 4:13 pm
Guarddata,
Would it be possible for you to expand on your system a bit?
Of most interest would be why different tables are used, although any additional information would...
January 30, 2003 at 9:58 am
Multiple transformation tasks can be added to one connection.
December 30, 2002 at 10:04 am
This trigger should work. xblt1 and xtbl2 are you TABLE1 and TABLE2
CREATE TRIGGER DetermineGroup
ON dbo.xtbl1
FOR INSERT
AS
Declare @sName char(10), @Group char(10)
Select @sName=I.m_Name
From xtbl1 S, INSERTED I
Where S.m_Name=I.m_Name
Select @Group = Item2
from...
December 23, 2002 at 4:43 pm
This works. Although you end up with a varhcar. Note: GetDate returns
a data type of int, and if you convert this back to datetime you're going
to have...
December 23, 2002 at 4:17 pm
Viewing 15 posts - 136 through 150 (of 172 total)