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 10 of 24) 708 Result(s) found 

 

Generate Insert Statements
Total Hit (7856)
Rating
How to generate sequence numbers based on values in multiple columns?
Total Hit (1511) 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 (1464) 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 (4199)
Rating
How to perform DISTINCT queries on tables that contain BLOB fields like text/image.
Total Hit (1435)
Rating
Script to create dummy tables/procs and views for testing purpose
Total Hit (5027) This script can generate N number of Tables/Views and Stpored Procs in few seconds with some dummy data. I use this for stress testing and create dummy tables with data. Change @howmanytables to create N number of tables and then set - @howmanycolumns to create N number of dummy columns per tab ....Read More
Rating
generate script for all stored procedures for the given database.
Total Hit (15432)
Rating
How does decimal datatypes differ in their precision & scale?
Total Hit (1664)
Rating
How to do error handling in transaction.
Total Hit (2223) The examples presented here are specific to stored procedures as they are the desired method of interacting with a database. When an error is encountered within a stored procedure, the best you can do is halt the sequential processing of the code and either branch to another code segment in the proc ....Read More
Rating
Export SQL data to XML File (3 different ways)
Total Hit (13387) 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 run *.bat file using xp_CmdShell
Total Hit (6636) xp_CmdShell is a powerful SP if used with care. You can execute executable files (e.g. *.com, *.exe and *.bat) using xp_CmdShell however there is a little trick when executing executable file. When you use the the following command you will get an error <font color=red>'C:\myscript.bat' is no ....Read More
Rating
This is a link to a different site Locking, Blocking, and Deadlocks in SQL Server 2000: Part I
Total Hit (1222) 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 Creating packages in code - Flat File Source to OLE-DB Destination (SQL Server)
Total Hit (4753) This code sample programmatically creates a package that imports a text file into SQL Server, with a Flat File Source and the OLE-DB Destination. This shows how you can leverage the SSIS engine to write your own data import tool for example, but beware importing files is not as simple as it may seem ....Read More
Rating
This is a link to a different site Introduction to SQL Server 2000 Analysis Services: Creating Our First Cube
Total Hit (863) 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 How do I convert from Access to SQL Server?
Total Hit (1097) The Access to SQL Server upsizing wizard is the best way to start. There's a different version for each version of Access.
Rating
This is a link to a different site How Can I Generate a Series of Random Integers With T-SQL?
Total Hit (701) Here is a stored procedure that will generate a series of random numbers and return them in a result set.
Rating
This is a link to a different site DTS How to...Skip Rows during Import
Total Hit (849) 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 How to move, copy, and back up full-text catalog folders and files
Total Hit (1506) Full-text catalogs and indexes are not stored in a SQL Server database. Full-text catalogs and indexes are stored in separate files that the Microsoft Search service manages. The full-text catalog files are not recovered during a Microsoft SQL Server recovery. Additionally, you cannot use the Transa ....Read More
Rating
This is a link to a different site SQL Server 2000 Administration in 15 Minutes a Week: Advanced Installations
Total Hit (841) Welcome to the third article in my series SQL Administration in 15 Minutes a week. Up to this point we have gone over the requirements for installing SQL Server and we have performed a basic installation. This week I will show you more advanced issues when installing SQL Server. The topics for this ....Read More
Rating
This is a link to a different site Find an Access Database (from anywhere on the file system)
Total Hit (639) 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 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 How do I enumerate tables in an Access Database
Total Hit (1164) If you need to enumerate the tables in an Access database, the easiest method is through the ActiveX Data Objects Extensions for Data Definition Language and Security. The ADOX library, as it is better known, can be used just like other COM objects from within ActiveX script, such as a task or workf ....Read More
Rating
This is a link to a different site MSSQL Server 2000 Reporting Services: A New Paradigm for Enterprise Reporting
Total Hit (863) 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 MDX Member Functions: The "Family" Functions
Total Hit (857) This is the fifth article of the series, MDX Essentials. The primary focus of this series is an introduction to the MDX language. The series is designed to provide hands-on application of the fundamentals of the Multidimensional Expressions (MDX) language, with each tutorial progressively adding fea ....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 New Version Showcases Native XML Type and Advanced Data Handling
Total Hit (1170) The next version of Microsoft SQL Server, code-named "Yukon," represents quite a few steps forward in the evolution of XML integration. Yukon supports native storage of XML data using the XML data type, which makes it possible to run native queries on XML data using the emerging industry standard XQ ....Read More
Rating
This is a link to a different site Arrays and Lists in SQL Server
Total Hit (771) In the public forums for SQL Server, you often see people asking How do I use arrays in SQL Server? Or Why does SELECT * FROM tbl WHERE col IN (@list) not work? This text describes several methods to do this, both good and bad ones. I also present data from performance tests of the various methods. ....Read More
Rating
This is a link to a different site How can I eliminate or reduce locking?
Total Hit (1782) 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 (1930) 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 Generate Scripts for SQL Server Objects
Total Hit (2545) We all like the Generate Script feature of Enterprise Manager and like to use it programmatically. One of the most important uses would be backing up scripts periodically using SQL Server Scheduler.
Rating


(Page 10 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.