Viewing 15 posts - 781 through 795 (of 1,957 total)
Coriolan (7/12/2013)
That is exactly what I am looking for. Many thanks to you, Dwain.
Just be careful now, there is a mistake in that code that means you get every...
July 13, 2013 at 5:22 pm
I agree with Erland, just change the test to equality with zero, unless you actually want to extract the non-matching nodes from the xml?
I would add that this may be...
July 13, 2013 at 4:59 pm
You simply need a function in your report code.
Something like this should do it:
Function getImage(path as string) as string
If System.IO.File.Exists(path) Then
...
July 12, 2013 at 7:56 am
What can't you figure out? You have the insert there, commented out...is it erroring?
Sorry, just spotted the insert is wrong...
insert into UsersLoggedIn(<column name for count>, <column name for time stamp)
you...
July 11, 2013 at 1:19 pm
Something like this should give you the most recent LastModifiedDate for each Table1Key.
select Table1Key, MAX(LastModifiedDate)
from Table1
outer apply (
select Table1.LastModifiedDate
union all
select LastModifiedDate
from RTable01
...
July 11, 2013 at 1:16 pm
you said you tried using the ".nodes" method - did you do that to get down to the ns:formdata/ns:legacydata level, then just take values from e.g. ns:firstname/@value ? and it...
July 11, 2013 at 8:28 am
Do you really need nvarchar(MAX)?
Does it save any time to reduce those to nvarchar(4000)?
Does it speed things up if you comment out all but one of the ".value" columns?
July 11, 2013 at 8:01 am
It's not sort of zipped internally. It is a zip. Change the extension to zip and open it to see. But this is kind of off topic:-D
July 10, 2013 at 3:31 pm
Could be an xlsx. They are zips also.
July 10, 2013 at 2:35 pm
Do you have any mapped drives on the sql server under that domain account?
If so, can you copy the file to one of those and see if you can read...
July 10, 2013 at 1:57 pm
Or you could just set the step to go to next step on failure....
July 10, 2013 at 2:01 am
Thanks for taking the time to explain.
July 10, 2013 at 12:48 am
ethanstout2008 (7/9/2013)
Can you specifically show what you mean?
I did 😀
mister.magoo (7/9/2013)
select a.b.value('[highlight="#ffff11"]([/highlight]PID[sql:variable("@LoopCount")]/PID.3[highlight="#ffff11"])[/highlight][1]', 'varchar(200)')...
July 10, 2013 at 12:27 am
Viewing 15 posts - 781 through 795 (of 1,957 total)