Viewing 15 posts - 7,321 through 7,335 (of 7,636 total)
wwang (3/27/2008)
What is the datatype will serve up to 2^127 integer number?
2^127 is a really big number. What are you counting that you would ever need that many distinct...
March 27, 2008 at 2:47 pm
I haven't done this for a while, but I think 1) disable the Agent/Job and then 2) Stop the agent if it is currently running.
The schedule(s) should not be able...
March 27, 2008 at 2:01 pm
Depending on your budget, there are many consulting companies that will do guide you through this or do it for you (yes, mine is one of those).
March 27, 2008 at 1:56 pm
Read the "Data Warehouse Toolkit" by Kimball and Ross. It should give you a much better idea where to start and what kind of questions to start asking your...
March 27, 2008 at 1:53 pm
Have you tried deleting from each of the individual child tables first? How fast did that run?
March 27, 2008 at 1:47 pm
The activity monitor in SSMS can help, but since it doesn't have deltas, you may find it difficult to use for this purpose.
March 27, 2008 at 1:40 pm
Something to get you started:
CREATE Procedure spHugeTable_IncrementalUpdate( @RowsPerBatch int )
AS
Update HugeTable
Top (@RowsPerBatch)
Set {columns to change, ...}
, UpdateCol = 1
Where UpdateCol=0
Now write a SQL Job that...
March 27, 2008 at 1:30 pm
I feel obliged, for the sake of accuracy, to point out that although your co-workers steps for adding a column to a table bear an eerie similarity to the scripts...
March 27, 2008 at 1:11 pm
GSquared (3/27/2008)
Bob updates the order and changes the price incorrectly: UpdateBy = "Bob"
Sue updates the order and changes the ship...
March 27, 2008 at 12:40 pm
Unless you want to rebuild/reload all replication data on the subscriber, you will have to store the change information somewhere. You can stop the distribution agents and then the...
March 27, 2008 at 11:41 am
There are some limited modifications that you can make to the table definitions through the Replication Management interfaces (GUI & sys Procs), however, for the most part you will have...
March 27, 2008 at 11:30 am
Try following the instructions in the error message?
March 27, 2008 at 11:22 am
Michael's solution also works for me on both Sql2000 & 2005:
SELECT TOP 1 *, Cast('' as VARCHAR(48)) as [schemaname]
INTO #sysobjects
FROM [dbo].[sysobjects]
DELETE FROM #sysobjects
INSERT INTO #sysobjects
EXEC('USE [master] SELECT *,...
March 26, 2008 at 9:51 pm
You could just use the veiw defined in this article and do a SELECT on it WHERE NAME={your table name}, : http://www.sqlservercentral.com/scripts/tables/62545/
March 26, 2008 at 9:42 pm
SW_Lindsay (3/26/2008)
SELECT FI.[filename] FROM master..sysaltfiles FI Inner Join Master..sysdatabases DB On FI.dbid = DB.dbid...
March 26, 2008 at 9:37 pm
Viewing 15 posts - 7,321 through 7,335 (of 7,636 total)