Viewing 15 posts - 31 through 45 (of 319 total)
Thanks Brian,
Should have posted earlier.... I forgot to restart SQL Server Services, once restarted they showed. I had done this once before and the subscriptions came over with the ReportServer...
March 19, 2021 at 3:41 pm
Sorry, I was trying not to show some data
here is a samle I found and changed, so lets say in this example I want counts of name
<Employees>
<Person>
<ID>1000</ID>
<minor>yes</minor>
</Person>
<Person>
<ID>1001</ID>
<minor>yes</minor>
</Person>
<Person>
<ID>1002</ID>
<minor>yes</minor>
</Person>
<Person>
<ID>1003</ID>
<minor>no</minor>
</Person>
</Employees>
So I would like...
March 2, 2021 at 6:24 pm
Thnaks and sorry for not adding this
So in this example I would want Black 2 and red 1
<Data>
<Others>
<members>
<Name>adf</Name>
<Color>red</Minor>
</members>
<members>
<Name>adf</Name>
<Color>black</Minor>
</members>
<members>
<Name>adf</Name>
<Color>black</Minor>
</members>
</Others>
</Data>
March 2, 2021 at 6:01 pm
Thanks for getting back...
The only way I know to get to the logs is via SSMS connecting to the DB which it won't do.
Is there another way?
January 8, 2021 at 9:55 pm
Thanks Steve, thats a bit more straightforward 🙂
November 17, 2020 at 8:29 pm
It's funny, when you see something in print, you get it....
I came up with
=Format(DateAdd(DateInterval.Month, -1, Today), "yyyy")
And it works!!!
Thanks
November 17, 2020 at 8:25 pm
Thanks Everyone for the tips,
I kind of hacked it up a bit....
Changed the CHAR13 to a "&" encompassed the STUFF in a LEFT command to subtract the last "&"
Then in...
October 9, 2020 at 9:18 pm
Thanks for getting back, I'm using SSRS , the output looks the same, maybe something I need to format in the textbox?
October 9, 2020 at 7:33 pm
That worked great!
I just used
CAST(data.value('(/Data/Time_x0020_of_x0020_Call)[1]', 'varchar(30)') AS TIME) AS TimeofCall
Thank Again
July 1, 2020 at 8:31 pm
So the field looks like this
<Data>
<Client_x0020_Phone_x0020_Number>1-cell-phone</Client_x0020_Phone_x0020_Number>
<Time_x0020_of_x0020_Call>2020-06-22T09:00:00-04:00</Time_x0020_of_x0020_Call>
<Time_x0020_of_x0020_Disposition>2020-06-22T10:00:00-04:00</Time_x0020_of_x0020_Disposition>
<Family_x0020_Resource_x0020_Worker>famresworker</Family_x0020_Resource_x0020_Worker>
<Family_x0020_Resource_x0020_Worker_x0020_Phone>1-fam-res-phone</Family_x0020_Resource_x0020_Worker_x0020_Phone>
</Data>
So why does
SELECT
data.value('(/Data/Client_x0020_Phone_x0020_Number)[1]', 'varchar(30)') AS ClientPhone,
data.value('(/Data/Time_x0020_of_x0020_Call)[1]', 'Time') AS TimeofCall, ....
have output of "13:00:00.0000000"
thanks
July 1, 2020 at 8:17 pm
Thank You...
This is great information to have.....
June 30, 2020 at 5:58 pm
Thank you for the info, I get it now!!! sort of...:) bit more understanding on my part, but I see how to do it
Thank You Again
June 16, 2020 at 5:29 pm
It definitely gives me a starting point to start working
I have actually never use cursor or a while(in sql anyway) yet. But will look into it
It for the most part...
May 19, 2020 at 4:31 pm
Viewing 15 posts - 31 through 45 (of 319 total)