← prev | next →
2020-11-03 09:46:02
I mean, videos or files etc..
Master Yoda 2020-11-03 12:53:30
2020-11-03 09:46:02
I mean, videos or files etc..
Download courses from Torrent. Use vpn
2020-11-03 13:57:42
Master Yoda 2020-11-03 12:53:30
Download courses from Torrent. Use vpn
Thanks a lot!
2020-11-05 14:37:07
Oh, thanks a lot for your support and encouragement! This is the best channel/group that I’ve ever had in my Telegram life.
® star 2020-11-05 14:43:28
Hello, do u have doc for MySQL replication?
2020-11-05 14:48:01
Nope. I’d be glad to receive if you’ve any kinda so-related things to share.
® star 2020-11-05 14:55:01
https://dbaprakash.wordpress.com/2016/03/26/mysql-replication-documentca/
MySQL Replication Document@CA –
Prakash’s DBA BlogAs Root User on Server 1 (192.168.210.116) ========================================== cd /var/lib/mysql mv auto.cnf auto_.cnf mkdir -p /Data/mysqldata chown -R mysql:mysql /mysqldata chmod -R 777 /…
® star 2020-11-05 14:55:12
I got
Murali 2020-11-06 16:31:35
Team, can any one advise on below error
Table is marked as crashed and should be repaired
Murali 2020-11-06 16:31:53
How to get it crashed table
MasterZiv 2020-11-06 18:04:36
Murali 2020-11-06 16:31:53
How to get it crashed table
For example by turning the power off while it runs or by moving a big magnet back and forth along the main DB disk…
Deb_575 2020-11-06 19:59:26
Murali 2020-11-06 16:31:53
How to get it crashed table
Probably corrupted
If myisam then repair it
If Innodb try to perform force recovery
Master Yoda 2020-11-06 21:30:05
Murali 2020-11-06 16:31:35
Team, can any one advise on below error
Table is marked as crashed and should be repaired
Is it myisam or innodb?
Master Yoda 2020-11-06 21:30:38
Mysqlcheck can help
Master Yoda 2020-11-06 21:31:49
Murali 2020-11-06 16:31:35
Team, can any one advise on below error
Table is marked as crashed and should be repaired
Server is starting or not?
Murali 2020-11-07 03:30:47
Thank you so much friends, I’ve fixed using repair on corrupted table. Now it’s working
2020-11-07 11:35:56
Hi guys..
Does anyone check if my er diagram has a logical problem or not?
MasterZiv 2020-11-07 15:03:41
2020-11-07 11:35:56
Hi guys..
Does anyone check if my er diagram has a logical problem or not?
This is actually not possible without knowing much about the subject area.
OmsaiV 2020-11-07 15:04:10
Hi i
dev1lroot 2020-11-08 08:18:19
The table:
————————–
| id | nick | top | time |
————————–
Top-20 voters by total in month time range
SELECT
`nick`,
COUNT(*) AS `total`,
MAX(`time`) AS `lastvote`
FROM
`voters`
WHERE
`time` > $thismonth
GROUP BY
`nick`
ORDER BY
`total`
DESC,
`lastvote`
LIMIT 20
Illegal duplications where nick top, time are the same
SELECT
`nick`,
`top`,
`time`,
COUNT(*)
FROM
`voters`
GROUP BY
`nick`,
`top`,
`time`
HAVING COUNT(*) > 1
How to subtract second query COUNTS from first query total by nick
2020-11-08 10:41:18
hi , how structure is good for online chat database?
can everybody help me?
piterden 2020-11-08 10:49:08
2020-11-08 10:41:18
hi , how structure is good for online chat database?
can everybody help me?
It depends on chat’s functionality
Makgato 2020-11-08 17:07:57

