Microsoft SQL Server
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
 
Go Back   Dev Articles Community ForumsDatabasesMicrosoft SQL Server

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Display Modes
 
Unread Dev Articles Community Forums Sponsor:
  #1  
Old September 21st, 2006, 11:54 AM
costas costas is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Aug 2006
Posts: 407 costas User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 Days 3 h 19 m 11 sec
Reputation Power: 3
Newbie wants help!!

Hi,

I'm completely new to MS SQL Server! I know NOTHING!!!!I need tutorials, or just show me how to make a database.

Thanks in advance!!!

Costas

Reply With Quote
  #2  
Old September 22nd, 2006, 07:23 AM
costas costas is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Aug 2006
Posts: 407 costas User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 Days 3 h 19 m 11 sec
Reputation Power: 3
Anyone please?

Reply With Quote
  #3  
Old September 23rd, 2006, 05:58 PM
costas costas is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Aug 2006
Posts: 407 costas User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 Days 3 h 19 m 11 sec
Reputation Power: 3
Anyone?

Reply With Quote
  #4  
Old September 25th, 2006, 09:03 AM
som_dutt som_dutt is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: May 2006
Posts: 12 som_dutt User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 56 m 5 sec
Reputation Power: 0
Re:

Quote:
Originally Posted by costas
Anyone?


Hi!

Seems you have desperate need to learn SQL Server. Everything depends upon which level of knowledge you want to have in SQL Server. I meant, do you want to become expert of SQL Server, or just better knowledge to work on SQL Server for programming needs in .NET.

If you want to be expert, try - (For SQL Server 2000)
Inside SQL Server (bit of knowledge needed)
-OR-
SQL Server in 21 Days (simple book to start, no knowldge required)

You can also try this book -
MS SQL Server DBA Survival Guide

Reply us.. what level you want ? So that I can tell you about more books.

- Som Dutt
http://doeaccpapers.com
http://somdutt.blogspot.com

Reply With Quote
  #5  
Old September 25th, 2006, 09:11 AM
som_dutt som_dutt is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: May 2006
Posts: 12 som_dutt User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 56 m 5 sec
Reputation Power: 0
Quote:
Originally Posted by costas
Hi,

I'm completely new to MS SQL Server! I know NOTHING!!!!I need tutorials, or just show me how to make a database.

Thanks in advance!!!

Costas



Hi !

I forgot to reply your second problem - "just show me how to make a database".

There are several ways- (Goto Query Analyzer)
Create Database MyDB

Simply creates a database in your 'C:\Program Files\Microsoft SQL Server\MSSQL\Data'

Although, you must specify all the required things like this -

USE master
GO
CREATE DATABASE MyDB
ON
( NAME = My_DB,
FILENAME = 'f:',
SIZE = 10,
MAXSIZE = 50,
FILEGROWTH = 5 )
LOG ON
( NAME = 'DB_log',
FILENAME = 'G:',
SIZE = 5MB,
MAXSIZE = 25MB,
FILEGROWTH = 5MB )
GO

This would create the Data File in F Drive and Transaction Log in G Drive. This is mandatory practice to place Data File and Transaction Log in different Drives. (Everything depends upon your needs).

Ask anything more ..

-Som Dutt
http://doeaccpapers.com
http://somdutt.blogspot.com

Reply With Quote
  #6  
Old September 25th, 2006, 03:11 PM
costas costas is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Aug 2006
Posts: 407 costas User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 Days 3 h 19 m 11 sec
Reputation Power: 3
Well, to become an expert, first you have to just learn the SQL Server. I figured out how to make a database (in SQL Server 2005) and how to make tables in it. Now, I don't know how to interact it through VC++(select items from tables, add new data e.t.c.). If you(som butt) or anyone else could help would be appreciated!!

Costas

Reply With Quote
  #7  
Old September 26th, 2006, 05:01 AM
som_dutt som_dutt is offline
Registered User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: May 2006
Posts: 12 som_dutt User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 1 h 56 m 5 sec
Reputation Power: 0
Re:

Quote:
Originally Posted by costas
Well, to become an expert, first you have to just learn the SQL Server. I figured out how to make a database (in SQL Server 2005) and how to make tables in it. Now, I don't know how to interact it through VC++(select items from tables, add new data e.t.c.). If you(som dutt) or anyone else could help would be appreciated!!

Costas


Hi !

If you have installed SQL Server in your C drive, you can find some samples which may help you in VC++.

The location is -
C:\Program Files\Microsoft SQL Server\80\Tools\DevTools\Samples\ado\cpp\

If you have problems connecting database, reply me..

- Som Dutt
http://doeaccpapers.com
http://somdutt.blogspot.com

Reply With Quote
  #8  
Old September 26th, 2006, 07:33 AM
costas costas is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Aug 2006
Posts: 407 costas User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 Days 3 h 19 m 11 sec
Reputation Power: 3
Thanks!!!

Reply With Quote
  #9  
Old September 27th, 2006, 11:03 AM
costas costas is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Aug 2006
Posts: 407 costas User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 Days 3 h 19 m 11 sec
Reputation Power: 3
Hey som_butt, I can't find the directory you're telling about!! The problem may be that I installed it with the MS Visual Studio(I mean they were in the DVD and they were installed at the same time). Please, show some tutorials or something of how to connect into a database through C++.

Thanks Again!!

Costas

Reply With Quote
  #10  
Old October 1st, 2006, 04:52 PM
costas costas is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Aug 2006
Posts: 407 costas User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 Days 3 h 19 m 11 sec
Reputation Power: 3
Hey guys,

I need some help. Any tutorials of how to interact SQL Server 2005 through C++ would be appreciated.

Thanks in advance!

Costas

Reply With Quote
  #11  
Old October 3rd, 2006, 12:47 PM
costas costas is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Aug 2006
Posts: 407 costas User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 Days 3 h 19 m 11 sec
Reputation Power: 3
Anyone? Please I really need some help!

Reply With Quote
  #12  
Old October 7th, 2006, 03:34 AM
costas costas is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Aug 2006
Posts: 407 costas User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 3 Days 3 h 19 m 11 sec
Reputation Power: 3
Anyone? Oh, come on guys! I need help! Any tutorials or something?

Reply With Quote
Reply

Viewing: Dev Articles Community ForumsDatabasesMicrosoft SQL Server > Newbie wants help!!


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 6 hosted by Hostway
Stay green...Green IT