ورود به حساب

نام کاربری گذرواژه

گذرواژه را فراموش کردید؟ کلیک کنید

حساب کاربری ندارید؟ ساخت حساب

ساخت حساب کاربری

نام نام کاربری ایمیل شماره موبایل گذرواژه

برای ارتباط با ما می توانید از طریق شماره موبایل زیر از طریق تماس و پیامک با ما در ارتباط باشید


09117307688
09117179751

در صورت عدم پاسخ گویی از طریق پیامک با پشتیبان در ارتباط باشید

دسترسی نامحدود

برای کاربرانی که ثبت نام کرده اند

ضمانت بازگشت وجه

درصورت عدم همخوانی توضیحات با کتاب

پشتیبانی

از ساعت 7 صبح تا 10 شب

دانلود کتاب Beginning SQL Server 2008 for Developers: From Novice to Professional

دانلود کتاب شروع SQL Server 2008 برای توسعه دهندگان: از مبتدی تا حرفه ای

Beginning SQL Server 2008 for Developers: From Novice to Professional

مشخصات کتاب

Beginning SQL Server 2008 for Developers: From Novice to Professional

دسته بندی: آموزشی
ویرایش: 1 
نویسندگان:   
سری:  
ISBN (شابک) : 9781590599587, 1590599586 
ناشر: apress 
سال نشر: 2008 
تعداد صفحات: 497 
زبان: English 
فرمت فایل : PDF (درصورت درخواست کاربر به PDF، EPUB یا AZW3 تبدیل می شود) 
حجم فایل: 17 مگابایت 

قیمت کتاب (تومان) : 41,000



ثبت امتیاز به این کتاب

میانگین امتیاز به این کتاب :
       تعداد امتیاز دهندگان : 7


در صورت تبدیل فایل کتاب Beginning SQL Server 2008 for Developers: From Novice to Professional به فرمت های PDF، EPUB، AZW3، MOBI و یا DJVU می توانید به پشتیبان اطلاع دهید تا فایل مورد نظر را تبدیل نمایند.

توجه داشته باشید کتاب شروع SQL Server 2008 برای توسعه دهندگان: از مبتدی تا حرفه ای نسخه زبان اصلی می باشد و کتاب ترجمه شده به فارسی نمی باشد. وبسایت اینترنشنال لایبرری ارائه دهنده کتاب های زبان اصلی می باشد و هیچ گونه کتاب ترجمه شده یا نوشته شده به فارسی را ارائه نمی دهد.


توضیحاتی درمورد کتاب به خارجی



فهرست مطالب

