Viewing 15 posts - 1,096 through 1,110 (of 5,685 total)
Chi Chi Cabron (10/4/2012)
Thanks for all the input! I really appreciate the advice. I'll definitely ask for a meeting with the lawyer. Very good advice.
Excellent. When...
October 4, 2012 at 2:43 pm
D-SQL (10/3/2012)
October 4, 2012 at 2:19 pm
Use an Identity column in the target table to get your numerics.
Then use a calculated column on a varchar field to apply that to the formatting you need in the...
October 4, 2012 at 2:13 pm
Can you be a bit more explicit as to what dynamics you're intending here, and what exactly you've tried?
A configuration loads at the beginning of the run, and is set...
October 4, 2012 at 2:06 pm
Hey Chi Chi,
I've done something similar to this, and Sean's misgivings notwithstanding I agree there are times workflow needs this information.
However, make sure that accounting has a way to go...
October 4, 2012 at 2:04 pm
Transactions and SSIS are... painful at best. However, make sure that your connections that you're using in your transactions are set to reuse same connection (keep connection... something like...
October 3, 2012 at 2:08 pm
ramadesai108 (9/28/2012)
Thank you, but I do not have any layout. There must be some one who is expert on this, or has some idea how I can proceed.Thanks.
Who's sending you...
September 28, 2012 at 2:41 pm
Apologies Mark, I've been heavily tied up the last few days and didn't have time to really dig into the information and virus-scan the .zip. I'd hoped someone else...
September 28, 2012 at 2:00 pm
Joy Smith San (9/27/2012)
Evil Kraig F (9/27/2012)
vandana_j79 (9/26/2012)
September 28, 2012 at 1:58 pm
L' Eomot Inversé (9/28/2012)
September 28, 2012 at 1:44 pm
Websense block unfortunately, I'll have to remember to check this out when I get home or something similar.
September 27, 2012 at 4:54 pm
Some notes in the code, others below.
IF OBJECT_ID('TempDB..#mytable','U') IS NOT NULL
DROP TABLE #mytable
CREATE TABLE #MyTable(
[ComputerName] [nvarchar](255) NULL,
[ApplicationName] [nvarchar](255) NULL
)
INSERT INTO #MyTable
(ComputerName, ApplicationName)
SELECT 'DCZC445645S','1E NomadBranch 3' UNION ALL
SELECT 'DCZC445645S','1E WakeUp Agent...
September 27, 2012 at 4:24 pm
I take it back. Because of the length and datatype of your application information, there's a completely different approach I'd personally take here. Don't worry about the extra...
September 27, 2012 at 4:15 pm
gary.harrington (9/27/2012)
September 27, 2012 at 4:02 pm
Ron,
My only concern here with altering to a cascading deletion is that unless it cascades to duplicates as well you end up with a righteous mess. The OP will...
September 27, 2012 at 3:56 pm
Viewing 15 posts - 1,096 through 1,110 (of 5,685 total)