Viewing 15 posts - 1,771 through 1,785 (of 1,838 total)
I'm suprised that Jeff Moden hasn't jumped all over this. 😉
Anyway, I think what needs to be considered is that while doing it row by row may only lock...
September 25, 2008 at 7:44 am
If you already have the SQL Server table setup with an IDENTITY column, and the non-conforming material number from the spreadsheet is just an integer value that you want to...
September 22, 2008 at 9:48 am
Statspack is a pretty comprehensive report with alot of parts to it. Some of the statistics you can get using the Performance Monitor in the Administrative Tools of Control...
September 22, 2008 at 9:24 am
When the transaction log backup happens, it frees up space within the file to be reused by other transactions. If what you say is true, then to keep shrinking...
September 19, 2008 at 4:34 pm
What tool or program are you using to log into SQL Server? Do you have aliases setup on the client computer in SQL Server Configuration Manager?
September 19, 2008 at 11:16 am
Bob Bridges (9/19/2008)
They currently do a full backup every night and have a job that backs up the transaction log every 2 hours.
...
The current recovery model is...
September 19, 2008 at 10:06 am
Is the Access application using pass through queries? If not, Access has a bad habit of trying to grab the whole table and perform the query in its own...
September 19, 2008 at 9:23 am
If the new file is in the same filegroup, SQL Server will automatically split new extents written across both files. If you only want it to write to the...
September 19, 2008 at 9:18 am
In SQL Server, when performing large transactions on a given table, the engine can decide that it's more efficient to grab a few page locks than many row locks. ...
September 19, 2008 at 8:58 am
It looks like your best bet is going to be having a subquery which assigns an "order" to the CODE column somehow, like using:
SELECT enc_id,
MAX(CASE WHEN...
September 18, 2008 at 3:00 pm
The SQL Server 2000 books online says that you can do a client install on Windows 98 machine. As for the MDAC, version 2.8 is supported on Windows 98:
September 18, 2008 at 2:26 pm
I don't know what you're trying to do, but I see several mistakes offhand:
1.) you open the parenthesis on the CREATE PROCEDURE but don't close them after the last...
September 18, 2008 at 12:56 pm
There are reasons you might want to put a non-clustered index on a table that doesn't have a clustered index, for example if the primary key is a uniqueidentifier and...
September 18, 2008 at 12:30 pm
Concatenation operator in SQL Server is +, not &
September 17, 2008 at 3:21 pm
If you end up having multiple UPDATE statements in your script, it may be easier to use a TRY...CATCH block instead of checking @@ERROR after each UPDATE:
BEGIN TRY
...
September 17, 2008 at 3:17 pm
Viewing 15 posts - 1,771 through 1,785 (of 1,838 total)