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 115 of 133) 3985 Result(s) found 

 

How to Use Batch Size to Speed Mass Updates, Inserts and Deletes reducing locks require for operation.
Total Hit (2535) It is often necessary to perform mass updates, inserts, or deletes on a table or tables. If the action involves thousands to millions of rows, performance can bog down and the transaction log can grow very large, consuming much available disk space. In fact, updating millions of rows in one query ma ....Read More
Rating
How to capture DBCC output into SQL Table?
Total Hit (1686)
Rating
Display every Nth record.
Total Hit (1495)
Rating
Generate sequencial number for your resultset.
Total Hit (1391)
Rating
Complex grouping problem. How to group records by minimum of field1 , minimum of field2 and maximum of field3 ...
Total Hit (1501) In this example we assume that we have 3 hotels and their codes are AIR, PID, ZLM. For each property we have multiple rates for each week and this rate should be picked up on the basis of sellorder -> seasonlength -> rate . We have multiple seasonnumber for each week but only one season rate should ....Read More
Rating
Avoid Auto Close and Auto Shrink.
Total Hit (3037) I was on-site with a client, whose had a server which performing very sluggishly. It was a beefy brute with heaps of memory and processing power, so clearly something was just not what it should have been. For me step 1 in doing any sort of trouble-shooting is to look at the logs. Yup, always a ....Read More
Rating
This is a link to a different site How can I eliminate or reduce locking?
Total Hit (1783) Here are some resources that provide help with blocking issues in SQL Server.
Rating
This is a link to a different site Determining Table sizes, Index size, Total Rows
Total Hit (1063) Ever wanted to find out the amount of space a table is taking up (in Kilobytes, not record size... although you will be able to get the record size too this way).
Rating
This is a link to a different site Using Lock Escalation to Improve Update Query Performance
Total Hit (1951) Lock escalation is the process of converting many fine-grain locks into fewer coarse-grain locks, reducing system overhead.
Rating
This is a link to a different site using NT Authentication to login into SQL
Total Hit (1117) This is for using NT authentication (NT users already setup in the Domain) So you need to get the correct spelling of each user in User Manager for Domains. Then it will get the user from NT when they log in and bingo they have permissions to the SQL server database too. ....Read More
Rating
This is a link to a different site How can I script my SQL Server databases from Visual Basic?
Total Hit (924) You can use SQLDMO (SQL Distributed Management Objects) in VB to script a SQL Server database. There is a VB example included on the SQL 2000 install CD. If you installed the SQL Server developer tools, you should be able to find the sample code in... ....Read More
Rating
This is a link to a different site How do I script all the objects from all databases on a server and record changes
Total Hit (2245) This is for an uncontrolled environment where developers are allowed to change SPs without change control. I would suggest to run the procedure every night.
Rating
This is a link to a different site How Do I Develop a Backup and Restore Strategy?
Total Hit (1036) One of the most critical aspects of administering SQL Server is the Backup and Restore or Disaster Recovery strategy. Frequent questions in this forum indicate a general lack of knowledge and planning for backup and restore operations.
Rating
This is a link to a different site How do I convert from Access to SQL Server?
Total Hit (1099) 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 Where can I find more DTS information and samples?
Total Hit (2148)
Rating
This is a link to a different site Shrinking Databases and Logs - SQL 7 and Higher
Total Hit (1873) SQL 7 and SQL 2000 allow automatic file growth. Therefore, the files can grow large. It is important to understand how to reduce the database and log files sizes. There are two DBCC commands to help shrink databases and files. Both are needed to reduce and maintain file sizes. ....Read More
Rating
This is a link to a different site Why won't my transaction log shrink?
Total Hit (2014) Even though you have run DBCC SHRINKFILE and similar steps you may find that the log file will not shrink.
Rating
This is a link to a different site Can anyone tell me how to enable¦disable the display of the Master, Model, and Tempdb databases in Enterprise Manager?
Total Hit (1119)
Rating
This is a link to a different site How do I know what type of index to create?
Total Hit (1311) We get a lot of index questions related to what type of index should be created given a particular situation. I compiled the items below from books-online to facilitate this discussion: Before creating clustered indexes, understand how your data will be accessed. ....Read More
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 How can I ensure that my scheduled DTS Packages will execute correctly?
Total Hit (1921) When your DTS packages get scheduled, a thing to keep in mind is that the SQL Server Agent executes them and they may not work as you intended due to the fact that the Agent is most likely running under a different security context.
Rating
This is a link to a different site How to Schedule a Job Programatically with VB
Total Hit (839) First off, set a reference to Microsoft SQL-DMO in your VB project. You will need to have SQL Server 7 installed on your box for this. I haven't tried this under SQL 2000 or SQL 6.5
Rating
This is a link to a different site A better Soundex code
Total Hit (1044) Terms that are often misspelled can be a problem for database designers. Names, for example, are variable length, can have strange spellings, and they are not unique. American names have a diversity of ethnic origins, which give us names pronounced the same way but spelled differently and vice versa ....Read More
Rating
This is a link to a different site How do I use the new table variables in SQL Server 2000?
Total Hit (696) Table variables did not work for me until I started using an alias for the table variable when I had to qualify column names of a table variable.
Rating
This is a link to a different site How do I set up and configure SQL Mail?
Total Hit (1195) SQL Mail provides a way to send EMail from Micosoft SQL Server. The focus of this FAQ is configuration of SQL Mail. There are other ways to send Email from SQL Server. Links to articles about these alternatives to SQLMail are listed at the end of this FAQ. ....Read More
Rating
This is a link to a different site xp_regex: Regular Expressions in SQL Server 2000
Total Hit (619) Regular Expressions are probably the best tool for text parsing. Using Regular Expressions GREATLY simplifies anything for which you would normally use CHARINDEX, PATINDEX, SUBSTRING, STUFF, REPLACE, etc.
Rating
This is a link to a different site Summarizing Data with ROLLUP
Total Hit (630) Oftentimes, when building Web-based reporting tools we need to show totals and sub-totals for information stored in the database. For example, imagine that you worked at an eCommerce site like Amazon.com that sold products from a variety of categories: books, electronics, clothes, etc. Managers woul ....Read More
Rating
This is a link to a different site Dynamic ORDER BY Statements in Stored Procedures
Total Hit (1650) When creating data-driven Web applications, it is ideal to place the actual SQL statements into stored procedures, and to have the Web pages, then, call the appropriate stored procedures rather than executing the SQL statements themselves. (If you are unfamiliar with what stored procedures are, or t ....Read More
Rating
This is a link to a different site SQL Server and XML
Total Hit (1112) 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 Introduction to SQL : Sample chapter from Beginning SQL Programming
Total Hit (696) This introductory chapter covers topics that students usually ask in the first hour of classes; essentially, just what do we mean by SQL? We start by explaining what SQL is and also what it is not, and we provide a brief overview of the history of the language. We'll also clarify some confusing term ....Read More
Rating


(Page 115 of 133) 3985 Result(s) found  ... 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 ...

Recommanded Links

 

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

© 2008 BinaryWorld LLC. All rights reserved.