Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
sql_buddy
Starting Member
41 Posts |
Posted - 2009-06-29 : 01:51:02
|
| what is T-sql basically?is there any concept of pipeline in T-sql |
|
|
Nageswar9
Aged Yak Warrior
600 Posts |
Posted - 2009-06-29 : 02:18:52
|
| All applications that communicate with an instance of SQL Server do so by sending Transact-SQL statements to the server.see the books in online for T-sql |
 |
|
|
khtan
In (Som, Ni, Yak)
17689 Posts |
Posted - 2009-06-29 : 04:13:11
|
http://en.wikipedia.org/wiki/T-sql KH[spoiler]Time is always against us[/spoiler] |
 |
|
|
rajdaksha
Aged Yak Warrior
595 Posts |
Posted - 2009-06-29 : 06:00:35
|
| Transact-SQL is central to the use of Microsoft® SQL Server™. All applications that communicate with SQL Server do so by sending Transact-SQL statements to the server, regardless of an application's user interface. Transact-SQL is generated from many kinds of applications, including: General office productivity applications.Applications that use a graphical user interface (GUI) to allow users to select the tables and columns from which they want to see data.Applications that use general language sentences to determine what data a user wants to see.Line of business applications that store their data in SQL Server databases. These can include both applications from other vendors and applications written in-house.Transact-SQL scripts that are run using utilities such as osql.Applications created with development systems such as Microsoft Visual C++®, Microsoft Visual Basic®, or Microsoft Visual J++® that use database application programming interfaces (APIs) such as ADO, OLE DB, and ODBC.Web pages that extract data from SQL Server databases.Distributed database systems from which data from SQL Server is replicated to various databases or distributed queries are executed.Data warehouses in which data is extracted from online transaction processing (OLTP) systems and summarized for decision-support analysis. byraj...:) |
 |
|
|
|
|
|