two rows of delete with different values
HelloI wouldn't lines with the same id and have values of E and F 10258932.
I would like the following data:
A B C D E N
-------- -- ------ ----- - -
10258927 1 103,35 0
10258929 3 284,85 89,52 E N
10258929 4 323,85 89,52 E N
10258930 5 478,80 91,53 E N
10258931 6 436,67 78,09 E N
But I have the following lines:SQL> with my_table as
2 (
3 select '10258927' a, '1' b, '103,35' c, '0' d, NULL e from dual union all
4 select '10258928' a, '2' b, '0' c, '15,19' d, 'E' e from dual union all
5 select '10258929' a, '3' b, '284,85' c, '89,52' d, 'E' e from dual union all
6 select '10258929' a, '4' b, '323,85' c, '89,52' d, 'E' e from dual union all
7 select '10258930' a, '5' b, '478,80' c, '91,53' d, 'E' e from dual union all
8 select '10258931' a, '6' b, '436,67' c, '78,09' d, 'E' e from dual union all
9 select '10258932' a, '7' b, '784,88' c, '23,19' d, 'E' e from dual union all
10 select '10258932' a, '8' b, '100,88' c, '11,11' d, 'E' e from dual union all
11 select '10258932' a, '9' b, '300,88' c, '22,22' d, 'F' e from dual union all
12 select '10258932' a, '10' b, '468,25' c, '78,33' d, 'F' e from dual)
13 select a, b, c, d, e, no_ds from
14 (
15 select a, b, c, d, e,
16 case when c > 0 and e != 'F'
17 then 'N'
18 end no_ds
19 from my_table)
20 where no_ds = 'N' or e is null
21 order by 1
22 /
A B C D E N
-------- -- ------ ----- - -
10258927 1 103,35 0
10258929 3 284,85 89,52 E N
10258929 4 323,85 89,52 E N
10258930 5 478,80 91,53 E N
10258931 6 436,67 78,09 E N
10258932 7 784,88 23,19 E N
10258932 8 100,88 11,11 E N
7 Zeilen ausgewählt.
SQL>
Does anyone have an idea?
Oh, I read the title again once: 'remove double lines with different values.
If it means that he is not specifically E and F values, but only if there is more than one distinct value, then you can do the following:
with my_table as
(
select '10258927' a, '1' b, '103,35' c, '0' d, NULL e from dual union all
select '10258928' a, '2' b, '0' c, '15,19' d, 'E' e from dual union all
select '10258929' a, '3' b, '284,85' c, '89,52' d, 'E' e from dual union all
select '10258929' a, '4' b, '323,85' c, '89,52' d, 'E' e from dual union all
select '10258930' a, '5' b, '478,80' c, '91,53' d, 'E' e from dual union all
select '10258931' a, '6' b, '436,67' c, '78,09' d, 'E' e from dual union all
select '10258932' a, '7' b, '784,88' c, '23,19' d, 'E' e from dual union all
select '10258932' a, '8' b, '100,88' c, '11,11' d, 'E' e from dual union all
select '10258932' a, '9' b, '300,88' c, '22,22' d, 'F' e from dual union all
select '10258932' a, '10' b, '468,25' c, '78,33' d, 'F' e from dual
)
--
-- end-of-test-data
--
select a, b, c, d, e,
num_distinct_values
from
(
select a, b, c, d, e,
count(distinct e) over (partition by a) num_distinct_values
from my_table)
where num_distinct_values <= 1
order by 1
/
The county notes how the distinct non-null values in column e for each one.
Where clause then selects those with count = 0 (this is where e = null) and count = 1.
If the number is greater than 1, different values exist for this id.
Choose what fits your condition ;-)
Tags: Database
Similar Questions
-
Updated several lines with different values
Hello!
I have a problem. I need to update more than 1000 lines with different values. How can I do?
For exsample I have table:
ID; color, date,
1 red
2 green
3 white
I need to update the date field.
Update table
Set date = '01.02.03'
where id = 1
Update table
Set date = '01.03.03'
where id = 2
Maybe it's how to update multiple rows in a single request?
Sorry for my bad English.
Thank you!Hello
You can try this
UPDATE TABLE SET DATE = CASE WHEN ID = 1 THEN TO_DATE('01-02-03','DD-MM-RR') WHEN ID = 2 THEN TO_DATE('01-03-03','DD-MM-RR') END
see you soon
VT
-
DAQmx create track (I-current-Basic) 8 channels with different values of Shunt resistance
Hello
I want to measure 8 current channels with different values of Shunt resistance.
Problem: The channel create DAQmx (HAVE current Basic) specifies that a value of Shunt resistance.
How can I set the value of Shunt resistance for each channel individually?
Concerning
Marcel
Hi Marcel_C,
Take a look to get attached.
Best regards
Mencef
-
reuse of filters with different values
We have a usage scenario where the same filters will have to be applied several times with different values. Looking the javadocs, it seems like there is no way to change the values of pre-packaged filters (EqualsFilter, GreaterFilter etc.). Is that correct or is there a way to do it? I see that if we use CohQL, we can use bind variables to do this. However, the use cases we should rather just more complex extractors ReflectionFilters.
In addition, there no performance impact by using CohQL against java constructs directly?
Thank you
Manju.Hi Manju,
While it is true that you cannot change values in the built in filters, even if you could it wouldn't make you save a lot on the construction of a new filter every time. I guess that if you build a very large number of filters, then you're going to create more garbage, but that shouldn't be a problem either. Some of the more specialized filters also contain State so that you do not want to resuse them.
The main performance issue I know with CohQL which is only creates extractors of reflection so won't enjoy all serialized POF values you have. If you have indexed each value you want to query on using the same extractors relflection then it would help, but again, this means that everything you deserialization of the values for the query or insert to update the index.
Kind regards
JK -
Two tables with different values of basic on an analysis filter
Hi guys,.
Let assume that I have an analysis with columns: group_id and sales.
On this basis I would like to create two tables: table1 where group_id = 1 and table2 where group_id = 2.
OBIEE is able to do?
Kind regards
SlaviHi Slavi,
You can do it in a single analysis, but you have to have the column with group_id twice.
Bring, group_id_1, group_id_2 (same column), sale
Now in table 1.
bring group_id_1, sales
Then in the selection steps for group_id_1-> select members-> Action choose keep only-> choose the value of the filter 1
This will filter the table 1 with group_id 1
In table2 group_id_2 porter, sales
Then do the same step for group_id_2 with the value 2.
You now have two reports with different filter in the same report.
If you want you can keep the same name column for the two columns group_id, I just kept group_id_1, group_id_2 for easy reference.
-
Return only the columns with different values.
Hi all
I am trying to solve a seemingly trivial problem but can't seem to get any clear answer anywhere in any forum. Consider a single table with 5 columns and only two lines:
Assume that there is no primary key or any other constraint. Also assume that there are only and only two lines of this table. So I need basically a query that, overall above lines, would return first name and sex, because they are only different columns in two lines, as well as their values. Even if I can get sort of column names that are different and that would be enough that I can easily access the values later. It is also important to remember that I may not know the names of the columns in the columns, so basically, somehow, I use user_tab_columns in the process.row_id first_name last_name age gender 1 John doe 27 M 1 Jane doe 27 F
Any help appreciated.
Published by: 894302 on May 1, 2013 10:35Hello
894302 wrote:
The exact release could be just a varchar variable that lists all the columns that have different values with each column name separated by commas. We'll call the query you want as a QUERY. So, if I do something likeSelect the REQUEST of double; Output should be: 'first_name, equality of the sexes. Is this possible?
In this case:
SELECT RTRIM ( DECODE (a.row_id, b.row_id, NULL, 'row_id,') || DECODE (a.first_name, b.first_name, NULL, 'first_name,') || DECODE (a.last_name, b.last_name, NULL, 'last_name,') || DECODE (a.age, b.age, NULL, 'age,') || DECODE (a.gender, b.gender, NULL, 'gender,') , ',' ) AS different_columns FROM rhit_table_x a JOIN rhit_table_x b ON a.ROWID < b.ROWID ;
Output:
DIFFERENT_COLUMNS --------------------------------------- first_name,gender
This assumes that you have really a table, then you can use ROWID to distinguish the lines, since there is no primary key.
If this isn't the case, you first assign ROW_NUMBER in a subquery. -
two queries against aud$ with different results
Hi guys
I'm not so good with queries and it is the reason for my question:
We have active audit and we want to get the following information (monthly):
- -How many times the logon user to the database.
- -each logon to each user in a month.
For the first (1) obligation for us to have the following query:
select USERID "Cuenta", USERHOST, TERMINAL, nombres||' '||PRIMER_APELLIDO||' '||SEGUNDO_APELLIDO "WhiteList" , count(*) "TOTAL" from aud$, ab.usuarios where (ACTION# = 100) and (NTIMESTAMP# between (to_date(to_char('01092013 00:00:00'),'ddmmyyyy HH24:MI:SS')) and (to_date(to_char('30092013 23:59:00'),'ddmmyyyy HH24:MI:SS'))) and USERID = CODIGO_USUARIO(+) and USERID not in ('DBSNMP','SYSMAN') group by USERID, USERHOST, TERMINAL, nombres||' '||PRIMER_APELLIDO||' '||SEGUNDO_APELLIDO order by USERID, USERHOST, TERMINAL;
the result of this query shows like this:
Header 1 Cuenta USERHOST TERMINAL WhiteList TOTAL
-------------------- ------------------------- --------------- ---------------------------------------- ----------
ASEGUR MAQUINADIAB\SSSSS IUOOO PEPITO GARCIA GARCIA Y SOCIED 10
ASEGUR POSADASDE\MNNN4550094 MNNN4550094 PEPITO GARCIA GARCIA Y SOCIED 1
ASEGUR POSADASDE\YUMI YUMI PEPITO GARCIA GARCIA Y SOCIED 10
ASEGUR YUH PEPITO GARCIA GARCIA Y SOCIED 20
ASEGUR SDFRG PEPITO GARCIA GARCIA Y SOCIED 13
ASEGUR signy PEPITO GARCIA Y GARCIA SOCIED 29
Sigurd ASEGUR PEPITO GARCIA Y GARCIA SOCIED 32
ASEGUR valhalla-Legacy PEPITO GARCIA Y GARCIA SOCIED 12
ADMIN MAQUINADIAB\SSSSS IUOOO USER ADMINISTRATOR NETWORKING 3
SPRINGUSR bragi 98
SPRINGUSR hermod 59
SPRINGUSR YUH 49
Therefore, total logons per month per user.
for the second requirement, we use the tracking query:
select USERID "Cuenta", USERHOST, TERMINAL, to_char(NTIMESTAMP#,'YYYYMMDD HH24:MI:SS') "Fec Ing", nombres||' '||PRIMER_APELLIDO||' '||SEGUNDO_APELLIDO "WhiteList" --, count(*) "TOTAL" from aud$, ab.usuarios where (ACTION# = 100) and --to_char(NTIMESTAMP#,'dd-mm-yy')=to_char(sysdate-50,'dd-mm-yy') and (NTIMESTAMP# between (to_date(to_char('01062013 18:00:00'),'ddmmyyyy HH24:MI:SS')) and (to_date(to_char('30062013 23:59:00'),'ddmmyyyy HH24:MI:SS'))) and USERID = CODIGO_USUARIO(+) and USERID not in ('DBSNMP','SYSMAN') group by USERID, USERHOST, TERMINAL,to_char(NTIMESTAMP#,'YYYYMMDD HH24:MI:SS'), nombres||' '||PRIMER_APELLIDO||' '||SEGUNDO_APELLIDO order by USERID, USERHOST, TERMINAL;
Header 1 Cuenta USERHOST Fec TERMINAL Ing white list
-------------------- ------------------------- --------------- -------------------- ----------------------------------------
UTILISATEUR12 DOMINIODDD\IOIPOP IOIPOP 20130930 12:08:33 ANGEL ROBERTO GARCIA Y GARCIA S
UTILISATEUR12 DOMINIODDD\IOIPOP IOIPOP 20130930 14:28:47 ANGEL ROBERTO GARCIA Y GARCIA S
UTILISATEUR12 DOMINIODDD\IOIPOP IOIPOP 20130930 16:24:43 ANGEL ROBERTO GARCIA Y GARCIA S
Thus, shows the opening of each session conducted per user per month.
But in the two queries, the results are different. This is not to assume that they must have the same number of logons?
I mean, if I have summarized the numbers in the TOTAL column I less that I get in the second query. Always!
could you help us?
Thank you
Hello
Why you use GROUP BY in the second query, remove it from the second query, then result will be the same
HTH
-
two rows of back with a single column with just one place
Hello all;
Published by: user13328581 on March 22, 2011 11:52I have a query that returns two rows similar to this below ID PLACE PROGRAM A NEWYORK PROGRAM A A NEWYORK PROGRAM B I would like this instead ID PLACE PROGRAM A NEWYORK PROGRAM A PROGRAM B All help is appreciated. Thank you.
user13328581 wrote:
WOW... Thanks a lot for Salomon, I never used the partitions and row_number in such a way... can you please explain your logic.Ensure that:
ROW_NUMBER() over (partition by order of identification by location, program)
This operation can take all the rows returned by the query andsplit them in compartments (sheet music) by id. Inside each bucket it order lines by program and place and assign line numbers. So for each row of the ID number 1 will be stored with (in alphabetical order) first place the first programt. And this is the line where we want to ID is displayed. That's why we wrap the analytical function that precedes in the CASE statement that will do just that. Now:
ROW_NUMBER() over (partition by id, order by program)
pretty much the same just bucket is a combination ID / PLACE. So for each combination of it, we want to show that for the first (in alphabetical order) programt.
Now notice in the ORDER BY clause I prefix ID and PLACE with the table alias. You do it because otherwise the query alias ID and PLACE will have priority resulting in the incorrect sort order (remember that we cancelled all ID and PLACE with the exception of the number of line 1).
SY.
-
Interleaving of samples: two outputs analog (tables with different lengths)
CHAN AOCHANNEL1 AOCHANNEL2 AOCHANNEL1 AOCHANNEL2 .. .and so on
SAMP * * * * * * * * * * * * .............and so on
Hi guys, how could I go on the interlacing of two arrays of different lengths in a two-channel analog output?
In the illustration above, for example, I like to write 5 values in channel 1, followed a string of unique value 2 and so on...
I use DAQmx library controls to achieve this (not LabView).
I am able to write unique values each time a task is opened without any problem, I was wondering if I can interleave the berries so that values are buffered and tasks are performed with greater haste.
best regards,
Ravi
target met: I've made the following changes:
CREATION OF TASK 1
CREATION ANALOG_VO channel 1 & channel 2 in TASK 1
CONFIG. CALENDAR OF TASK 1CREATED some TENSION with SAMPLES interleaved pre
WRITING TASK 1 VALUES
TASK 1 STARTED
DAQmxCfgSampClkTiming(taskHandle1,"",SAMPLING_RATE,DAQmx_Val_Rising,DAQmx_Val_FiniteSamps,2*SAMPLE_SIZE_WX) -
Update of digital control with different values with array function
Hello
I have attached my code base. I want to execute the code for 2 sets of digital control with a gap between the two values, then pass it. Something like that
ABC
Initialize the P1 = 10; P2 = 20; P3 = 30; P4 = 40
Run the code
delay = 10ms
Update of P1 = 150; P2 = 200; P3 = 350; P4 = 500
Run the code
jump to abc
I am stuck how can I update the values of P1, P2, P3, P4? I thought about using a function table but couldn't go further.
Thanks for the help,
Ana
Hello Ana,
One way you might achieve what you are looking for is using property nodes. These property nodes will allow you to change the values of the block diagram control. You can set up a structure of case inside your loop that will change control through nodes of property value after a certain number of iterations. Here is a community sample that shows how to use the nodes property to change the Boolean controls:
https://decibel.NI.com/content/docs/doc-22669
-Erik S
-
Change the sequence of commands to generate two reports by USE with different names.
I have a special situation for the model of batch processing.
Each DUT consist of two distinct products that need to be tested as a single unit.
I can run every USE and generate a test for each report. -aka. The standard use case works very well.
However, we would like the records using this method. So I need a copy with a different name for each series.
The idea behind this is that we have a story running for each half of the UUT. Given that the two halves will probably never meet.
I looked at the BatchModel.seq and read some of the documentation, but I'm having a hard time to understand what is happening.
I guess the items highlighted above are where the object to measure reports are generated. However, I don't know the mechanism for giving them the names among the Options report-> report menu Pathname file or how to change between these two points in time. Also are there tricks to get the report in duplicate with a different path in this configuration.
All links to the relevant information would be useful. Thank you
Just copy these two steps and between them and the copies have another step that is just a statement. There, you can change the path of the report by setting parameters. TestSocket.ReportFilePath the new path.
Ideally what you would do, is that the client using a callback. So, your code would look like this:
Write the object to measure report
Write the report of the object to be measured (on the fly)
Define report path reminder (override in customer OR statement step)
Write the object to measure report
Write the report of the object to be measured (on the fly)
Hope this helps,
-
query users to mulitple update block with different values
Hello
I need to write a SQL script to update the information of multiple users (400) in the database.
Here's the query I use to update a single user:
setting a day of usr set usr_login = "ROBERTAA_OLDx", USR_EMAIL = '[email protected]_dellllx.com' where usr_login = 'ROBERTA ';
usr_login and usr_email must be different for each user.
What is the best way to achieve this?
Please suggest
Thank you
OK, I see. Here is my version of update:
DROP TABLE usr; CREATE TABLE usr ( usr_login VARCHAR2(20) ,usr_email VARCHAR2(50) ); INSERT INTO usr VALUES ('PENUMALH', '[email protected]'); INSERT INTO usr VALUES ('IAMTEAM', '[email protected]'); INSERT INTO usr VALUES ('TESTSOA2', '[email protected]'); INSERT INTO usr VALUES ('TESTADF1', '[email protected]'); INSERT INTO usr VALUES ('IAMTESTIR2', '[email protected]'); INSERT INTO usr VALUES ('IAMPWDTT', '[email protected]'); INSERT INTO usr VALUES ('IAMPWDTI', '[email protected]'); COMMIT; SET LINESIZE 80 PAGESIZE 20 COLUMN usr_login FORMAT A20 COLUMN usr_email FORMAT A50 SELECT * FROM usr; UPDATE usr t1 SET (t1.usr_login, t1.usr_email) = (SELECT t2.usr_login || 'OLD' || TO_CHAR(ROWNUM) AS usr_login ,SUBSTR(t2.usr_email, 1, INSTR(t2.usr_email, '.', -1, 1) - 1) || '_delxxxxasdf' || SUBSTR(t2.usr_email, INSTR(t2.usr_email, '.', -1, 1)) AS usr_email FROM usr t2 WHERE t2.usr_login = t1.usr_login); COMMIT; SELECT * FROM usr;
And the output:
Table dropped. Elapsed: 00:00:00.05 Sequence dropped. Elapsed: 00:00:00.03 Table created. Elapsed: 00:00:00.03 Sequence created. Elapsed: 00:00:00.03 1 row created. Elapsed: 00:00:00.13 1 row created. Elapsed: 00:00:00.04 1 row created. Elapsed: 00:00:00.03 1 row created. Elapsed: 00:00:00.03 1 row created. Elapsed: 00:00:00.03 1 row created. Elapsed: 00:00:00.03 1 row created. Elapsed: 00:00:00.03 Commit complete. Elapsed: 00:00:00.02 USR_LOGIN USR_EMAIL -------------------- -------------------------------------------------- PENUMALH [email protected] IAMTEAM [email protected] TESTSOA2 [email protected] TESTADF1 [email protected] IAMTESTIR2 [email protected] IAMPWDTT [email protected] IAMPWDTI [email protected] 7 rows selected. Elapsed: 00:00:00.03 7 rows updated. Elapsed: 00:00:00.04 Commit complete. Elapsed: 00:00:00.02 USR_LOGIN USR_EMAIL -------------------- -------------------------------------------------- PENUMALHOLD1 [email protected]_delxxxxasdf.com IAMTEAMOLD1 [email protected]_delxxxxasdf.com TESTSOA2OLD1 [email protected]_delxxxxasdf.com TESTADF1OLD1 [email protected]_delxxxxasdf.com IAMTESTIR2OLD1 [email protected]_delxxxxasdf.net IAMPWDTTOLD1 [email protected]_delxxxxasdf.in IAMPWDTIOLD1 [email protected]_delxxxxasdf.com 7 rows selected. Elapsed: 00:00:00.03
-
loop to generate variables with different values
A quiz, I have answers user saved in a table. At the end of the quiz, I need to extract individual responses to the different variables q1, q2, q3, etc.. The questionnaire can be of different questions so I need to adjust based on total questions inside. How can I use loop to create variables and values to capture?
So, I would change the following:
var q1:int = userAnswersArray [0];
var q2:int = userAnswersArray [1];
var q3:int = userAnswersArray [2];
var q4:int = userAnswersArray [3];
...
to the loop like the one below:
for (i = 0; i < totalQuestion-1; i ++)
{
This ["var var q" + i] + ": int" = "userAnswersArray []" + this [i] + "]";
}
He probably has syntax errors that it does not work.
Thanks for your help.
If evidence of userAnswersArray are always aligned with issue numbers (say, question 1 answer is saved in 0, 2 - position 1, position etc.) maybe work the following:
var urlreq:URLRequest = new URLRequest("subresultpage.asp"); urlreq.method = URLRequestMethod.POST; var urlvars:URLVariables = new URLVariables(); for(var i:int = 0; i < userAnswersArray.length; i++) { urlvars["q" + (i + 1)] = userAnswersArray[i]; }
-
question of xsd. several records with different values.
I need help in the creation of xsd.
My data from the file will be as Fallows.
Sample data file
AB xxxx yyyy zzz ttttt
BBB hhh ddd ddd
BBB hhh ddd ddd
BBB hhh ddd ddd
BC xxxx yyyy zzz ttttt
CCC hhh ddd ddd
CCC hhh ddd ddd
CCC hhh ddd ddd
CD xxxx yyyy zzz ttttt
Hhh ddd ddd DDD
Hhh ddd ddd DDD
Hhh ddd ddd DDD
My xsd is as Fallows:
< xsd: element name = "Root Element" >
< xsd: complexType >
< xsd: SEQUENCE >
< xsd: element name = "Element" type = "tns: mainelement" minOccurs = "0" maxOccurs = "unbounded" / >
< / xsd: SEQUENCE >
< / xsd: complexType >
< / xsd: element >
< xsd: complexType name = "mainelement" >
< xsd: SEQUENCE >
< xsd: element name = "Header" type = "tns:HeaderType" maxOccurs = "1" / >
< xsd: element name = "lineitem1" type = "tns:lineitemrecord1" minOccurs = "0" maxOccurs = "unbounded" nxsd:lookAhead = "0" nxsd:lookFor = "" / >
< / xsd: SEQUENCE >
< / xsd: complexType >
< xsd: complexType name = "HeaderTyep" >
< xsd: SEQUENCE >
< xsd: element name = "HeaderData" type = "xsd: String" nxsd:style = "fixedLength.
nxsd:length = "2528" / >
< / xsd: SEQUENCE >
< / xsd: complexType >
< xsd: complexType name = "lineitemrecord1" >
< xsd: SEQUENCE >
< xsd: element name = "RecordData" type = "xsd: String" nxsd:style = "fixedLength" nxsd:length = "161" / >
< / xsd: SEQUENCE >
< / xsd: complexType >
How can differentiate the values in the starting header field by [AB, BC, CD] and record data fields starting with [bbb, ccc, ddd]
I can't use nxsd: lookahead and nxd:lookFor.
Required inputs to process the file. What alteration is suitable for the xsd to run.
Is there a parent - child relationship kind of thing in your file structure?
Row containing sales, purchases etc. is the parent and the tracking records are the child records, until we meet any record type 'Bill of sales, purchases',? In addition, tried to use "conditionValue" and "startsWith" and it did not work... Is it?
-
Update a field with different values of several tables
Hello
I have a table named AAA with 2 fields id and structure.
And then I have other 3 tables with 2 fields id1 and structure1 id2, table1 and table2, id3 and structure3 to table3 organized.2.
The number of AAA id is equal to the sum of the IDS of table1, table2, table3: #id = #id1 + id2 # + #id3).
I want to update the structure of AAA table with values as well as field:
where AAA.id = table1.id1-> AAA.structure = table1.structure1
where AAA.id = table2.id2-> AAA.structure = table2.structure2
where AAA.id = table3.id3-> AAA.structure = table3.structure3
Can someone help me?
I have Oracle11gR2.
Thank you in advance.Oops...
update AAA set structure = (select structure1 from table1 where aaa.id = table1.id1) where aaa.id in (select id1 from table1)
Maybe you are looking for
-
I have a suggestion for you it is the photos application, there is no security for the recently deleted photos. If someone knows the password of the Iphone they can delete the photos and also remove photos recently deleted, if there is need code rest
-
I'm still on XP on this older PC, this all started because of this stupid bing toolbar that has infect many computers, and I started unistalling some programs that looked like, they do not belong, I ended up getting rid of bing, but now I have a much
-
I am running 10.11.4 on 27 "late 2009 with an i7 2.8 GHz, 8 GB 1067 MHz DDR3 & a Radeon HD 4850 512 MB. Whenever the computer has worked for a number of hours when he suddenly stops accepting entering the bluetooth mouse, keyboard & magic pad. Can mo
-
Sony HDR - UX5, editing on PC
Is it possible to edit images taken of the Sony HDR - UX5 on my PC? If so, HOW do I convert the format for editing?Any help is LARGELY APPRECIATED. Thank you
-
Why can't you guys do the xbox a backward compatible for a short period as the ps3
You guys are saying no to allowing 360 games on the xbox, but why you can not do, at least in the edition of the first day, the retro-compatible console for a short period of time