Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
VB VB (1648)
VB.net VB.net (736)
C# C# (15)
ASP.net ASP.net (779)
ASP ASP (41)
VC++ VC++ (25)
PHP PHP (0)
JAVA JAVA (4)
JScript JScript (5)
  Database
» SQL Server (708)
» ORACLE (5)
» MySQL (0)
» DB2 (0)
Automation
» C/C++/ASM (11)
» Microcontroller (1)
» Circuit Design (0)
OS/Networking
» Networking (5)
» Unix/Linux (1)
» WinNT/2k/2003 (8)
Graphics
» Flash (0)
» Maya (0)
» 3D max (0)
» Photoshop (0)
Links
» ASP.net (2)
» PC Interfacing (1)
» Networking (4)
» SQL Server (4)
» VB (23)
» VB.net (4)
» VC (3)
» HTML/CSS/JavaScript (10)
Tools
» Regular Expr Tester
» Free Tools

(Page 11 of 24) 708 Result(s) found 

 

How to find version and Service Pack applied on the SQL Server 2000/7.0/6.5
Total Hit (2606) Sometimes you need to find out which service pack version you are running on SQL Server. First, run this command in ISQL/W or Query Analyzer: SELECT @@Version Once you have the version number, then match it to the list below to find which SQL Server service pack you are using. 2000.8.00.76 ....Read More
Rating
How to export table or Query output to a file using BCP
Total Hit (2814) To export Query result to a file use following command to your command prompt «code LangId=6»EXEC master..xp_cmdshell 'bcp "select * from pubs..authors" queryout c:\authors.txt -c -Usa -Pmypassword'«/code» To export table to a file use following command to your command prompt «code LangId ....Read More
Rating
Quickly copy records between tables with same structure
Total Hit (2948) The SQL language offers a simple and effective way to quickly move all records from a table to another table with same field structure, that is same fields' name, type and position: «Code LangId=6» INSERT Customers SELECT * FROM New_Customers -- you can optionally complete the move by -- delet ....Read More
Rating
Number of days between a given date & 3rd sunday of current month.
Total Hit (1436) This T-SQL script shows how to calculate the number of days between a given date and the 3rd sunday of the current month. This can be easily modified to accomodate count till 3rd saturday or 3rd monday of current month & so on.
Rating
How to restore a SQL Server database marked as "suspect"
Total Hit (10670) At times a database appears to be marked as "suspect" in the Enterprise Manager. SQL Server marks a database as suspect with it can't access the database. What happens at a low level is that SQL Server sets one of the bits in the status field in the sysdatabases table. In general, this problem ha ....Read More
Rating
Sorting only based on the numeric digits in a column containing alpha-numeric values of the form nnnXXX.
Total Hit (1841) An example for using a CASE expression in an ORDER BY clause. This solution solves the problem of sorting based on the numeric values in a column. The column contains strings of the format 'nnnXXXX' where 'n' represents a numeric digit & 'X' represents any non-numeric character. ....Read More
Rating
Generate Insert Statements
Total Hit (7849)
Rating
How to generate sequence numbers based on values in multiple columns?
Total Hit (1509) This is similar to doing an ORDER BY on the required columns & counting the rows from the top.
Rating
Get only one matching row for each name from several address rows.
Total Hit (1460) This is the fastest way to get say only one matching address row for each person out of a set of duplicates. This logic assumes that you do not care which address row you want to display. It can be easily extended to include other checks say based on the last added address row etc. ....Read More
Rating
Get listing of files in a specified directory or a network share. This stored procedure also return some useful information (e.g. date, times, directory, filesize, filename)
Total Hit (4195)
Rating
How to perform DISTINCT queries on tables that contain BLOB fields like text/image.
Total Hit (1432)
Rating
How does decimal datatypes differ in their precision & scale?
Total Hit (1663)
Rating
Export SQL data to XML File (3 different ways)
Total Hit (13376) Many times we need to export sql server data to some form of XML. As we know that SQL Server can output data in XML format when you use "FOR XML" clause. You can use ADO and MSXML along with "FOR XML" sql query to generate XML files from SQL Server data. The following script is pure VB Script so if ....Read More
Rating
How to calculate the previous & current salaries for each employees from rows that contain the start & end date for each salary?
Total Hit (1436)
Rating
This is a link to a different site How to Do SQL Server Log Shipping ?
Total Hit (1559) This article is about log shipping, a refined variation of the traditional manual standby failover server process. Its two major benefits over the traditional methods is that it automates most of the manual work and helps to reduce potential data loss even more. ....Read More
Rating
This is a link to a different site Locking, Blocking, and Deadlocks in SQL Server 2000: Part I
Total Hit (1220) This article will cover SQL Server locking in detail. It will also cover how locking can be prevented.
Rating
This is a link to a different site Introduction to SQL Server 2000 Analysis Services: Creating Our First Cube
Total Hit (861) This is the first article of my new series Introduction to MSSQL Server 2000 Analysis Services, which I hope will help new users get up to speed quickly on this exciting functionality. The series is designed to provide hands-on application of the fundamentals of MS SQL Server 2000 Analysis Services ....Read More
Rating
This is a link to a different site DTS How to...Skip Rows during Import
Total Hit (847) Firstly you can skip header rows by using the First Row property of the DataPump Task, see Advanced properties sheet. The Text File Connection also has a Skip Rows property, see file Properties of the Connection.
Rating
This is a link to a different site Find an Access Database (from anywhere on the file system)
Total Hit (638) It may be that we have built a DTS package to synchronise data held in an Access database and our SQL Server. The Access databases all have a consistent name but due to the fact that they are used by travelling salesmen on their laptops we cannot guarantee where the database will be. For this we ....Read More
Rating
This is a link to a different site MSSQL Server 2000 Reporting Services: A New Paradigm for Enterprise Reporting
Total Hit (861) This is the first of several articles of a new series, MSSQL Server 2000 Reporting Services. The series is designed to introduce MSSQL Server 2000 Reporting Services ("Reporting Services"), with the objective of giving a preview of its features, as well as sharing my conviction in its role as a new ....Read More
Rating
This is a link to a different site How to export all tables in a database
Total Hit (764) This is a very short article as it is really a demonstration of concepts explained elsewhere, although quite a useful implementation in it's own right. The export itself is done with the Bulk Export Task, and this is wrapped in a recordset driven loop as covered in the article How to loop through a ....Read More
Rating
This is a link to a different site How can I eliminate or reduce locking?
Total Hit (1781) Here are some resources that provide help with blocking issues in SQL Server.
Rating
This is a link to a different site SQL Server 2000 DTS Part 4 - DTS Designer Tasks
Total Hit (1927) In the previous article of our series dedicated to SQL Server 2000 Data Transformation Services, we covered the first of the essential elements of a package - connection. Now it is time to look into another critical component - task - that is responsible for the processing of data retrieved through ....Read More
Rating
This is a link to a different site Managing Users Permissions on SQL Server
Total Hit (1298) Permissions are the rights to access the database objects. Permissions can be granted to a user or role to allow that user or role to perform operations such as selection, insertion or modification of data rows.
Rating
This is a link to a different site SQL Server 2000 DTS Part 8 - DTS Designer Tasks - Transform Data Task
Total Hit (2090) A few more DTS Designer tasks are left to cover out of a total of 17 existing in SQL Server 2000 Data Transformation Services implementation. Arguably, the one that has undergone the most significant changes since the SQL 7.0 release is the Transform Data Task. In this article, we will look at its d ....Read More
Rating
This is a link to a different site A Server by Any Other Name
Total Hit (750) It is imperative to change the server name when infrastructure policy changes, naming convention standard changes or making a standby server the production server (when production server fails). When a server name is changed, SQL server should go through a process to acknowledge and assimilate the c ....Read More
Rating
This is a link to a different site Scripting Traces for Performance Monitoring on SQL Server
Total Hit (985) The SQL Profiler is a great tool for monitoring and analyzing SQL Server Performance. I use it all the time to watch the detailed actions of a stored procedure, trigger or user-defined function (UDF) that I am developing. It can also be used to monitor aggregate performance of an entire SQL Server i ....Read More
Rating
This is a link to a different site Business Intelligence with Microsoft SQL Server Reporting Services - Part 2
Total Hit (1078) Not all reports are static, most of the enterprise reports are data driven or parameterized. In the following section I'm adding two variables, startdate and enddate in the Orders Report. These arguments will be used to filter the data being queried from orders table. ....Read More
Rating
This is a link to a different site Best Practices for Business Intelligence Using the Microsoft Data Warehousing Framework
Total Hit (840)
Rating
This is a link to a different site Troubleshooting SQL Server Jobs
Total Hit (681) If you have problems with SQL Server jobs, review this troubleshooting checklist to find potential solutions.
Rating


(Page 11 of 24) 708 Result(s) found  1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24

Recommanded Links

 

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.