Viewing 15 posts - 5,641 through 5,655 (of 7,168 total)
Another tricky (not intuitive) thing with Booleans in SSIS when coming from T-SQL is that you do not need to do any equality test. Consider something that looks like this:
@IsHoliday...
July 6, 2011 at 10:24 am
See if something like this works for you:
CREATE TABLE #tmp (errorcount INT) ;
DECLARE @sql NVARCHAR(MAX) ;
SET @sql = 'select 1 as errorcount;'
INSERT INTO #tmp
...
July 6, 2011 at 10:14 am
ps_vbdev (7/6/2011)
ye i realized that but i cant access the instance to enable it to allow remote connections, if that is what it is.
You don't need to access the instance...
July 6, 2011 at 10:02 am
One other angle to consider that helped me...a SQL Server BIT is an exact numeric data type, however once in SSIS it maps into a .NET Boolean data type which...
July 6, 2011 at 9:54 am
The instance hosting the SharePoint databases may not be configured to allow remote connections.
The section titled Enable remote connections for SQL Server 2005 Express or SQL Server 2005 Developer Edition...
July 6, 2011 at 9:49 am
You're receiving the error because you are not in the sysadmin Server Role. Someone may have granted you exec permissions on xp_CmdShell however they did not setup the xp_CmdShell proxy...
July 6, 2011 at 9:35 am
Anything you can do in declared T-SQL you can do with Dynamic T-SQL...so is what you're trying to do possible, yes. As for achieving it, it will be a...
July 6, 2011 at 9:30 am
Check constraints? How would linking to MySQL using ODBC provide any advantage over MySQL dump?
July 6, 2011 at 9:24 am
Thanks for posting back, happy you got it sorted 🙂
July 6, 2011 at 9:21 am
DBANewbie (7/6/2011)
FYI wrapping the stored procedure call in a try catch did not solve the problem; the error is still thrown and the job stops executing.
I just tried this in...
July 6, 2011 at 9:19 am
amy.walsh (7/6/2011)
I'm so close, and yet so far... I am looking to report on validation rules -- that is, record how many records break the validation rules...
July 6, 2011 at 9:02 am
Bruce W Cassidy (7/6/2011)
Now, if you really wanted something to think about... try thinking about being able to...
July 6, 2011 at 7:44 am
In short, yes, but there's more. Service packs are more than just your average patch. Some contain major new features as well as major patches for existing features. It will...
July 6, 2011 at 7:24 am
I have thanked you many times before in these forums and it goes without saying that there were no doubts as to your deservedness but I must say it too,...
July 6, 2011 at 7:09 am
Here is David's code with a couple syntax errors removed and then reformatted:
WITH cte ( Invoice_id, IssueDate, Account, ApproveDate, RowId )
...
July 6, 2011 at 6:56 am
Viewing 15 posts - 5,641 through 5,655 (of 7,168 total)