Click here to Skip to main content
15,886,788 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
here are the footsteps that i maid:
database
Tables
Add New Table
create the table with(ex:id, user,pass)
CTRL + S and save(on the toolbar) doesn't work.

what i have to do, to save this table that i created.

I am using VS12.
Posted
Updated 11-Sep-18 9:09am
Comments
Member 10007226 23-Apr-13 8:47am    
Check Google. Will be Very Helpfull. It would Benefiate if you do a Little R&D at the Beginnning
Nillo123 23-Apr-13 10:54am    
i did research of all most every thing about this problem, but they don't have the answer that i need.. for exemple:
http://msdn.microsoft.com/en-us/library/hh272695(v=VS.103).aspx
Nillo123 23-Apr-13 10:55am    
i just want to save the table..but i can't, and i don't no why ....

its a bug? :D
Member 10007226 23-Apr-13 12:16pm    
Is there any error mssage you get While Saving If so let me know . What kind of message is that And Also Check your MSDB table . If possible .
Nillo123 23-Apr-13 12:29pm    
i don't get any message of error.
when i press save button on the toolbar -> opens a window-> saving the table like a normal filed.
for example: when you finished your work, in Microsoft Office Word, you click save, and pops up a window , where you want to save the file.. its exactly the same thing what happen to me, when i tried to save the table..

Try the way its listed below
Create database dbrakesh
Click F5-

Create table hcaubey_rakesh(id int,Name varchar(50))
Click F5

I meant to say .Hit F5 or click on Execute on above panel .
 
Share this answer
 
v2
Hi
For create Database use :
SQL
CREATE DATABASE database_name

And for create Table use :
SQL
CREATE TABLE table_name (column_name1 data_type,column_name2 data_type)

For more information please check the follow of link:
http://www.w3schools.com/SQl/sql_create_table.asp

Best Regards.
 
Share this answer
 
v2
when you create a "table.dbo", you must click on the "update" button and next -> update database..and "voilà" :)
thanks anyway, for helping me. ;)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900