Viewing 15 posts - 1 through 15 (of 34 total)
This really helped!!
And as said, I hope I remember this when this problem crops up again.
Regards,
Namrata
July 29, 2014 at 6:11 am
I had thought that. However, I fail to understand that with so many jobs in there, why would it delete the history of only 1 instance of this 1 job.
July 23, 2013 at 6:14 am
This is 2008 R2.
I have used delay_validation before but FMTONLY is new. Will try and get back.
Thanks you so much for all your help.
March 16, 2013 at 1:52 am
I agree with the work around. But the question still remains and that is, whether the SQL task is taking so much time only for the connection. Or is it...
March 13, 2013 at 8:13 am
Thanks a lot. This helps. 🙂
February 8, 2013 at 4:32 am
Requirement:
There are 100 tables each with different number and type of columns and obviously different rows.
And then there is a condition to check if some 5 columns exists,...
February 23, 2011 at 11:12 pm
The error was due to something else. However, when you view a variable the fact remains that it replicates the "\" , although that does not come in the way...
January 4, 2011 at 1:23 am
Got it!!!
It was looking for package B in the SQL server (One dropdown option for a Package task) as its location.
(and not the file system)
So Putting them in the dts/packages...
December 31, 2010 at 2:50 am
Yes, I found out from Microsoft too, that this cant be done using Data Flow task. There is a Data Flow task plus by Codec I think, which does the...
December 1, 2010 at 10:40 pm
Yes.
0x00F41E6A8ECB7F479AF5A6826828 is the encrypted value for the password
now I want to decrypt it (that is get it back in the varchar format)
June 2, 2010 at 7:52 am
It gives me the decrypted value
UserNameTest Testing123 0x00F41E6A8ECB7F479AF5A6826828
However, if I do the same after the 2nd SP, I get
UserNameTest ...
June 2, 2010 at 6:25 am
after the inserts using the 1st SP, I just take the ID and try to decrypt using
SELECT A.Value,
CONVERT(varchar, DecryptByKey(A.Password)),
A.Password
FROM ServicesDatabase.dbo.IdentificationService A WITH (NOLOCK)
where IdentificationID = @IdentificationID
It gives me the...
June 2, 2010 at 6:08 am
Yes, they are the same. There is no syntax problem in the code. Everything else that the SP is supposed to return is coming out fine, except for the @Password(I...
June 2, 2010 at 4:56 am
actual SP
ALTER PROCEDURE InsIdentification
(
@TypeIDint
, @Valuevarchar(255)
, @Passwordvarchar(50)
, @IdentificationIDint OUTPUT
)
AS
SET NOCOUNT ON
SET TRANSACTION ISOLATION LEVEL READ COMMITTED
SET XACT_ABORT ON;
BEGIN TRY
OPEN SYMMETRIC KEY SSN_Key_001
DECRYPTION BY CERTIFICATE IdentificationCertificate;
BEGIN...
June 2, 2010 at 3:30 am
Viewing 15 posts - 1 through 15 (of 34 total)