Viewing 15 posts - 2,236 through 2,250 (of 3,655 total)
Yes indeed and as its on a 1TB I was relieved when it reported no errors.
The suspicion is that as the staging table is TRUNCATEd the pointers in the index...
March 27, 2007 at 11:40 am
We have databases getting on for a TerraByte and have to be very careful with replication.
If you generate a snapshot then while the snapshot is being generated the tables get...
March 21, 2007 at 3:08 pm
Thanks for this Eric, do you know what is in the packets that are returned?
March 13, 2007 at 2:55 pm
If you want to speed up the insert and you don't have identity/autonumber fields you can do
SELECT * INTO dbo.NewTable FROM dbo.SourceTable WHERE 1=0
Followed by
INSERT INTO dbo.NewTable SELECT *...
February 15, 2007 at 2:08 pm
The quick and dirty method is
SELECT * INTO NewTable FROM sourcetable
However, if the sourcetable is large then this may impact on your servers performance.
February 15, 2007 at 9:18 am
You can also right-click on the object in the object tree within SQL Query Analyser
February 2, 2007 at 11:49 am
The query optimiser may have detected that it needs to run a query in a different way and therefore has generated a new execution plan.
Have a look what tables are...
January 18, 2007 at 4:16 pm
Don't forget Innovasys DocumentX. It covers SQL Server, Oracle, Access and also does .NET assemblies, Visual Studio projects, ActiveX and VBA.
After using a proper tool I wouldn't use a...
January 12, 2007 at 11:50 am
I'll be 40 in February and the past two years have been an eye opener.
I left a job that paid well, was within cycling distance of home and had colleagues...
January 5, 2007 at 2:32 pm
If anyone is interested the SQL2000 equivalent is
USE Master
GO
CREATE PROC dbo.sp_DBA_spaceused_AllTables2
@updateusage varchar(5)='false'
AS
SET NOCOUNT ON
IF @updateusage IS NOT NULL
BEGIN
-- Allow for case sensitivity
SET @updateusage=LOWER(@updateusage)
IF @updateusage NOT IN ('true','false')
BEGIN
RAISERROR(15143,-1,-1,@updateusage)
RETURN(1)
END
END
-- Retrieve the current... January 5, 2007 at 2:19 pm
I seem to remember that there is a non-documented stored procedure that runs the resultset of a query.
In some situations I do build up a string of commands and then...
December 29, 2006 at 10:30 am
Thanks for the comments Andy and Jeff. I don't get too worried about criticisms, we are fortunate enough to live in a democracy and as Voltaire said.
I disapprove of...
December 24, 2006 at 6:00 am
What do you get when you cross a sheep with a bee?
Baa Hum Bug
December 24, 2006 at 5:32 am
I've got to put up a Christmas tree, swear at the lights, murder a few carols and fight with relatives, but I will give it a go after Christmas and...
December 22, 2006 at 9:55 am
In 192.168.2.10 the octets would be as follows
Would I be correct in thinking that by using the most changing octet SQL Server is most likely to think that the...
December 22, 2006 at 9:44 am
Viewing 15 posts - 2,236 through 2,250 (of 3,655 total)