Viewing 8 posts - 31 through 38 (of 38 total)
It most probably has to do with security.
When run under EM, you are using the authentication context of the SQL SERVER registration under EM.
When asked to run under SQL AGENT,...
February 22, 2005 at 8:41 am
Use sp_executesql instead on EXEC. Then you can use output variables or a table variable to store the resultset.
HABIB.
February 18, 2005 at 1:46 am
Try adding "PROVIDER=MSDASQL" to the connection string.
By the way. To get your connection settings right, add a connection to the dts packages and open the disconnected edit screen. Scroll...
February 18, 2005 at 1:26 am
Yes, you have third party tools to check dependencies. Some ETL tools have impact analysis capabilities if you use them from end to end.
But the best course of action...
February 17, 2005 at 2:48 am
Create a calculated member in the Sales cube of the Foodmart 2000 DB and use the following construct :
IIF
([Time].CurrentMember.Level.Name="Month", ([Measures].[Unit Sales],...
February 17, 2005 at 2:33 am
I can think of 2 ways to do it :
1. Use a stored procedure and a "permanent" temp table, that is a table you create in advance and truncate before the transaform task using a...
February 17, 2005 at 2:10 am
What my customer needs is a full backup after transmission of the transaction log backup.
I know now (thanks to Mr. Yalçin Gülas !) that a full backup does not...
August 14, 2004 at 10:23 am
Here is another method :
Select top 1 OrderID, Customer From Orders Where OrderID<4 Order by OrderID Desc
UNION ALL
Select top 1 OrderID, Customer From Orders Where OrderID>4 Order by OrderID Asc
August 9, 2004 at 2:20 am
Viewing 8 posts - 31 through 38 (of 38 total)