Viewing 15 posts - 8,221 through 8,235 (of 9,253 total)
start by setting the recovery model to simple for this database
and then take a full database backup. This will truncate the log file
Shrink the file to the desired size, if...
June 8, 2009 at 6:51 am
if you really need to move logs for the master,model and msdb then use the
alter database modify file command
Tempdb may also be moved but make sure not to touch...
May 31, 2009 at 2:55 pm
look in sql config manager. Find the instance and on the protocols click TCP. Right click and select preoperties then scroll all the way down. Dynamically assigned port will be...
May 31, 2009 at 2:46 pm
GilaMonster (5/25/2009)
you'll get errors saying that the files are not accessible.
you'll also get this if you mistype the file and or path too.
Tip: If you do get this message...
May 25, 2009 at 8:53 am
winston
just to re iterate
the MOVE is only used when restoring a backup. When moving a data file location via ALTER DATABASE use MODIFY FILE. You can issue the statement while...
May 25, 2009 at 7:41 am
use a select script to generate an insert script for each row in the table and coupled with a create table script you have your table in portable format
May 25, 2009 at 7:29 am
SQL Noob (5/15/2009)
is there any benefit to setting up a dev/qa cluster?
as i said above, you can play to your hearts content without fear of retribution. Mojo pointed out the...
May 16, 2009 at 11:26 am
thank you for all the +ve comments, i just hope this is useful to you all somehow. Its great for testing and if you blow away the cluster you dont...
May 15, 2009 at 10:29 am
thanks for your reply. The document does specify you should only use for test\educational purposes and that options such as VMWare HA make this redundant. Its more for people who...
May 15, 2009 at 10:16 am
have you tried running it from the DVD?
May 8, 2009 at 2:55 am
where are you running the setup from CD, HDD, etc?
May 7, 2009 at 2:09 pm
Adam Bean (4/30/2009)
SELECT
[name]AS [DBName]
,SUSER_SNAME([sid])AS [DBOwner]
FROM [master].[dbo].[sysdatabases]
ORDER BY 1
this should do it
select [name] as [DB Name], SUSER_SNAME([owner_sid]) AS [DBOwner] from sys.databases
order by 1
April 30, 2009 at 1:30 pm
Hi
passive nodes first, check this link for further details
April 30, 2009 at 1:14 pm
rgillings (4/16/2009)
Truncate also will RESEED a table.
that is correct
April 16, 2009 at 1:54 pm
the 2 biggest differences between std and ent are online index rebuilding and partitioning. Also AFAIK page level restores are only available in sql2005 ent
April 15, 2009 at 7:14 am
Viewing 15 posts - 8,221 through 8,235 (of 9,253 total)