Viewing 15 posts - 3,511 through 3,525 (of 13,469 total)
i couldn't get your one example to work, because the data was malformed in your pasted example; it was missing two tags, so it was not valid xml; it was...
May 8, 2013 at 9:06 am
Ok the light came on with Marks' wildcard solution, thank you!
May 8, 2013 at 9:04 am
thanks, arthur, but that's kind of what's confusing me;
if i don't use the namespace, i get the desired results for the second item but not ht efirst; if i use...
May 8, 2013 at 8:28 am
nareshmsbi13 (5/8/2013)
Exec SP where select * from view,wt is the finall out put of this query can some...
May 8, 2013 at 7:08 am
db042188 (5/8/2013)
hate to be a pain Lowell but are you running dtexec as 64 bit (from the non x86 directory) and bringing/reading excel 2007 data into your ssis buffer?
myself, specifically,...
May 8, 2013 at 7:05 am
db042188 (5/8/2013)
May 8, 2013 at 6:10 am
no it will not step on the existing drivers/installation, it forces a side by side install instead, so both the 32 bit and the 64 bit are installed and available...
May 8, 2013 at 5:59 am
there is a very similar issue when adding linked servers for Excel;
I tripped over this before , where Office 32 bit was installed on my server, and you get in...
May 8, 2013 at 5:35 am
ok here's a slightly modified version, showing exactly your problem, with a text field that must be converted;
i had to generate fake data, and assume a table structure, because you...
May 7, 2013 at 2:11 pm
Neeraj Dwivedi (5/7/2013)
Lowell, he has mentioned in first post that The primary key combination for the destination table is "ROBumber + ROTime" .
agreed, but if he auto generates an overlapping...
May 7, 2013 at 1:28 pm
i f he's inserting into a constraint, and one of the new generated values happens to be the same as an existing value, i'd expect an error;
for example, just based...
May 7, 2013 at 1:11 pm
yeah the server roles would need to be scripted as a separate step;
this is what I have saved in my snippets for doing exactly that, if it helps;
SELECT 'EXEC...
May 7, 2013 at 10:58 am
your xml was not well formed, so i couldn't use it as an example to show you:
you will have to convert(xml,YourTEXTColumn) to use this logic;
here's a couple of ways:
DECLARE @xml...
May 7, 2013 at 10:42 am
I'd recommend using MicroSoft's sp_help_revlogin instead; it simply produces a script you can run in a few seconds;
there's different versions, depending on SQL 2000 vs 2005 and up,...
May 7, 2013 at 10:20 am
for the filename stuff, somewhere abovee your code, you need to construct the filename:
declare @attachmentfilename varchar(100)
SET @attachmentfilename = REPLACE(CONVERT(VARCHAR,GETDATE(),101),'/','')
-- formats 05/07/2013 and removes slashes to 05072013
+ 'Attachement.xml'
...
May 7, 2013 at 9:46 am
Viewing 15 posts - 3,511 through 3,525 (of 13,469 total)