473,403 Members | 2,270 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,403 software developers and data experts.

DB2 SQL Formatting

Is there any way to make a select in DB2 to output in the following manner:

Attr1 value1
Attr2 value2
Attr3 value3
Attr4 value4

Instead of the

Attr1 Attr2 Attr3 Attr4
------- ------- ------- --------
value1 value2 value3 value4

Thanks for any help.
Nov 12 '05 #1
7 1946
yoyo wrote:
Is there any way to make a select in DB2 to output in the following manner:

Attr1 value1
Attr2 value2
Attr3 value3
Attr4 value4

Instead of the

Attr1 Attr2 Attr3 Attr4
------- ------- ------- --------
value1 value2 value3 value4

Thanks for any help.

SELECT MAX(CASE WHEN c1 = 'Attr1' THEN c2 END) AS Attr1,
MAX(CASE WHEN c2 = 'Attr2' THEN c2 END) AS Attr2,
...
FROM T;
--
Serge Rielau
DB2 SQL Compiler Development
IBM Toronto Lab
Nov 12 '05 #2
SELECT 'Attr1', value1 FROM Table
UNION ALL
SELECT 'Attr2', value2 FROM Table
UNION ALL
SELECT 'Attr3', value3 FROM Table
UNION ALL
SELECT 'Attr4', value4 FROM Table
ORDER BY 1

Nov 12 '05 #3
Brian Tkatch wrote:
SELECT 'Attr1', value1 FROM Table
UNION ALL
SELECT 'Attr2', value2 FROM Table
UNION ALL
SELECT 'Attr3', value3 FROM Table
UNION ALL
SELECT 'Attr4', value4 FROM Table
ORDER BY 1

Thanks, these both work, but I was hoping for an automatic way to so I
didn't have to type the names of the columns, some of these tables I'm
quering have over 100 attributes, and I need to repeat it on like 25 tables.
I wrote some php code and made a little query in a web page to format
the results for me. I dynamicaly select the colnames from syscat.columns
and then make the real select based on the colnames I got, select the
values and spit it out in html table. Works nice.
Thanks for the help, I'll remember these when I need them one day, and
I'm sure I will...

Ken
Nov 12 '05 #4
Ken,

actually you answered the question yourself.
SQL is the query language; how to represent the data in your report is
another thing and done by the application itself. Exactly as you did.
Selecting the column names from syscat.columns would have been my suggestion
as well to automate.

Juliane
--
Message posted via DBMonster.com
http://www.dbmonster.com/Uwe/Forums....m-db2/200508/1
Nov 12 '05 #5
yoyo wrote:
Thanks, these both work, but I was hoping for an automatic way to so I
didn't have to type the names of the columns, some of these tables I'm
quering have over 100 attributes, and I need to repeat it on like 25
tables.
I wrote some php code and made a little query in a web page to format
the results for me. I dynamicaly select the colnames from syscat.columns
and then make the real select based on the colnames I got, select the
values and spit it out in html table. Works nice.
Thanks for the help, I'll remember these when I need them one day, and
I'm sure I will...

Ken


For quick db2 scripting, I can recommend using perl in combination with
the DBM::DB2 extension. I've made some scripts which iterate through the
syscat.tables... One of them is to recreate views which are marked
invalid due to a table recreate.

-R-
Nov 12 '05 #6
If this is something done over and over again, you could DECLARE a
TEMPORARY TABLE as wide as your widest TABLE, and INSERT INTO...SELECT
all COLUMNs, CASTing everything to an appropriate type. Then, have a
blanket routine take each COLUMN and INSERT it as another row.

Though as mentioned, SQL is a querying language, presentation is not
its forte.

