Viewing 15 posts - 9,151 through 9,165 (of 13,876 total)
I believe that the trigger executes under the same credentials as the event which fired it.
So the users doing the inserts in DB1 also need rights in DB2.
August 7, 2014 at 12:40 am
ronan.healy (8/5/2014)
August 5, 2014 at 4:35 am
twin.devil (8/5/2014)
so this means your CSV is multiline if im not mistaken ?
When would you have a non-multiline CSV? Wouldn't that just be column headings without data?
August 5, 2014 at 4:21 am
ronan.healy (8/5/2014)
August 5, 2014 at 4:19 am
ronan.healy (8/5/2014)
if I...
August 5, 2014 at 3:54 am
ronan.healy (8/5/2014)
its a csv file and in the csv file is all in the 1 column so should be split out correctly
If it's a single column, how are you doing...
August 5, 2014 at 3:47 am
ronan.healy (8/5/2014)
im using the following code to remove a comma
REPLACE([Counter Party Ref],", "," ")
the value in the column comes in like this
EDQE40000222004,0S0
any reason why my replace wont work or...
August 5, 2014 at 3:16 am
mathews.subbu (8/5/2014)
I have developed one SSIS package to import the CSV file values into DB table.
Everything Works fine.:w00t:
But i need some other workflows to CHECK the CSV file row...
August 5, 2014 at 3:12 am
Koen Verbeeck (8/5/2014)
Phil Parkin (8/5/2014)
Unless your database is case-sensitive, you don't need the UPPERs.Also you should always qualify your tables with their schema.
And you should finish your statements with the...
August 5, 2014 at 1:15 am
Unless your database is case-sensitive, you don't need the UPPERs.
Also you should always qualify your tables with their schema.
So I've rewritten your query a little to account for the above.
with...
August 5, 2014 at 12:25 am
PIVOT should get you what you need. Have a look at this example and see whether it helps you.
July 31, 2014 at 11:46 pm
I have an 'XML-hacker' solution:
declare @add1 xml
set @add1 = (SELECT a.* from @address a
where a.AddressID = 9
FOR XML path('Addresses'))
if @add1 is null
begin
set @add1 = cast('<Addresses>
<AddressID />
<AddressType />
<Address1 />
<Address2 />
<City...
July 31, 2014 at 9:49 am
Don't think this works if there is no underlying row selected.
July 31, 2014 at 9:48 am
ronan.healy (7/30/2014)
so say its security name in the...
July 30, 2014 at 7:18 am
Viewing 15 posts - 9,151 through 9,165 (of 13,876 total)