Click here to Skip to main content
15,912,400 members
Home / Discussions / Database
   

Database

 
AnswerRe: Exporting data from sqlserver to Excel Pin
kubben17-Mar-07 2:20
kubben17-Mar-07 2:20 
GeneralRe: Exporting data from sqlserver to Excel Pin
Tech_spidy17-Mar-07 3:50
Tech_spidy17-Mar-07 3:50 
QuestionCan i Copy paste sql table Pin
nikhil123417-Mar-07 0:21
nikhil123417-Mar-07 0:21 
AnswerRe: Can i Copy paste sql table Pin
mghiassi17-Mar-07 7:00
mghiassi17-Mar-07 7:00 
GeneralRe: Can i Copy paste sql table Pin
Ziyad Mohammad18-Mar-07 20:52
Ziyad Mohammad18-Mar-07 20:52 
GeneralRe: Can i Copy paste sql table Pin
mghiassi19-Mar-07 8:30
mghiassi19-Mar-07 8:30 
Questionstored procedure vs sql query Pin
Tauseef A16-Mar-07 16:07
Tauseef A16-Mar-07 16:07 
AnswerRe: stored procedure vs sql query Pin
kubben16-Mar-07 16:57
kubben16-Mar-07 16:57 
A stored procedure is a cached pre compiled sql statement that exists on the database. It can have parameters or not, it can return result sets or not.
A Sql Query is a sql statement that you pass to the database.
A view is a subset or whole table or joined tables that you want to expose. Often if you don't want to do the same join over and over again you can create a view that does the join and only has the columns you are interested in. Some views are updateable, normally when they are only of a single table. Some people use views to control what other users have access to. So the user does not have access to the table, but the do have access to the view.

You can always do some searching on the net to get more info:
http://msdn2.microsoft.com/en-us/library/ms189826.aspx[^]

Hope that helps.
Ben
Questionmaster data - 'These columns don't currently have unique values' Pin
freeisgood16-Mar-07 13:11
freeisgood16-Mar-07 13:11 
AnswerRe: master data - 'These columns don't currently have unique values' Pin
PlayByTheRules16-Mar-07 23:58
PlayByTheRules16-Mar-07 23:58 
QuestionReturn output parameter and dataset Pin
Ridge Howison16-Mar-07 11:09
Ridge Howison16-Mar-07 11:09 
AnswerRe: Return output parameter and dataset Pin
kubben16-Mar-07 12:47
kubben16-Mar-07 12:47 
QuestionAutomatically generating scripts? [modified] Pin
LongRange.Shooter16-Mar-07 7:00
LongRange.Shooter16-Mar-07 7:00 
AnswerRe: Automatically generating scripts? Pin
Mark J. Miller19-Mar-07 5:57
Mark J. Miller19-Mar-07 5:57 
GeneralRe: Automatically generating scripts? Pin
LongRange.Shooter20-Mar-07 6:27
LongRange.Shooter20-Mar-07 6:27 
QuestionMultiple Instances - SQLSERVER Pin
clint198216-Mar-07 5:00
clint198216-Mar-07 5:00 
AnswerRe: Multiple Instances - SQLSERVER Pin
Mike Dimmick16-Mar-07 6:22
Mike Dimmick16-Mar-07 6:22 
GeneralRe: Multiple Instances - SQLSERVER Pin
clint198216-Mar-07 8:26
clint198216-Mar-07 8:26 
Questionstored procedures Vs dynamic SQL Pin
digsy_16-Mar-07 3:40
digsy_16-Mar-07 3:40 
AnswerRe: stored procedures Vs dynamic SQL Pin
Pete O'Hanlon16-Mar-07 3:44
mvePete O'Hanlon16-Mar-07 3:44 
GeneralRe: stored procedures Vs dynamic SQL Pin
digsy_16-Mar-07 3:56
digsy_16-Mar-07 3:56 
GeneralRe: stored procedures Vs dynamic SQL Pin
Pete O'Hanlon16-Mar-07 4:09
mvePete O'Hanlon16-Mar-07 4:09 
GeneralRe: stored procedures Vs dynamic SQL Pin
digsy_16-Mar-07 4:51
digsy_16-Mar-07 4:51 
GeneralRe: stored procedures Vs dynamic SQL Pin
Pete O'Hanlon16-Mar-07 13:02
mvePete O'Hanlon16-Mar-07 13:02 
AnswerRe: stored procedures Vs dynamic SQL Pin
Mike Dimmick16-Mar-07 6:44
Mike Dimmick16-Mar-07 6:44 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.