Hello all-
I need to replace all <tags> and make them look like <ws:tags> in a provided string. So for example, if this string was provided:
<recipientScheduleDetail>
<scheduleName>Mark Test</scheduleName>
<division>/IT//division>
<shifts>...
Hello All-
I am hoping someone may be able to help me figure this out. I am querying something via an API call, and it does return a list of items in its RawJSON. Right now my code does that much correctly, but I'm having difficulty turning that into a list of ServerRecord objects...
Oops, in the middle there I meant to say:
"The second part, which I know for a fact isn't fully working, is intended to stop maintenance mode for a server.
I am trying to develop what I thought was going to be an easy script, to put a specific server and all it's contained objects into maintenance mode in SCOM 2012. Not a group, but just one specific server and all it's stuff.
My script to START maintenance mode has two parameters:
1. The FQDN...
oops, I meant
Select Destination,
Case WHEN Destination IN (Select DISTINCT GroupName from tblDestinations) Then 'Yes' Else 'No' End As IsGroup
From tblDestinations
Where GroupName ='something I specify'
ORDER BY DestinationName
Actually, I think I just figured it out. I had to add the word "WHEN".
Select Destination,
Case Destination IN (Select DISTINCT GroupName from tblDestinations) Then 'Yes' Else 'No' End As IsGroup
From tblDestinations
Where GroupName ='something I specify'
ORDER BY DestinationName...
Turns out that I had this wrong as to what I was trying to accomplish. I need to be able to query the tblDestinations table for a specific group. So let me restate what I mean.
basically this is what I want:
Select Destination, IsGroup
From tblDestinations
Where GroupName = "something I...
That did the trick, thank you both! And yes, it makes sense. I did have to make one modification, just to be clear though, to add the DISTINCT keyword. For some reason it added a few duplicate rows. So I added it, and it now has the right number of rows. So here's my query.
Select...
Hello everyone-
I am in need of some assistance in making an SQL query that is a bit outside of my current knowledge. It involves a table with two columns, named tblDestinations. Here's some example rows:
GroupName Destination
Team1 Team1@email.com
Team2...
Hello, me again. I'm making progress, but I'm having some issues passing some arguments to javascript. When I look at my code in my asp, it looks like this:
output.Append(" <td class='cell'><A id = 'displayText' HREF = '#' onclick='return hideDiv('" & strTargets & "');'>" & strTargets...
That's incredibly observant of you ggriffit! And it's the reason I can't simply have the web page display the contents of the group. I am trying to either bring up a new page or display a different pane/div so that I can put a disclaimer at the top that says something to that effect. That the...
I am very new to HTML, ASP, and Javascript, so please be patient with me. I am wondering the best way to do something. Let me see if I can adequately explain.
I have a existing web page that using ASP is generating a table for me. It's querying a database and printing out the information in...
I guess labels, contained inside of a Div do not get hidden, even if the div itself is hidden. Guess I'll have to keep playing to figure out how to hide anything contained in that div...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.