Guys i am beginner can anyone tell me the meaning of line number 5 up to line 8
piterden 2020-11-08 17:08:45
Column id, integer value, which is the primary key
piterden 2020-11-08 17:12:39
Makgato 2020-11-08 17:07:57
Guys i am beginner can anyone tell me the meaning of line number 5 up to line 8
It is columns definition
Makgato 2020-11-08 17:14:38
piterden 2020-11-08 17:12:39
It is columns definition
Ok thanks so what is the meaning of varchar(30)
piterden 2020-11-08 17:15:04
Read about mysql data types
Makgato 2020-11-08 17:15:44
piterden 2020-11-08 17:15:04
Read about mysql data types
Ok thanks
MasterZiv 2020-11-08 17:17:27
Makgato 2020-11-08 17:14:38
Ok thanks so what is the meaning of varchar(30)
Each line is
Field name, data type and optional null/not null flag and then optionally an inline constraint definition
Makgato 2020-11-08 17:20:32
Is there anyone who have better notes for it so that i can study using them
piterden 2020-11-08 17:24:24
Makgato 2020-11-08 17:20:32
Is there anyone who have better notes for it so that i can study using them
The thing is you wouldn’t learn something if you would have not your notes, but I swear you will learn it right after you make your own.
asiah_19 2020-11-09 14:35:14
Hello guys nice to meet you all
asiah_19 2020-11-09 14:41:16
i wanna ask something. I have this query and the result table. Then I wanna make case syntax where avg_score > 90 then A, avg_score 70-90 then B, and else C. How should i write the query?
asiah_19 2020-11-09 14:41:17
asiah_19 2020-11-09 14:41:17
Deb_575 2020-11-09 14:57:52
Is it recommend to increase the innodb_lock_wait_timeout variable for bulk inserts or updates from the default value? I am getting this error ‘lock wait timeout exceeded; try restarting transaction’
MasterZiv 2020-11-09 15:00:29
asiah_19 2020-11-09 14:41:16
i wanna ask something. I have this query and the result table. Then I wanna make case syntax where avg_score > 90 then A, avg_score 70-90 then B, and else C. How should i write the query?
this is incorrect query.
Wrong GROUP BY
MasterZiv 2020-11-09 15:01:47
asiah_19 2020-11-09 14:41:16
i wanna ask something. I have this query and the result table. Then I wanna make case syntax where avg_score > 90 then A, avg_score 70-90 then B, and else C. How should i write the query?
https://dev.mysql.com/doc/refman/5.7/en/case.html
https://www.mysqltutorial.org/mysql-case-function/
MySQL CASE Expressions Explained By Practical Examples –
MySQL TutorialIn this tutorial, you will learn how to use the MySQL CASE expression to add if-else logic to SELECT, WHERE, and ORDER BY of a query.
MasterZiv 2020-11-09 15:02:13
Deb_575 2020-11-09 14:57:52
Is it recommend to increase the innodb_lock_wait_timeout variable for bulk inserts or updates from the default value? I am getting this error ‘lock wait timeout exceeded; try restarting transaction’
no.
asiah_19 2020-11-09 15:03:24
MasterZiv 2020-11-09 15:01:47
https://dev.mysql.com/doc/refman/5.7/en/case.html
https://www.mysqltutorial.org/mysql-case-function/
Okay i will check it out. Thanks!
Deb_575 2020-11-09 15:07:32
MasterZiv 2020-11-09 15:02:13
no.
Why so? Can I not increase it to say 120 sec instead of default 50 sec.
What is the other solution for the mentioned error?
MasterZiv 2020-11-09 15:08:36
Deb_575 2020-11-09 15:07:32
Why so? Can I not increase it to say 120 sec instead of default 50 sec.
What is the other solution for the mentioned error?
You can increase it, but this will not help anything
MasterZiv 2020-11-09 15:09:29
Deb_575 2020-11-09 15:07:32
Why so? Can I not increase it to say 120 sec instead of default 50 sec.
What is the other solution for the mentioned error?
The solution for your error is written in your error message: restart your transaction.
Deb_575 2020-11-09 15:11:49
Off business hours it’s not possible to get up and restart the transactions restarting is very straight forward. I need performance or optimization related soultion so that this doesnot happen repeatedly
MasterZiv 2020-11-09 15:58:18
Deb_575 2020-11-09 15:11:49
Off business hours it’s not possible to get up and restart the transactions restarting is very straight forward. I need performance or optimization related soultion so that this doesnot happen repeatedly
If not, you should dig into details, this is actually a deadlock, you should find this situation out, analyze, and probably only then it will be possible to fix or avoid this situation.
adinath_kamode 2020-11-09 19:39:21
Hello All,
Storing LOBs in DB is an issue, what options MySQL offer to store them outside of DB and does not affect db performance.
Ajay 2020-11-09 20:21:32
Does anyone have any idea of how much space does indexing needs depending the size of the table in mysql?
MasterZiv 2020-11-09 21:10:42
adinath_kamode 2020-11-09 19:39:21
Hello All,
Storing LOBs in DB is an issue, what options MySQL offer to store them outside of DB and does not affect db performance.
MySQL offers to store blobs outside the DB, or inside the DB.
MasterZiv 2020-11-09 21:13:44
Ajay 2020-11-09 20:21:32
Does anyone have any idea of how much space does indexing needs depending the size of the table in mysql?
This is unpredictable this way.
This depends on the size of the fields wich go into the index and the size of the primary key, and the number of rows in the table.
Does not depend on the size of the table in bytes.
Opensource 2020-11-09 22:03:46
Hello All, I am trying to provide select access on information_schema to user, it is giving error access denied for user root@localhost to database information_schema..
I hope from root user it wouldn’t throw this error as it is having super privilege..
Please help me on this
← prev | next →