Un-Answered Questions { MySQL }

What are the critical issues you have resolved in your company

1963


How can you move the master database

1767


What is RMS Migrations

2185


What is striped backup

2021


What are the method you will follow while sql installing

2115


how to get only updated, deleted , inserted records after certain interval time in mysql with out using triggers...

2019


Can u give the example by taking an unnormalized table and make that 1nf and then 25nf, and then 3 nf?

4417


I've looked but can't find a MySQL equivalent for MS SQL's xp_cmdshell. I have 7z files that I want to unzip and load into MySQL. I'm trying to write a sp to do the unzip, but I can't find a way to do that. Can anyone provide an example of a similar process in Windows? TIA.

3649


How to define numeric 9(3) in db2 table without decimal point??

2615


How internally data stores in MyISAM and INNODB table types?

2348


Explain the architecture models of SQL Server?

2098


why not null is not allowed at table level

2509


Table - Products has number of products as below Productid ProductName 1 iPhone 2 iPad 3 BlackBerry Table - SalesPersonProduct has the below records Salespersonid productid S1 1 S1 2 S1 3 S2 1 S3 2 Write a SQL query that returns the total number of sold products

2613


What is difference between Sql server and MySql database? It may be silly question but i really dont know.

1818


Please can the SQL code below be interpreted IF @xMatchCriteria='MATCH12' BEGIN IF EXISTS (Select * from #InsightData where (EmailAddress=@xDCPEmailAddress ) ) BEGIN SET @xTestMatchCriteria = @xMatchCriteria; SELECT @xCRMCustomerId=CustomerId, @xCRMDcpCustomerId=DcpCustomerId, @xCRMPortalCustomerID=PortalCustomerID,@xCRMDcpID=DcpID, @xCRMCardNumber=CardNumber, @xCRMEmailAddress=EmailAddress, @xCRMfirtLetterFirstName=firtLetterFirstName, @xCRMLastName=Surname,@xCRMAddressLine1=AddressLine1, @xCRMPostCode=PostCode FROM #InsightData where (EmailAddress=@xDCPEmailAddress ) END ELSE BEGIN SET @xTestMatchCriteria='No'+@xMatchCriteria; END END

1383