Viewing 15 posts - 16 through 30 (of 91 total)
Has anyone had the experience of c2 auditing being the bottleneck on an OLTP system?
April 2, 2008 at 6:31 am
On 2003 I used the forfiles utility via xp_cmdshell to list the files and properties and then load this information into a table. I do a compare of the...
April 2, 2008 at 6:26 am
Ordering the objects by creation date will get you most of the way there.
April 2, 2008 at 5:50 am
INIT will overwrite the existing backups in the set. NOINIT will preserver the exisiting backups.
GO to url ms-help://MS.SQLCC.v9/MS.SQLSVR.v9.en/tsqlref9/html/89a4658a-62f1-4289-8982-f072229720a1.htm in Books OnLine (BOL) the SQL Server help files for information...
April 2, 2008 at 3:38 am
This is all not the same machine no remote connection issues. SQL Server service is also running uner local system and is running. SQL Executive cannot start because of this...
September 14, 2005 at 6:59 am
Not associated with a trusted sql server connection.
September 14, 2005 at 5:41 am
Have you thought about openrowset.
August 10, 2005 at 6:52 am
I don't like them because of the inability to customise what they produce without annoying the wizard. The main benefit is the speed with which a beginner can set up...
July 29, 2005 at 7:01 am
You need to assess the risk of it happening against the consequences if it does. If you want to leave the system up take a backup immediately before the work...
July 27, 2005 at 7:23 am
Be careful using word automation on a server. It'll throw up interactive message boxes here there and everywhere which canhave some shocking results!
April 18, 2005 at 6:37 am
Where are you checking the dates when you see them reversed?
January 19, 2005 at 4:52 am
Could you post the execution plans for the two date ranges you mentioned so that we can see what is happening?
You could use Index hints to try and force the...
January 19, 2005 at 4:20 am
Setting the ISOLATION LEVEL is the way to go but just to answer your question the locking hint would work within the transaction as you required.
You can test this by opening...
January 19, 2005 at 3:32 am
F @iCount > 1
BEGIN
RAISERROR( 56000 , 1 , 1) WITH SETERROR
ROLLBACK TRANSACTION
END
go
should this not be
IF @iCount > 0
BEGIN
RAISERROR( 56000 , 1 , 1) WITH SETERROR
ROLLBACK TRANSACTION
END
go
After the first insert iCount...
February 23, 2004 at 7:00 am
You have to compare like with like. Oracle has many features that can be added on and cost many more dollars. I know that ther are issues with SQL and clustering....
February 19, 2004 at 10:04 am
Viewing 15 posts - 16 through 30 (of 91 total)