Viewing 15 posts - 7,936 through 7,950 (of 9,253 total)
Hi
try
USE yourdb
--get securables permissions assigned
SELECT
CONVERT(NVARCHAR(10), state_desc) COLLATE Latin1_General_CI_AS + ' ' +
CONVERT(NVARCHAR(10), permission_name) COLLATE Latin1_General_CI_AS +
' ON [' + sch.name + '].[' + obj.name + '] TO...
May 25, 2010 at 11:13 am
saghbash (5/24/2010)
tassFULL{CF7B9AF2-6610-4412-A8CD-D01B04A895EE}3ISVS-SQL\TASStassFULL{CF7B9AF2-6610-4412-A8CD-D01B04A895EE}3ISVS-SQL\TASS
tassFULL{13688B9A-585F-41FF-A598-B9FDF4483108}3ISVS-SQL\TASS
tassFULL{13688B9A-585F-41FF-A598-B9FDF4483108}3ISVS-SQL\TASS
Hi check the sys.backup_devices table for these and get the physical filenames.
May 25, 2010 at 10:47 am
to add to Lowell's entry, you can also launch the account provisioning immediately after installing the SQL Server service pack (click the check box before clicking finish)
May 25, 2010 at 10:36 am
slightly confusing, so is the question about size or throughput?
May 25, 2010 at 10:31 am
Truncate will also reset seed values where delete won't
May 25, 2010 at 10:29 am
The document will differ based on your host set up. You should be following the section that installs the SQL Server 2008 failover cluster.
May 25, 2010 at 3:38 am
Raju The Leader (5/24/2010)
FROM DISK = '\\SQLSERVER\Backup\Newfull.bak'
WITH REPLACE,
MOVE 'LIST_New' TO 'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\UK.mdf',
MOVE 'LIST_Log' TO
'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data\UK_log.mdf'
WHEN I AM EXECUTING THIS COMMAND I AM GETTING...
May 24, 2010 at 10:50 am
the only way to upgrade your sql 2000 system databases to sql 2005 is to carry out in place upgrade on the instance.
If you want a side by side...
May 22, 2010 at 9:59 am
your welcome
May 22, 2010 at 2:59 am
hamidi 97216 (5/21/2010)
is this what u mean?:
No
you may also want to check my tutorial for installing SQL Server 2008 in a clustered configuration at this
link, it may help quite...
May 21, 2010 at 7:42 am
saimonkhan15 (5/21/2010)
I have always thought this was a bit strange, since truncate is so much
faster. You can grant...
May 21, 2010 at 7:39 am
Alex Webber (5/21/2010)
May 21, 2010 at 7:32 am
before removing any files check their contents. Can you post the results of the following queries?
USE yourdb
select name from sys.filegroups
USE yourdb
select a.name as 'Index name', b.name as 'Filegroup',
c.name as 'Table...
May 21, 2010 at 2:05 am
check this link for more info
the following info is relevant
A log backup is required to move the head of the log forward (full or bulk-logged recovery models only).
Note:
Log backups...
May 21, 2010 at 1:49 am
Viewing 15 posts - 7,936 through 7,950 (of 9,253 total)