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

 

MD5 Algorithm implementation in T-SQL
Total Hit (10048) MD5 is very secure one way encryption. You can use MD5 to encrypt passwords stored in database.
Rating
Using FTP in Transact-SQL
Total Hit (4001) «B»Introduction«/B» I’ve seen a few posts asking “How do I ftp a file into SQL” Well, if you have 6.5 or 7.0 this article should be helpful. Unfortunately it’s not an easy answer, but it’ll work great once you’ve set it up. The answer is that there isn’t a function in SQL to let you do this, you ....Read More
Rating
Setting Up Transactional Replication: A Step-by-step Guide
Total Hit (1702)
Rating
How to access Reporting Services over internet using Fully Qualified Domain Name (FQDN) or IP.
Total Hit (2947) After you install reporting services by default report server will be configured to use http://machinename/reportserver virtual server. This will be fine if you want to use Reporting Services with in your intranet but if you want to access it using IP or fully qulified domain name over internet then ....Read More
Rating
Monitor stored procedure and batch activity from remote workstations
Total Hit (2410) Using the sp_user_counterX stored procedure (where X is a number between 1 and 10) you can set internal SQL Server counters. This values are read by the Performance Monitor, the standard Windows utility that monitors system activity. The Performance Monitor is able to monitor not only the activities ....Read More
Rating
How to check for the existence of a database on a server?
Total Hit (1432)
Rating
Avoid error 1540 in Join queries
Total Hit (2775) When you plan your queries, you should avoid the use of wildcard keyword * - which means "retrieve any field" - mainly because it may decrease performances, since the engine allocates space for the entire row; use explicit field declaration instead, such as: SELECT field1, field2 FROM table1 ....Read More
Rating
Working with Text dtatype (using READTEXT, WRITETEXT and TEXTPTR functions)
Total Hit (3707) «B»A. Use TEXTPTR«/B» This example uses the TEXTPTR function to locate the image column logo associated with New Moon Books in the pub_info table of the pubs database. The text pointer is put into a local variable @ptrval. «Code LangId=6» USE pubs GO DECLARE @ptrval varbinary(16) SELECT @p ....Read More
Rating
How to copy text values from one table to another? This one demonstrates for a text value in a single row.
Total Hit (2549)
Rating
Dissecting datetime value storage to individual dateparts.
Total Hit (1643) Ever wondered how SQL Server stores the datetime value in 8 bytes. Well, this code shows how to decode the values using simple mathematical operations.
Rating
How to do case sensitive comparisons
Total Hit (1560)
Rating
How to run Select, Insert, Delete statements aginst remote server using dynamic query (demonstrates OPENROWSET and EXECUTE function)
Total Hit (2167)
Rating
Monitoring Hard Drive Space
Total Hit (2841) This script monitors available disk space for the specified drive. If a drive name is not specified in @drivename parameter the usp_dba_diskspace_monitor stored procedure will check all drives against a space limit (MB) passed through @spacelimit parameter. If available disk space is less then @spac ....Read More
Rating
Error=[Microsoft ][odbc sql server driver] I/O error while reading BCP file format
Total Hit (6972) I was getting the follwoing error when used BCP format file. <font color=red>sql state s1000, native error=0 Error=[Microsoft ][odbc sql server driver] I/O error while reading BCP file format</font> I was sure that I used a correct BCP file format as shown below. I used a format file sh ....Read More
Rating
How to concatenate values that are grouped by columns using SELECT statement alone? This method has several restrictions but serves to demonstrate some techniques.
Total Hit (1582)
Rating
This is a link to a different site A Practical Guide to SQL Server Yukon Beta 1 DTS
Total Hit (1548) To understand the new features in "Yukon" Data Transformation Services (DTS), one must in many ways take a step back from the knowledge of prior DTS releases and come to the product with a fresh perspective. It is not that the new release is entirely different than its predecessors, but the similari ....Read More
Rating
This is a link to a different site Setting Up Snapshot Replication: A Step-by-step Guide
Total Hit (657) In this article, I want to tell you about some general Microsoft SQL Server replication topics: replication topologies, replication types, and replication agents. I will also discuss Snapshot replication: how to check necessary conditions for this type of replication and how to backup and restore th ....Read More
Rating
This is a link to a different site Microsoft Reporting Services in Action: Extending Microsoft SQL Server 2000 Reporting Services with Custom Code
Total Hit (1030) This article presents an excerpt from the book, Microsoft Reporting Services in Action, by Teodor Lachev. Learn how to implement advanced report functionality using custom code. (28 printed pages)
Rating
This is a link to a different site How to use Simple Stored Procedure to return data to a SSRS Report from Oracle
Total Hit (872)
Rating
This is a link to a different site SQL Server and XML
Total Hit (1106) Read the sample chapter from a new book released by Wrox Press, "Begining SQL Server 2000 for Visual Basic Developers". This chapter explores new XML features in SQL Server 2000 and takes a look at how you can exploit them to your benefit. We will also take a look at how we can use XSL (Extensible S ....Read More
Rating
This is a link to a different site T-SQL Programming Part 5 - Using the CASE Function
Total Hit (559) The CASE function is a very useful T-SQL function. With this function you can replace a column value with a different value based on the original column value. An example of where this function might come in handy is where you have a table that contains a column named SexCode, where 0 stands for fem ....Read More
Rating
This is a link to a different site Compressed Backup of SQL Server 6.5, 7.0 and 2000 on Windows 2000
Total Hit (1219) DBAs are always running out of hard disk space when handling large databases such as data-warehouse databases and other VLDB. Backing up such databases to disk occupies more disk space, since Microsoft SQL Server does not have compression built into the backup process. SQL Server customers usually g ....Read More
Rating
This is a link to a different site Writing Secure Transact-SQL
Total Hit (702) There are plenty of good sources of information about how to deploy SQL Server in a secure fashion. However, these resources are often targeted at database administrators tasked with securing already developed applications. In addition, there is a rich body of information that discusses writing secu ....Read More
Rating
This is a link to a different site T-SQL Programming Part 4 - Setting Variables in Calling T-SQL Code While Using sp_executesql
Total Hit (712) Occasionally you need to build dynamic T-SQL that not only requires the T-SQL code to be dynamic, but also requires the dynamic T-SQL to return values from the dynamic code to the calling T-SQL code. There are a number of different ways to write and execute dynamic code. For the purpose of this arti ....Read More
Rating
This is a link to a different site Using SQL Server's CHARINDEX and PATINDEX
Total Hit (1186) If you have written many applications then you probably have run across situations where you need to identify if a specific character or set of characters appears in a string. In this article I will discuss using the CHARINDEX and PATINDEX functions to search text columns and character strings. I wi ....Read More
Rating
This is a link to a different site Scheduled Task Reporting on SQL Server
Total Hit (619) If you have a server with a large number of scheduled tasks, you will know that keeping track of them all can be a bit difficult at times - checking and double-checking that your database backups and log backups are in synch, that maintenance tasks go off in the correct order, and that tasks do not ....Read More
Rating
This is a link to a different site Business Intelligence with Microsoft SQL Server Reporting Services - Part 1
Total Hit (959) Business Intelligence is a thriving discipline in the marvelous era of computing we live in. It's the process of analyzing and exploring the information, trends and patterns hidden in data. BI escalates the business roadmap and facilitates business users to deliver better strategic solutions. This p ....Read More
Rating
This is a link to a different site Find Out What They're Doing with fn_get_sql
Total Hit (1112) Not only did SQL Server 2000 introduce the concept of user-defined functions (UDF) but also Microsoft's development team created several such functions as part of the database product. In addition to many undocumented system UDFs, used internally by SQL Server, the product release has nine documente ....Read More
Rating
This is a link to a different site SQL Reporting Services with Dynamic Column Reports
Total Hit (1277) Hi all, this is the second time I am getting a task for dynamically creating reporting columns. In the first instance, I had done it by first binding the data to a DataGrid (by setting the auto-generated columns feature to true and then exporting to Excel). In the second case, the task was to genera ....Read More
Rating
This is a link to a different site How to grant permissions to a custom assembly that is referenced in a report in Reporting Services
Total Hit (1278) This article describes a problem that occurs when you access a custom assembly in your report that does not have sufficient permissions on the resources in your environment. The article also provides steps to grant permissions to the custom assemblies that are used in the reports. ....Read More
Rating


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