Log in
::
Register
::
Not logged in
Home
Tags
Articles
Editorials
Stairways
Forums
Scripts
Videos
Blogs
QotD
Books
Ask SSC
SQL Jobs
Training
Authors
About us
Contact us
Newsletters
Write for us
Content with tags
t-sql
,
sql server 7
<< Previous 20
Items 21 to 40 of 138
Next 20 >>
Running a Query Using a Text File for Input
When automating administrative actions for SQL Server, there are a number of ways to handle the workflow. Longtime SQL Server DBA Roy Carlson brings us a technique for using a text file as input to the standard SQL Server tools.
Read more...
By
Roy Carlson
2007/03/01
|
Source:
SQLServerCentral.com
|
Category:
miscellaneous
Rating:
|
Discuss
|
Briefcase
|
15,043 reads
Table Variables
New author Jambu Krishnamurthy brings us a look at table variables and how they differ from temporary tables in SQL Server 2000.
Read more...
By
Jambu Krishnamurthy
2006/11/21
|
Source:
SQLServerCentral.com
|
Category:
performance tuning
Rating:
|
Discuss
|
Briefcase
|
16,231 reads
Attach and Detach..Again
Attaching and detaching databases is old hat these days right? Do you know how to reattach a database that has more than 16 files? Or do you know what happens if you try to reattach a database that had two log files but one is missing/deleted? And even if you know the answer to that - do you know how to fix it without restoring from backup? Maybe it's not ALL old hat just yet!
Read more...
By
Andy Warren
2006/06/23 (first published: 2002/04/05)
|
Source:
SQLServerCentral.com
|
Category:
administration
Rating:
|
Discuss
|
Briefcase
|
24,178 reads
Is a Temporary Table Really Necessary?
In this article Randy Dyness shows you how to avoid temp tables whenever to maximize the performance of your queries.
Read more...
By
Randy Dyess
2008/05/30 (first published: 2002/04/09)
|
Source:
SQLServerCentral.com
|
Category:
performance tuning
Rating:
|
Discuss
|
Briefcase
|
65,382 reads
Encrypting Data With the Encrypt Function
One of the major problems in the database field is when people store sensitive data unencrypted into SQL Server. This article shows you one of the most basic ways to encrypt data to the casual viewer.
Read more...
By
Brian Knight
2006/05/29 (first published: 2001/07/17)
|
Source:
SQLServerCentral.com
|
Category:
security
Rating:
|
Discuss
|
Briefcase
|
32,879 reads
SQL 2000 DBA Toolkit Part 4
In the final installment of his series, Michael Coles examines a few other functions in his SQL Server 2000 toolkit to help you with other functions, like reading a directory on your server. Read the series and send some feedback to make this THE premier toolset for SQL Server 2000 DBAs.
Read more...
By
Michael Coles
2006/05/04
|
Source:
SQLServerCentral.com
|
Category:
administration
Rating:
|
Discuss
|
Briefcase
|
13,972 reads
Troubleshooting SQL Server with the Sysperfinfo Table
Joe discusses why he prefers command line tools over GUI, then launches into a how-to about querying sysperfinfo to resolve performance issues. Couple nice sample queries included!
Read more...
By
Joseph Sack
2006/04/21 (first published: 2003/05/14)
|
Source:
SQLServerCentral.com
|
Category:
performance tuning
Rating:
|
Discuss
|
Briefcase
|
31,948 reads
Beginning SQL Server - Limit Your Queries
Part 2 of Steve Jones' series on beginning SQL Server from the perspective of a system administrator or someone not used to working with SQL Server. If you've been designated the new administrator, take a look at this series for some help in coming up to speed on this product.
Read more...
By
Steve Jones
2006/04/14 (first published: 2004/08/19)
|
Source:
SQLServerCentral.com
|
Category:
administration
Rating:
|
Discuss
|
Briefcase
|
35,888 reads
Stored Procedure vs Triggers
Performance tuning is an ongoing battle in SQL Server, but having a little knowledge up front when designing an application can greatly reduce the efforts. Do you know which performs better: stored procedures or triggers? There aren't many places where the two are interchangeable, but knowing the impacts of each might change the way you build an application. Read about this analysis by Vijaya Kumar.
Read more...
By
Gulappa Vijaya Kumar
2006/03/31 (first published: 2004/08/30)
|
Source:
SQLServerCentral.com
|
Category:
performance tuning
Rating:
|
Discuss
|
Briefcase
|
38,873 reads
Measuring SQL Performance
One thing that often amazes me is that many SQL Server developers do not actually measure the performance of their queries. Many of them thought that you needed external tools, more or less complicated, to run against your server, and they did not have the time or inclination to learn and try these. This article will describe a couple of much easier methods of measuring performance of queries.
Read more...
By
Christoffer Hedgate
2005/12/23 (first published: 2004/04/02)
|
Source:
SQLServerCentral.com
|
Category:
performance tuning
Rating:
|
Discuss
|
Briefcase
|
32,628 reads
Execution Plans
How many of you use Execution Plans to tune your queries? Do you understand the impact of different indexes? Mr. Vijayakumar looks at his experiments with different types of indexes and their effects on the execution plan use. A great article for those of you that want to learn more about how you can tune your server for better performance.
Read more...
By
Gulappa Vijaya Kumar
2005/10/07 (first published: 2004/05/06)
|
Source:
SQLServerCentral.com
|
Category:
administration
Rating:
|
Discuss
|
Briefcase
|
51,062 reads
Logins, Users, and Roles - Getting Started
Do you know the difference between a login and a user? What's the best way to add them; Enterprise Manager, T-SQL, or SQL-DMO? In this beginner level article Andy demonstrates how to use all three methods to add logins and users and offers his view of which is the best technique.
Read more...
By
Andy Warren
2005/09/30 (first published: 2003/02/19)
|
Source:
SQLServerCentral.com
|
Category:
administration
Rating:
|
Discuss
|
Briefcase
|
35,201 reads
Push FTP with SQL Server
DTS is an incredible package for moving data in the SQL Server world. One feature that is missing, however, is the ability to send files using FTP to a remote server. This article looks at a technique for sending files via FTP.
Read more...
By
Steve Jones
2005/07/01 (first published: 2001/11/01)
|
Source:
SQLServerCentral.com
|
Category:
administration
Rating:
|
Discuss
|
Briefcase
|
36,467 reads
Using the Table Data Type in SQL Server 2000
Performing routine database maintenance such as reindexing is important for keeping your databases running at peak performance. When you use INSERT, UPDATE, and DELETE statements to modify table data, indexes can become fragmented. Index fragmentation can happen when the logical sequence of pages is disrupted or when an index page contains less than its maximum amount of data, creating a gap in the data page or index. As indexes become fragmented, you get inefficient data reads when accessing tables and slower database performance.
Read more...
By
Additional Articles
2005/03/10
|
Source:
developer.com
|
Category:
administration
Rating:
Rate this
|
Briefcase
|
3,335 reads
SQL Maintenance Plans
Do you use the maintenance plans or hate them? Wish they would do more? Curious about how they work under the hood? Cmon, you gotta read this one! Trust us, it's not another "how-to" article! Well, maybe just a little bit!
Read more...
By
Andy Warren
2005/03/04 (first published: 2002/04/11)
|
Source:
SQLServerCentral.com
|
Category:
administration
Rating:
|
Discuss
|
Briefcase
|
33,748 reads
Using Xp_sendmail With the Recipients Generated From a Query
Xp_sendmail is a great utility that SQL Server provides in order to e-mail messages directly from SQL Server, by using a valid MAPI profile. However, its syntax is rather stringent. In this article by Kunal Das, he shows you how to send messages to a list of recipients generated by a query dynamically in T-SQL.
Read more...
By
Kunal Das
2005/02/18 (first published: 2001/07/16)
|
Source:
SQLServerCentral.com
|
Category:
advanced querying
Rating:
|
Discuss
|
Briefcase
|
23,374 reads
Data Dictionary from within SQL Server 2000
Mindy explores the metadata stored in SQL 2000 to show you how to produce a simple and useful data dictionary!
Read more...
By
Mindy Curnutt
2005/02/04 (first published: 2002/02/11)
|
Source:
SQLServerCentral.com
|
Category:
installation
Rating:
|
Discuss
|
Briefcase
|
35,623 reads
Getting the Most Out of SQL Server 2000's Query Analyzer, Part III
In this article, Brian Kelley continues his series on Query Analyzer for SQL Server 2000. Query Analyzer offers a highly configurable integrated development environment (IDE). Some of the areas Brian looks at are how to modify the fonts and colors, set connection settings, choose scripting options, and customizing file and result set options. Learn how to make the most of the IDE and make it work for you.
Read more...
By
Brian Kelley
2005/01/07 (first published: 2002/08/01)
|
Source:
SQLServerCentral.com
|
Category:
administration
Rating:
|
Discuss
|
Briefcase
|
38,685 reads
Getting the Most Out of SQL Server 2000's Query Analyzer, Part II
Brian Kelley continues his series on getting the most out of SQL Server 2000's Query Analyzer. In this article he looks at the Object Browser and the Transact-SQL Debugger, new features in the 2000 Edition which can reduce development and troubleshooting time for DBAs and database developers.
Read more...
By
Brian Kelley
2004/12/31 (first published: 2002/03/05)
|
Source:
SQLServerCentral.com
|
Category:
administration
Rating:
|
Discuss
|
Briefcase
|
39,614 reads
Getting the Most out of SQL Server 2000's Query Analyzer, Part I
So you open up the tool a hundred times a day. In this article by Brian Kelley, he shows you how to get the most out of some of the known and unknown features.
Read more...
By
Brian Kelley
2004/12/23 (first published: 2002/02/21)
|
Source:
SQLServerCentral.com
|
Category:
administration
Rating:
|
Discuss
|
Briefcase
|
38,573 reads
<< Previous 20
Items 21 to 40 of 138
Next 20 >>
Tags
administration
(56)
miscellaneous
(44)
performance tuning
(38)
advanced querying
(25)
programming
(18)
configuring
(16)
stored procedures
(16)
security
(13)
strategies
(13)
monitoring
(12)
visual basic 6
(8)
database design
(7)
backup / restore
(6)
indexing
(6)
sql server 2005
(6)
counter
(4)
development
(4)
dts
(4)
installation
(4)
nums
(4)
sql-dmo
(4)
sqlinsider scripts
(4)
table of numbers
(4)
tally
(4)
triggers
(4)
user defined function (udf)
(4)
.net
(3)
arrays
(3)
basics
(3)
delimited strings
(3)
naming standards
(3)
parse
(3)
sql server 6.5
(3)
string manipulation
(3)
xml
(3)
ado
(2)
auto-growth
(2)
automated dba
(2)
best and worst practices
(2)
data file management
(2)
maintenance
(2)
maintenance and management
(2)
openxml
(2)
replication
(2)
routine database growth
(2)
routine growth
(2)
storage
(2)
updategrams
(2)
utility
(2)
worst practices
(2)
xsl
(2)
alias data types
(1)
databases
(1)
date manipulation
(1)
distributed queries
(1)
english query
(1)
grant
(1)
logins
(1)
news
(1)
permissions
(1)
product reviews
(1)
restore
(1)
reviews
(1)
role
(1)
schemas/dtds
(1)
script
(1)
scripting
(1)
service packs
(1)
sql puzzles
(1)
system development life cycle
(1)
table
(1)
user
(1)
Copyright © 2002-2013 Simple Talk Publishing. All Rights Reserved.
Privacy Policy.
Terms of Use.
Report Abuse.