Nov 12 '05 #7
One of the problem of SQL query is the number of SELECTed columns must
be fixed before execution of the SQL query even using dynamic SQL.
So, if you want repeat a query statement on multiple tables, you need
some modification depending on the number of columns of each tables.
Following samples can be used for upto 20 columns tables.
Example1. Need modify comments lines as followings, because number of
columns of Employee table is 14.
And specify Tabschema and Tabname.
WITH
-- Target
(c1,c2,c3,c4,c5,c6,c7,c8,c9,c10,c11,c12,c13,c14,c1 5,c16,c17,c18,c19,c20)
AS (
Target (c1,c2,c3,c4,c5,c6,c7,c8,c9,c10,c11,c12,c13,c14) AS (
SELECT *
FROM Employee
WHERE empno = '000100'
)
SELECT
SUBSTR(sc.colname,1,18) colname
, SUBSTR(CHAR( c1),1, p1*LENGTH(CHAR( c1)))
||SUBSTR(CHAR( c2),1, p2*LENGTH(CHAR( c2)))
||SUBSTR(CHAR( c3),1, p3*LENGTH(CHAR( c3)))
||SUBSTR(CHAR( c4),1, p4*LENGTH(CHAR( c4)))
||SUBSTR(CHAR( c5),1, p5*LENGTH(CHAR( c5)))
||SUBSTR(CHAR( c6),1, p6*LENGTH(CHAR( c6)))
||SUBSTR(CHAR( c7),1, p7*LENGTH(CHAR( c7)))
||SUBSTR(CHAR( c8),1, p8*LENGTH(CHAR( c8)))
||SUBSTR(CHAR( c9),1, p9*LENGTH(CHAR( c9)))
||SUBSTR(CHAR(c10),1,p10*LENGTH(CHAR(c10)))
||SUBSTR(CHAR(c11),1,p11*LENGTH(CHAR(c11)))
||SUBSTR(CHAR(c12),1,p12*LENGTH(CHAR(c12)))
||SUBSTR(CHAR(c13),1,p13*LENGTH(CHAR(c13)))
||SUBSTR(CHAR(c14),1,p14*LENGTH(CHAR(c14)))
-- ||SUBSTR(CHAR(c15),1,p15*LENGTH(CHAR(c15)))
-- ||SUBSTR(CHAR(c16),1,p16*LENGTH(CHAR(c16)))
-- ||SUBSTR(CHAR(c17),1,p17*LENGTH(CHAR(c17)))
-- ||SUBSTR(CHAR(c18),1,p18*LENGTH(CHAR(c18)))
-- ||SUBSTR(CHAR(c19),1,p19*LENGTH(CHAR(c19)))
-- ||SUBSTR(CHAR(c20),1,p20*LENGTH(CHAR(c20)))
AS colvalue
FROM Target
, SYSCAT.COLUMNS sc
, (VALUES ( 0, 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
,( 1, 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
,( 2, 0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
,( 3, 0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
,( 4, 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
,( 5, 0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
,( 6, 0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0)
,( 7, 0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0)
,( 8, 0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0)
,( 9, 0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0)
,(10, 0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0)
,(11, 0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0)
,(12, 0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0)
,(13, 0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0)
,(14, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0)
,(15, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0)
,(16, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0)
,(17, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0)
,(18, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0)
,(19, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1)
) P
(n,p1,p2,p3,p4,p5,p6,p7,p8,p9,p10,p11,p12,p13,p14, p15,p16,p17,p18,p19,p20)
WHERE sc.Tabschema = 'DB2ADMIN'
AND sc.Tabname = 'EMPLOYEE'
AND sc.Colno = p.n
ORDER BY
sc.Colno;
------------------------------------------------------------------------------

COLNAME COLVALUE
------------------ --------------------------------
EMPNO 000100
FIRSTNME THEODORE
MIDINIT Q
LASTNAME SPENSER
WORKDEPT E21
PHONENO 0972
HIREDATE 1980-06-19
JOB MANAGER
EDLEVEL 14
SEX M
BIRTHDATE 1956-12-18
SALARY 0026150.00
BONUS 0000500.00
COMM 0002092.00

14 record(s) selected.
Example2. Join with dummy table to make number of columns to 20.
------------------------------ Commands Entered
------------------------------
CREATE TABLE dummy_6
(c1 CHAR(1)
,c2 CHAR(1)
,c3 CHAR(1)
,c4 CHAR(1)
,c5 CHAR(1)
,c6 CHAR(1)
);
------------------------------------------------------------------------------
DB20000I The SQL command completed successfully.

------------------------------ Commands Entered
------------------------------
INSERT INTO dummy_6
VALUES
('', '', '', '', '', '');
------------------------------------------------------------------------------
DB20000I The SQL command completed successfully.

------------------------------ Commands Entered
------------------------------
WITH
Target
(c1,c2,c3,c4,c5,c6,c7,c8,c9,c10,c11,c12,c13,c14,c1 5,c16,c17,c18,c19,c20)
AS (
SELECT e.*, dum.*
FROM Employee e
, dummy_6 dum
WHERE empno = '000100'
)
SELECT
SUBSTR(sc.colname,1,18) colname
, SUBSTR(CHAR( c1),1, p1*LENGTH(CHAR( c1)))
||SUBSTR(CHAR( c2),1, p2*LENGTH(CHAR( c2)))
||SUBSTR(CHAR( c3),1, p3*LENGTH(CHAR( c3)))
||SUBSTR(CHAR( c4),1, p4*LENGTH(CHAR( c4)))
||SUBSTR(CHAR( c5),1, p5*LENGTH(CHAR( c5)))
||SUBSTR(CHAR( c6),1, p6*LENGTH(CHAR( c6)))
||SUBSTR(CHAR( c7),1, p7*LENGTH(CHAR( c7)))
||SUBSTR(CHAR( c8),1, p8*LENGTH(CHAR( c8)))
||SUBSTR(CHAR( c9),1, p9*LENGTH(CHAR( c9)))
||SUBSTR(CHAR(c10),1,p10*LENGTH(CHAR(c10)))
||SUBSTR(CHAR(c11),1,p11*LENGTH(CHAR(c11)))
||SUBSTR(CHAR(c12),1,p12*LENGTH(CHAR(c12)))
||SUBSTR(CHAR(c13),1,p13*LENGTH(CHAR(c13)))
||SUBSTR(CHAR(c14),1,p14*LENGTH(CHAR(c14)))
||SUBSTR(CHAR(c15),1,p15*LENGTH(CHAR(c15)))
||SUBSTR(CHAR(c16),1,p16*LENGTH(CHAR(c16)))
||SUBSTR(CHAR(c17),1,p17*LENGTH(CHAR(c17)))
||SUBSTR(CHAR(c18),1,p18*LENGTH(CHAR(c18)))
||SUBSTR(CHAR(c19),1,p19*LENGTH(CHAR(c19)))
||SUBSTR(CHAR(c20),1,p20*LENGTH(CHAR(c20)))
AS colvalue
FROM Target
, SYSCAT.COLUMNS sc
, (VALUES ( 0, 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
,( 1, 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
,( 2, 0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
,( 3, 0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
,( 4, 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
,( 5, 0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
,( 6, 0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0)
,( 7, 0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0)
,( 8, 0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0)
,( 9, 0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0)
,(10, 0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0)
,(11, 0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0)
,(12, 0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0)
,(13, 0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0)
,(14, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0)
,(15, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0)
,(16, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0)
,(17, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0)
,(18, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0)
,(19, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1)
) P
(n,p1,p2,p3,p4,p5,p6,p7,p8,p9,p10,p11,p12,p13,p14, p15,p16,p17,p18,p19,p20)
WHERE sc.Tabschema = 'DB2ADMIN'
AND sc.Tabname = 'EMPLOYEE'
AND sc.Colno = p.n
ORDER BY
sc.Colno;
------------------------------------------------------------------------------

COLNAME COLVALUE
------------------ ------------------------------
EMPNO 000100
FIRSTNME THEODORE
MIDINIT Q
LASTNAME SPENSER
WORKDEPT E21
PHONENO 0972
HIREDATE 1980-06-19
JOB MANAGER
EDLEVEL 14
SEX M
BIRTHDATE 1956-12-18
SALARY 0026150.00
BONUS 0000500.00
COMM 0002092.00

14 record(s) selected.
Example3. If some column(s) are null, you need some more complex
expressions for final SELECT list.
------------------------------ Commands Entered
------------------------------
WITH
Target
(c1,c2,c3,c4,c5,c6,c7,c8,c9,c10,c11,c12,c13,c14,c1 5,c16,c17,c18,c19,c20)
AS (
SELECT dpt.*, dum.*
FROM Department dpt
, dummy_15 dum
WHERE deptno = 'D01'
)
SELECT
SUBSTR(sc.colname,1,18) colname
, SUBSTR(COALESCE(CHAR( c1),''),1,(CASE WHEN c1 IS NOT NULL OR
p1=0 THEN p1 END)*LENGTH(COALESCE(CHAR( c1),'')))
||SUBSTR(COALESCE(CHAR( c2),''),1,(CASE WHEN c2 IS NOT NULL OR
p2=0 THEN p2 END)*LENGTH(COALESCE(CHAR( c2),'')))
||SUBSTR(COALESCE(CHAR( c3),''),1,(CASE WHEN c3 IS NOT NULL OR
p3=0 THEN p3 END)*LENGTH(COALESCE(CHAR( c3),'')))
||SUBSTR(COALESCE(CHAR( c4),''),1,(CASE WHEN c4 IS NOT NULL OR
p4=0 THEN p4 END)*LENGTH(COALESCE(CHAR( c4),'')))
||SUBSTR(COALESCE(CHAR( c5),''),1,(CASE WHEN c5 IS NOT NULL OR
p5=0 THEN p5 END)*LENGTH(COALESCE(CHAR( c5),'')))
||SUBSTR(COALESCE(CHAR( c6),''),1,(CASE WHEN c6 IS NOT NULL OR
p6=0 THEN p6 END)*LENGTH(COALESCE(CHAR( c6),'')))
||SUBSTR(COALESCE(CHAR( c7),''),1,(CASE WHEN c7 IS NOT NULL OR
p7=0 THEN p7 END)*LENGTH(COALESCE(CHAR( c7),'')))
||SUBSTR(COALESCE(CHAR( c8),''),1,(CASE WHEN c8 IS NOT NULL OR
p8=0 THEN p8 END)*LENGTH(COALESCE(CHAR( c8),'')))
||SUBSTR(COALESCE(CHAR( c9),''),1,(CASE WHEN c9 IS NOT NULL OR
p9=0 THEN p9 END)*LENGTH(COALESCE(CHAR( c9),'')))
||SUBSTR(COALESCE(CHAR(c10),''),1,(CASE WHEN c10 IS NOT NULL OR
p10=0 THEN p10 END)*LENGTH(COALESCE(CHAR(c10),'')))
||SUBSTR(COALESCE(CHAR(c11),''),1,(CASE WHEN c11 IS NOT NULL OR
p11=0 THEN p11 END)*LENGTH(COALESCE(CHAR(c11),'')))
||SUBSTR(COALESCE(CHAR(c12),''),1,(CASE WHEN c12 IS NOT NULL OR
p12=0 THEN p12 END)*LENGTH(COALESCE(CHAR(c12),'')))
||SUBSTR(COALESCE(CHAR(c13),''),1,(CASE WHEN c13 IS NOT NULL OR
p13=0 THEN p13 END)*LENGTH(COALESCE(CHAR(c13),'')))
||SUBSTR(COALESCE(CHAR(c14),''),1,(CASE WHEN c14 IS NOT NULL OR
p14=0 THEN p14 END)*LENGTH(COALESCE(CHAR(c14),'')))
||SUBSTR(COALESCE(CHAR(c15),''),1,(CASE WHEN c15 IS NOT NULL OR
p15=0 THEN p15 END)*LENGTH(COALESCE(CHAR(c15),'')))
||SUBSTR(COALESCE(CHAR(c16),''),1,(CASE WHEN c16 IS NOT NULL OR
p16=0 THEN p16 END)*LENGTH(COALESCE(CHAR(c16),'')))
||SUBSTR(COALESCE(CHAR(c17),''),1,(CASE WHEN c17 IS NOT NULL OR
p17=0 THEN p17 END)*LENGTH(COALESCE(CHAR(c17),'')))
||SUBSTR(COALESCE(CHAR(c18),''),1,(CASE WHEN c18 IS NOT NULL OR
p18=0 THEN p18 END)*LENGTH(COALESCE(CHAR(c18),'')))
||SUBSTR(COALESCE(CHAR(c19),''),1,(CASE WHEN c19 IS NOT NULL OR
p19=0 THEN p19 END)*LENGTH(COALESCE(CHAR(c19),'')))
||SUBSTR(COALESCE(CHAR(c20),''),1,(CASE WHEN c20 IS NOT NULL OR
p20=0 THEN p20 END)*LENGTH(COALESCE(CHAR(c20),'')))
AS colvalue
FROM Target
, SYSCAT.COLUMNS sc
, (VALUES ( 0, 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
,( 1, 0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
,( 2, 0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
,( 3, 0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
,( 4, 0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
,( 5, 0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0)
,( 6, 0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0)
,( 7, 0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0)
,( 8, 0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0)
,( 9, 0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0)
,(10, 0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0)
,(11, 0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0)
,(12, 0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0)
,(13, 0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0)
,(14, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0)
,(15, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0)
,(16, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0)
,(17, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0)
,(18, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0)
,(19, 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1)
) P
(n,p1,p2,p3,p4,p5,p6,p7,p8,p9,p10,p11,p12,p13,p14, p15,p16,p17,p18,p19,p20)
WHERE sc.Tabschema = 'DB2ADMIN'
AND sc.Tabname = 'DEPARTMENT'
AND sc.Colno = p.n
ORDER BY
sc.Colno;
------------------------------------------------------------------------------

COLNAME COLVALUE
------------------ ---------------------------
DEPTNO D01
DEPTNAME DEVELOPMENT CENTER
MGRNO -
ADMRDEPT A00
LOCATION -

5 record(s) selected.

Nov 12 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Jouke Langhout | last post by:
Hello all! For quite some time now, I've got the following problem: Access won't close properly when a user closes the application. An ACCESS process stays active and that process can only be...
2
by: Colleyville Alan | last post by:
I am using Access and have embedded the ActiveX control Formula One that came with Office 2000. (ver 3.04). I have created and formatted a spreadsheet and now I want to copy the info with...
4
by: DBQueen | last post by:
I have a subform which is in Continuous Forms view. I have added a button to the bottom of the page to move to the next record using the button wizard (result: DoCmd.GoToRecord , , acNext). I...
4
by: Bradley | last post by:
I have an A2000 database in which I have a continuous form with a tick box. There is also a text box with a conditional format that is based on the expression , if it's true then change the...
1
by: GGerard | last post by:
Hello Is there a way to use a variable in the Conditional Formatting of a Textbox? Example : I want the background of a textbox in a continuous form to change color when the value of...
4
by: hope | last post by:
Hi, How can I format a string field using Data Formatting Expression property in datagrid? For example: format last name from BROWN to Brown. Thanks
7
by: L. Scott M. | last post by:
Have a quick simple question: dim x as string x = "1234567890" ------------------------------------------------------- VB 6 dim y as string
8
by: gopal | last post by:
Hi I am trying to write to log file but the formatting of string is not properly aligned in log file result The results looks some thing like this OK move.xml Successful OK ...
8
by: Typehigh | last post by:
I have many text fields with conditional formatting applied, specifically when the condition is "Field Has Focus". Without any events associated with the fields the conditional formatting works...
4
by: midlothian | last post by:
Hello, I have conditional formatting set up on a subform based on a calculated value in the underlying query. For instance, if Sales are >$1000, the query displays "Yes," otherwise it displays...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.