Viewing 15 posts - 391 through 405 (of 518 total)
Louis Ventura (9/14/2010)
-> yes there are a lot of objects that depend on that table, but the table does not depend on any other...
September 14, 2010 at 8:53 am
Is there any reason you don't just alter the column?
ALTER TABLE <tablename>
ALTER COLUMN ID BIGINT
And then just reseed to your new starting number.
I've never done this on a 5 billion...
September 14, 2010 at 8:05 am
Is the SCOM query being blocked by anything?
I don't recall any inserts (or anything really) taking 30 minutes in my setup.
September 13, 2010 at 12:09 pm
I'd wait for others to comment but I'm not sure I would perform a transaction of that size on temporary tables to begin with..how long does it take for the...
September 13, 2010 at 9:13 am
No...at least not that I've seen.
Last time I installed it, it looked similar to this:
About 1/3rd of the way down the page is the screen where you can enter the...
September 13, 2010 at 7:39 am
I prefer to initialize from backups with transactional replication..
Enable the 'initialize from backup' option, run a full backup, restore with norecovery onto target server, restore any transaction logs taken since...
September 10, 2010 at 2:57 pm
Or same approach using CTE..posting it because I already had it written before I saw the previous reply 🙂
;WITH Counts AS (
SELECT txtJC as [state], COUNT(*) as [Count] FROM...
September 10, 2010 at 2:45 pm
That's definitely a trigger of some kind.
Run this on the database:
SELECT * FROM sysobjects where xtype = 'TR'
September 10, 2010 at 2:32 pm
Reads are just logical reads, either from buffer cache or physical.
It still takes the same number of reads and cpu cycles to run the query, but on the 2nd and...
September 10, 2010 at 2:28 pm
Probably the same reason it wouldn't work if you tried to create a SP that way. It needs to be the first line in the batch (i.e. need a GO...
September 10, 2010 at 1:52 pm
You need to specify WITH NORECOVERY on a differential restore, otherwise it will try to bring it live, which it can't do without the tail of the transaction log. Also..this...
September 10, 2010 at 1:45 pm
Try this (using dynamic sql..feel free to modify the values to your needs of course)
DECLARE @DBNAME VARCHAR(50)
DECLARE @sql nvarchar(250)
SELECT @DBNAME=DB_NAME()
print @DBNAME
if(@DBNAME='master')
begin
SET @sql = 'create view [view] as select...
September 10, 2010 at 1:42 pm
SKYBVI (9/10/2010)
according to schedule, In the night after 8pm the log shipping is stopped until 6am in morning, so is that time good for upgrading ??Regards,
Sushant
Careful, this is most likely...
September 10, 2010 at 1:33 pm
In 2005/2008, Schema and Object Owner are two separate things that _sometimes_ line up. In SQL 2000 and earlier, they were more linked together, which is probably what you're comparing...
September 10, 2010 at 1:28 pm
Start up SQL using the following flags (/f /T3608) in the command line
Or start the service like this: NET START MSSQLSERVER /f /T3608
These flags will prevent SQL from starting up...
September 10, 2010 at 1:12 pm
Viewing 15 posts - 391 through 405 (of 518 total)