Beginning SQL Server 2008 for Developers: From Novice to Professional......Page 1
Contents at a Glance......Page 7
Contents......Page 9
About the Author......Page 19
About the Technical Reviewer......Page 21
Acknowledgments......Page 23
Prerequisites......Page 25
Contacting the Author......Page 26
SQL Server 2008 Overview and Installation......Page 27
Why SQL Server 2008?......Page 28
Evolution of SQL Server......Page 29
Memory......Page 30
Installation......Page 31
Beginning the Install......Page 32
Choosing the Features to Install......Page 34
Naming the Instance......Page 36
Choosing Service Accounts......Page 37
Selecting an Authentication Mode......Page 38
Defining the Data Directories......Page 39
Creating the Reporting Services Database......Page 40
Configuring Error and Usage Reports......Page 42
Services Accounts......Page 43
Looking at the Authentication Mode......Page 44
Windows Authentication Mode......Page 45
The sa Login......Page 48
Summary......Page 49
A Quick Overview of SSMS......Page 51
General Node......Page 59
Fonts and Colors Node......Page 60
Keyboard Node......Page 61
Source Control Node......Page 62
General......Page 63
Tabs......Page 64
General......Page 65
Advanced......Page 66
General......Page 67
Results to Grid......Page 68
Results to Text......Page 69
Commands......Page 70
Scripting......Page 71
Table and Database Designers......Page 72
Maintenance Plans......Page 73
Query Editor......Page 74
Summary......Page 76
Database Design and Creation......Page 77
Defining a Database......Page 78
master......Page 79
tempdb......Page 80
AdventureWorks/AdventureWorksDW......Page 81
Backups......Page 82
Gathering the Data......Page 83
Determining the Information to Store in the Database......Page 85
Customers......Page 86
External and Ignored Information......Page 87
Foreign/Referencing Key......Page 88
Relationships and Referential Integrity......Page 89
Types of Relationships......Page 90
More on Foreign Keys......Page 92
Normalization......Page 93
Normalization Forms......Page 94
Third Normal Form......Page 95
Denormalization......Page 96
Creating a Database in SQL Server Management Studio......Page 97
Dropping the Database in SQL Server Management Studio......Page 110
Creating a Database in a Query Pane......Page 112
Summary......Page 115
Logins......Page 117
Fixed Server Roles......Page 127
Database Roles......Page 129
Application Roles......Page 130
Schemas......Page 133
Before You Can Proceed with Your Solution......Page 135
Declarative Management Framework......Page 139
Summary......Page 143
What Is a Table?......Page 145
SQL Server Data Types......Page 146
varchar......Page 147
bigint......Page 148
money......Page 149
time......Page 150
binary......Page 151
Columns Are More Than Simple Data Repositories......Page 152
The Use of NULL Values......Page 153
Creating a Table in SQL Server Management Studio......Page 154
Creating a Table Through the Query Editor......Page 160
Creating a Table: Using a Template......Page 162
Creating and Altering a Template......Page 165
The ALTER TABLE Statement......Page 166
Defining the Remaining Tables......Page 167
Setting a Primary Key......Page 168
Creating a Relationship......Page 169
Check Existing Data on Creation......Page 173
Building a Relationship via T-SQL......Page 174
Summary......Page 176
What Is an Index?......Page 177
Clustered......Page 178
Uniqueness......Page 179
Using Low-Maintenance Columns......Page 180
Looking for a Range of Information......Page 181
Choosing Unsuitable Data......Page 182
Reviewing Your Indexes for Performance......Page 183
Creating an Index with the Table Designer......Page 184
The CREATE INDEX Syntax......Page 187
IGNORE_DUP_KEY......Page 188
Creating an Index in Query Editor: Template......Page 189
Creating an Index in Query Editor: SQL Code......Page 193
Dropping an Index......Page 196
Altering an Index in Query Editor......Page 197
Diagramming the Database......Page 198
The SQL Server Database Diagram Tool......Page 199
The Default Database Diagram......Page 201
The Database Diagram Toolbar......Page 203
Summary......Page 205
Database Backups, Recovery, and Maintenance......Page 207
Transaction Logs......Page 208
Backup Strategies......Page 209
Taking a Database Offline......Page 211
Backing Up the Data......Page 213
Backing Up the Database Using T-SQL......Page 217
Transaction Log Backup Using T-SQL......Page 223
Restoring Using SQL Server Management Studio......Page 226
Restoring Using T-SQL......Page 230
Detaching and Attaching a Database......Page 233
Detaching and Attaching Using SQL Server Management Studio......Page 234
Detaching and Attaching Using T-SQL......Page 238
Producing SQL Script for the Database......Page 241
Maintaining Your Database......Page 246
Creating a Database Maintenance Plan......Page 247
Setting Up Database Mail......Page 260
Modifying a Maintenance Plan......Page 269
Summary......Page 273
The T-SQL INSERT Command Syntax......Page 275
INSERT SQL Command......Page 276
Default Values......Page 278
Using NULL Values......Page 279
DBCC CHECKIDENT......Page 283
Column Constraints......Page 284
Inserting Several Records at Once......Page 289
Retrieving Data......Page 290
Using SQL Server Management Studio to Retrieve Data......Page 291
The SELECT Statement......Page 292
The First Searches......Page 294
Varying the Output Display......Page 296
Limiting the Search: the Use of WHERE......Page 298
SET ROWCOUNT n......Page 301
TOP n......Page 302
TOP n PERCENT......Page 303
String Functions......Page 304
Order! Order!......Page 305
The LIKE Operator......Page 307
Creating Data: SELECT INTO......Page 309
Who Can Add, Delete, and Select Data......Page 310
Updating Data......Page 315
The UPDATE Command......Page 316
Updating Data Within Query Editor......Page 317
Transactions......Page 320
BEGIN TRAN......Page 321
Updating Data: Using Transactions......Page 322
Nested Transactions......Page 324
DELETE Syntax......Page 326
Using the DELETE Statement......Page 327
Truncating a Table......Page 329
Summary......Page 330
Why a View?......Page 333
Using Views for Security......Page 334
Creating a View: SQL Server Management Studio......Page 335
Creating a View Using a View......Page 341
CREATE VIEW Syntax......Page 347
Creating a View: a Query Editor Pane......Page 348
Creating a View: SCHEMABINDING......Page 349
Indexing a View......Page 351
Summary......Page 353
Stored Procedures and Functions......Page 355
CREATE PROCEDURE Syntax......Page 356
Returning a Set of Records......Page 358
Creating a Stored Procedure: Management Studio......Page 359
Using RETURN......Page 363
IF . . . ELSE......Page 367
WHILE . . . BREAK Statement......Page 368
CASE Statement......Page 371
Bringing It All Together......Page 373
User-Defined Functions......Page 375
Table-Valued Functions......Page 376
Considerations When Building Functions......Page 377
Summary......Page 379
Using More Than One Table......Page 381
Variables......Page 386
Temporary Tables......Page 388
COUNT/COUNT_BIG......Page 390
SUM......Page 391
MAX/MIN......Page 392
Grouping Data......Page 393
HAVING......Page 395
Functions......Page 396
DATEADD()......Page 397
DATEDIFF()......Page 398
DATEPART()......Page 399
String......Page 400
CHAR()......Page 401
LOWER()......Page 402
RIGHT()......Page 403
STR()......Page 404
SUBSTRING()......Page 405
CASE WHEN. . .THEN. . .ELSE. . .END......Page 406
CAST()/CONVERT()......Page 407
ISDATE()......Page 408
ISNUMERIC()......Page 409
RAISERROR......Page 410
Error Handling......Page 413
@@ERROR......Page 414
TRY. . .CATCH......Page 415
Summary......Page 419
Subqueries......Page 421
IN......Page 423
Tidying Up the Loose End......Page 424
The APPLY Operator......Page 425
CROSS APPLY......Page 426
OUTER APPLY......Page 427
Common Table Expressions......Page 428
Recursive CTE......Page 429
PIVOT......Page 431
UNPIVOT......Page 432
Ranking Functions......Page 433
ROW_NUMBER......Page 434
RANK......Page 436
DENSE_RANK......Page 437
PowerShell Within SQL Server......Page 438
Summary......Page 442
What Is a Trigger?......Page 443
The DML Trigger......Page 444
CREATE TRIGGER Syntax for DML Triggers......Page 445
Why Not Use a Constraint?......Page 446
Creating a DML FOR Trigger......Page 447
Using UPDATE()......Page 451
Using COLUMNS_UPDATED()......Page 455
DDL Triggers......Page 458
Database-Scoped Events......Page 459
DDL Statements with Server Scope......Page 460
EVENTDATA()......Page 461
Summary......Page 464
Reporting Services Architecture......Page 465
Configuring Reporting Services......Page 467
Building Your First Report Using Report Designer......Page 474
Summary......Page 483
Index......Page 485




نظرات کاربران