Created
October 2, 2012 01:57
-
-
Save ChrisRisner/3815715 to your computer and use it in GitHub Desktop.
Create Mobile Service with Existing db
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ALTER TABLE fakeblog.entries | |
ADD PRIMARY KEY (id); | |
ALTER TABLE fakeblog.Users | |
ADD PRIMARY KEY (id); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE SCHEMA fakeblog; | |
ALTER SCHEMA fakeblog TRANSFER dbo.entries; | |
ALTER SCHEMA fakeblog TRANSFER dbo.USERS; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment