Viewing 15 posts - 586 through 600 (of 708 total)
The primary reason to send a recordset from a client to the server is if the client has modified the recordset.
In your case, it appears you're performing additional queries against...
June 21, 2006 at 1:32 pm
You can never be too rich, too thin, or have too much free data and log space.
June 21, 2006 at 10:34 am
If you get rid of the GROUP BY, you must also get rid of the SUM() (This is if you plan on using the detail in your report. Otherwise, leave...
June 21, 2006 at 10:29 am
That COMPUTE BY clause splits your results up into lots of tiny, independant resultsets, each divided by an additional independant resultset with your COMPUTE BY results for the preceeding data resultset. ...
June 20, 2006 at 11:00 pm
1. Is there a pattern to the ID list, or is it just a random blast of IDs? If there's some method to the ID madness, then there should be...
June 20, 2006 at 10:34 pm
Which edition of SQL Server 2005?
Enterprise and Developer Editions are good to 50 named instances per server.
-Eddie
June 20, 2006 at 10:03 pm
Yup, the auto-growth is your problem. Growing database files is disk-intensive, and is only happens when the space is needed, which is during writes. In your case, it appears to...
June 20, 2006 at 9:45 pm
SELECT
CASE WHEN @checked IN ('Y', 'True',
June 19, 2006 at 2:47 pm
IIRC, there are few topics in 2072A (the MS 5-day SQL Server admin class available at most training centers) that don't make the trip to SQL Server 2005. There are...
June 15, 2006 at 1:21 pm
The restored database will use the original file sizes.
DBCC SHRINKFILE is the way to go.
I'd advise taking a full backup first, expanding the log file considerably and taking a log...
June 15, 2006 at 10:09 am
Ensure that the constraints are being created using WITH CHECK instead of WITH NOCHECK.
You can see how this affects your sample code by doing the following:
1. Run your sample above...
June 15, 2006 at 8:42 am
1. Snapshot reporting refers to read-only access of database snapshots created on a mirror server (SQL Server 2005 Enterprise Edition). Mirrors and snapshots are new to SQL 2k5. The scenario...
June 14, 2006 at 9:39 pm
The key part is that when the CHECK constraints are created, they perform the 'check existing data on creation' step. If you build them with EM, that isn't done by...
June 13, 2006 at 10:51 am
That 'touch' is part of normal query resolution: the table schema is validated during parsing - which occurs before the WHERE clause is hit. The table data is not queried. Thus...
June 13, 2006 at 10:43 am
Float and Real columns hold approximate data. The value you try to store in it may not be the value that is actually stored. While there are valid uses for...
June 12, 2006 at 8:58 am
Viewing 15 posts - 586 through 600 (of 708 total)