New MySQL Interview Questions :: ALLInterview.com http://www.allinterview.com New MySQL Interview Questions en-us what is the difference between MyISAM and INNO DB in MySQL with the http://www.allinterview.com/showanswers/72425.html MyISAM and InnoDB are storage engines in MySql. MyISAM does not support transactions while InnoDB support it. what is the difrence between sql and pl/sql http://www.allinterview.com/showanswers/70870.html In pl/sql there is three letter extra "pl/" but it was not in sql How MySQL is different from SQL? http://www.allinterview.com/showanswers/70240.html In MySQL there is two letter extra "MY" but it was not in SQL Please suggest me any course and institute which provide training on http://www.allinterview.com/showanswers/68921.html how do i list constraints in my database by using sql server2000? http://www.allinterview.com/showanswers/68578.html i made a table whih contain a column "Photo" with image da http://www.allinterview.com/showanswers/68418.html i made a table in sql server 2000 and in a column i want to add imag http://www.allinterview.com/showanswers/68416.html suppose your url is c://documents/image1.jpg. 1st on ur form , put one this property. "ecytype=mulipleform". by this , u can upload your file on your destination. and store your path in a one variable and put it into your insert query SQL: 1. Write a queryto retrieve the author who was published a boo http://www.allinterview.com/showanswers/67946.html select * from published book where min(age); suppose server is running Suddenly down . what can you do? but i want http://www.allinterview.com/showanswers/67883.html By using clustering Active\Active Active\passive what is collation? how many types of installations in sql server? http://www.allinterview.com/showanswers/67882.html Collation is set of rules determine the how the data is sorted and compared Case sensitiy collation Accent Sensitity collation Kane sensitiy collation How many services is running in sql server? http://www.allinterview.com/showanswers/67881.html one service will mainly run in the SQL server ie:SQL Server service How can you plan the logshipping before processing? http://www.allinterview.com/showanswers/67880.html 1)for snapshot replication which agents used? 2)for Transcation repli http://www.allinterview.com/showanswers/67879.html suppose data is copie to oracle to sql by using DTS. Actully it take http://www.allinterview.com/showanswers/67878.html How can you do the fine tunning? http://www.allinterview.com/showanswers/67877.html Fine tuning is mostly done for the SELECT statements. Use the Keyword EXPLAIN in front Of your SELECT Statement. eg: EXPLAIN SELECT t1.id, t2.id FROM table1 AS t1 INNER JOIN TABLE2 AS t2 ON .....; The result will be like this +----+-----------