Viewing 15 posts - 106 through 120 (of 489 total)
Database backups are roughly the size of you data, not the size of you database files. This is assuming no compression. If the .BAK file is still getting bigger it's...
December 4, 2012 at 7:17 pm
I've done a bunch of 2012 installs now and never had any problems. SP1 is out and it's worth doing the service pack. Only bug with the SP installer is...
December 4, 2012 at 7:08 pm
This only moves the logical location of the files. To actually get them to the new location you need to take the database off line in some way so you...
December 4, 2012 at 6:41 pm
Try using this, it works on my demo environment.
select dns_name from sys.availability_group_listeners GL
join sys.availability_group_listener_ip_addresses LIP
on GL.listener_id = LIP.listener_id
join sys.dm_exec_connections C
on LIP.ip_address = c.local_net_address
where session_id = @@SPID
Cheers
Leo
November 14, 2012 at 8:11 pm
You'll need to supply a lot more information than this.
Are there server differences, disk differences, have you compared execution plans,....
Have you rebuilt indexes, updated stats?
There are a host of things...
November 7, 2012 at 7:52 pm
If a log file back up had marked all the records in the file as no longer needed then a delete will also work. I tend to do the shrink...
October 30, 2012 at 1:08 pm
Provided the log file is empty you can delete it. Ensure you have regulare log backups, do a shrink file and empty it.
DBCC SHRINKFILE (N'Scratch_log' , EMPTYFILE)
Then you should be...
October 29, 2012 at 9:14 pm
I've not had any issues like this, and I've used backup and restore multiple times. Recommended migration is typically backup and restore, or detach and attach, or in place upgrade....
October 29, 2012 at 7:40 pm
Not directly it doesn't. The default trace will log the create or drop of the trigger and it will log an alter table if the trigger is disabled or enabled.
The...
October 29, 2012 at 7:34 pm
You could consider defining the foreign key with the ON DELETE CASCADE option. Then all you need to do is delete the parent record from Sidelite and all the child...
September 5, 2012 at 9:35 pm
cheshirefox (8/24/2012)
I will update the values again today to 4000 and...
August 26, 2012 at 7:08 pm
What are the job history retention settings? Right click SQL Server Agent/Properties - History.
The defaults are Maximum log size (in rows) 1000, Max history per job 100. If some jobs...
August 23, 2012 at 6:03 pm
One issue I consider fairly serious is the gaps in the Identity sequences when you restart the SQL Server Service (failovers etc). For a standard identity (1,1) you can get...
July 15, 2012 at 6:10 pm
cciappa (6/29/2012)
July 2, 2012 at 2:43 pm
GilaMonster (6/20/2012)
jeff.mason (6/20/2012)
If the value of the PK is vital, and gaps cannot be supported, I'd look at implementing one of 2012's new features -- a SEQUENCE.
Sequences and...
June 20, 2012 at 4:38 pm
Viewing 15 posts - 106 through 120 (of 489 total)