Viewing 15 posts - 1 through 15 (of 74 total)
If I have understood you rightly, then when you call the SSIS Package in a job step. You have a tab there by the name "Execution Options" there you can...
June 19, 2013 at 5:02 am
You can try this approach.
ALTER TRIGGER DDLTrigger_Sample
ON ALL SERVER
FOR CREATE_DATABASE
AS
BEGIN
if (select count(*) from sys.databases ) > 9
rollback;
END
June 19, 2013 at 4:40 am
Hi,
Check the below code.
DECLARE @CompanyAccountNoVARCHAR(10)
DECLARE @cmd varchar(1000)
DECLARE @ssispath varchar(1000)
set @ssispath = '"C:\program files\Microsoft SQL Server\100\DTS\Packages\SyncOneCompany.dtsx"'
SET @CompanyAccountNo = '2575052'
--select @cmd = 'dtexec /F "' + @ssispath + '"'
select @cmd = '"C:\program...
January 26, 2011 at 8:54 am
hmmm, I dont think "hmmm" is right response, but I dont think thats possible to insert " " space in int column, if we have to use a " "...
January 26, 2011 at 6:47 am
The below code is self explanatory and that should help, also look out to see for any other responses, there should be easier ways of doing this. I have choosen...
January 26, 2011 at 6:26 am
crazekalyan (1/26/2011)
DimABCD
SET
ConsumerTypeID = D.Consumertype_ID,
UserID = D.USER_ID
From DimABCD rc
JOIN [bidw].[dbo].[TempConsumer] D ON rc.UID = D.V_ID
here the column UserID(varchar) has empty's in Tempconsumer table. and its an int column in DimABCD...
January 26, 2011 at 5:55 am
SELECT RowLength = DATALENGTH(TransRecord), TransRecord
FROM dbo.Staging
If all the rows have Rowlength = 100 then Insert into SQL table else send mail .
How do I do this in ssis.
I am using...
January 26, 2011 at 5:32 am
DECLARE @Participants XML
SET @Participants = '<ArrayOfEmployees xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Employees EmpID="1" EmpName="abcd" />
<Employees EmpID="2" EmpName="efgh" />
</ArrayOfEmployees >'
SELECT Participants.Node.value('@EmpID', 'INT') AS EmployeeID,
...
January 26, 2011 at 2:16 am
I have reinstalled /patched etc without any effect. Any help would be appreciated.
Did you try this, first install the sql 2000 related stuff and then on top 2005, generally it...
January 25, 2011 at 7:21 am
Good one, the whole BI system is built and you are documenting it now!!! ... Just kiddin
no specific template apart from what is already mentioned above, but make sure...
January 25, 2011 at 7:08 am
There is a space in the path of the directory which is the cause for the issue. Get the directory path's in double quotes and run, that would resolve the...
January 25, 2011 at 6:41 am
still the same issue, but one thing that we need to remember is that when we add files into the Misc folder, when we are doing a deployment they go...
October 27, 2010 at 3:02 am
Couple of things.
Get rid of the primary org temprary table if you can.
Remove the nvarchar max if you do not need it
For CTE, to handle millions of records is...
May 8, 2010 at 1:54 pm
Check the link, Using Temporary Tables with SSIS, its simple, its just a small trick,
create a global temp table with the required strucutre first.
Set RetainSameConnection=TRUE on the connection manage.
set...
December 3, 2009 at 11:25 am
Is there any way to get the work done without needing the permission off dbo on master database. or without having a sysadmin role....
thanks.
September 29, 2009 at 4:05 am
Viewing 15 posts - 1 through 15 (of 74 total)