Here's why I want to do this...
When an app is started by clicking on it, it becomes a child process of the explorer process. The same is true for all apps that are loaded when Windows starts up.
If you kill the explorer process using the "End Process Tree" context menu option in the task...
Using WMI VB scripting, I would like to create/attach multiple child processes to a parent process, such as the explorer process.
Any ideas how this can be done? Below is my code that fails.
Thanks!
Chris
Option Explicit
dim wmi, rootProcessName, rootProcess, objStartup, objConfig...
Well, I got the answer from a SQL forum. Here it is...
SELECT *
FROM
(SELECT p.user_id, pit.data_name, pi.item_value
FROM profile p
JOIN profile_item pi ON pi.profile_id = p.profile_id
JOIN profile_item_type pit ON pit.profile_item_type_id = pi.profile_item_type_id
AND pit.data_name in...
I need to turn the following SQL results into a pivot table
I don't beleieve an aggregate function will help with this one.
The query is simplified for the purpose of this post.
I have used the SQL 2005 PIVOT operator to show columns of aggregated data.
However, I'm not sure how to turn the...
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.