Viewing 15 posts - 5,026 through 5,040 (of 11,678 total)
DTEXEC /f "c:\myPackage.dtsx"
What is the error that you get?
August 27, 2013 at 1:26 am
Jeff Moden (8/27/2013)
Koen Verbeeck (8/26/2013)
rocky_498 (8/26/2013)
I am thinking how about If I get Recent file name from folder?
Is anyone can please guide me how i...
August 27, 2013 at 1:15 am
You need to configure that in the package itself, not in the command prompt.
The package will automaticallly retrieve the value from the environment variable and search for the corresponding XML...
August 27, 2013 at 1:13 am
To change the 8 rows lookup, you need to modify the registry key TypeGuessRows of the ACE OLE DB provider.
(there's a link in my signature with more info, but unfortunately...
August 26, 2013 at 3:07 pm
Did you try running in 32-bit?
August 26, 2013 at 1:21 pm
Seems fine to me. All nice set-based operations 🙂
August 26, 2013 at 1:14 pm
rocky_498 (8/26/2013)
I am thinking how about If I get Recent file name from folder?
Is anyone can please guide me how i can recent file name...
August 26, 2013 at 1:13 pm
Claudio Pinto (8/26/2013)
August 26, 2013 at 1:11 pm
I'd try something like this:
WITH CTE_PhoneStartsWith6 AS
(
SELECT site, Name, cs_seqno, phone
WHERE phone LIKE '6%'
)
SELECT site, Name, cs_seqno, phone FROM
(
SELECT site, Name, cs_seqno, phone, RID = ROW_NUMBER() OVER (PARTITION BY site...
August 26, 2013 at 7:47 am
You are trying to insert duplicates.
Check the source data and your code to make sure you are not duplicating rows somewhere.
August 26, 2013 at 7:40 am
Regarding the script you posted (while I was typing my previous reply), you don't use the INSERTED or DELETED system tables. Those might come in handy.
August 26, 2013 at 7:11 am
Seems like an AFTER trigger to me.
Also seems table B is just a copy of table A 🙂
August 26, 2013 at 7:09 am
Are you sure you want to use a linked server? Because a .csv file is, you know, a file. Not a server.
Maybe you want OPENROWSET?
August 26, 2013 at 6:54 am
August 26, 2013 at 4:57 am
Viewing 15 posts - 5,026 through 5,040 (of 11,678 total)