Un-Answered Questions { MySQL }

What are the critical issues you have resolved in your company

1983


How can you move the master database

1787


What is RMS Migrations

2205


What is striped backup

2043


What are the method you will follow while sql installing

2140


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

2040


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

4443


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.

3669


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

2635


How internally data stores in MyISAM and INNODB table types?

2375


Explain the architecture models of SQL Server?

2117


why not null is not allowed at table level

2537


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

2628


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

1842


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

1403