Un-Answered Questions { MySQL }

What are the critical issues you have resolved in your company

1751


How can you move the master database

1515


What is RMS Migrations

1955


What is striped backup

1822


What are the method you will follow while sql installing

1864


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

1801


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

4203


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.

3432


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

2389


How internally data stores in MyISAM and INNODB table types?

2081


Explain the architecture models of SQL Server?

1894


why not null is not allowed at table level

2284


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

2410


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

1546


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

1150