Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #31.8K
Ranked #4K
~1K People Reached
Favorite Forums

6 Posted Topics

Member Avatar for faizabest

[QUOTE=faizabest;1288227]how can I transfer my SQl databese (located on PHPADMIN) to sql server?[/QUOTE] You could try using the SQL Server Migration Assistant for MySQL. If you want to migrate to a SQL Server 2005, the download is here: [url]http://www.microsoft.com/downloads/details.aspx?FamilyID=c6f14640-da22-4604-aaaa-a45de4a0cd4a&displaylang=en[/url] If you want to migrate to SQL Server 2008, the download …

Member Avatar for Brian Swan
0
103
Member Avatar for Odubz

What is the query you are using to pull data from the database? (Are you already using the UNIQUE clause?) -Brian

Member Avatar for Odubz
0
172
Member Avatar for Aussie_Here

What error do you get when you execute your code? (That would help in figuring out the problem.) -Brian

Member Avatar for Aussie_Here
0
111
Member Avatar for missbusiness

This is by no means a complete answer (that will depend on your exact scenario), but it should get you started: [CODE]CREATE TABLE [dbo].[Table_2]( [Num1] [decimal](18,9) , [Num2] [decimal](18,9) , [Quotient] AS CAST(Num1/Num2 AS [decimal](18,9)) )[/CODE] This should allow you to do this: [CODE]insert into Table_2 (Num1, Num2) values (1,2)[/CODE] …

Member Avatar for Brian Swan
0
112
Member Avatar for vedro

Maybe I don't understand the scenario completely, but if the database is small, I think you could just backup the first database and restore it in a new location. This would preserve any relationships automatically. These links might be helpful in understanding BACKUP and RESTORE: [url]http://msdn.microsoft.com/en-us/library/ms186865.aspx[/url] [url]http://msdn.microsoft.com/en-us/library/ms186858.aspx[/url] Hope that helps. …

Member Avatar for vedro
0
339
Member Avatar for Campbel

I don't think there is any way to directly access the .mdf file with PHP...I think you need to attach it to a database server. You can download SQL Server Express for free: 2005 edition: [url]http://www.microsoft.com/downloads/details.aspx?FamilyID=220549B5-0B07-4448-8848-DCC397514B41&displaylang=en[/url] 2008 edition: [url]http://www.microsoft.com/express/Database/[/url] You'll also want to download the tools (Sql Server Management Studio …

Member Avatar for phpbeginners
0
329

The End.