Viewing 15 posts - 9,001 through 9,015 (of 9,248 total)
gee thanks, i dont need to read BOL now 😉
August 19, 2008 at 10:07 am
which vendor do you plan on using?
your chosen vendor will supply any training you may need
August 19, 2008 at 9:59 am
use the following
select @@servername, serverproperty('servername')
they should return the same name, if not use sp_dropserver and then sp_addserver
August 19, 2008 at 9:53 am
you can generate the SPN's manually using
SETSPN.EXE
syntax is
setspn -A ServiceClass/Host: Port AccountName
so for sql instance is
setspn -A MSSQLSvc/mysqlserver.domain.co.uk:staticsqlportnumber domain\sqlserviceuseraccount
use setspn -L domain\sqlserviceuseraccount
to list the SPN's
😎
August 19, 2008 at 9:47 am
set up some perfmon counters and profile the developers code. Once you have the trace and permon results you can tie them together and check for problems that way
August 19, 2008 at 9:31 am
from BOL 😉
SERVERPROPERTY ( propertyname )
InstanceName
Name of the instance to which the user is connected.
Returns NULL if the instance name is the default instance, if the input is...
August 19, 2008 at 9:26 am
bodhilove (8/18/2008)
I am transfering a 2000 db to 2005. I haven't been given a test environment to work with. I am migrating by...
August 19, 2008 at 5:40 am
Redgate gets my vote
August 19, 2008 at 5:22 am
create a domain account and have the agent service runas that account (use sql configuration manager to change the account details). Give this account permissions to whichever remote folders it...
August 19, 2008 at 5:21 am
none of my registered servers have the green and white arrow only connected servers
August 18, 2008 at 9:48 am
Scott Duncan (8/11/2008)
August 17, 2008 at 2:52 pm
fully review all operations that occur over the weekend before the log backup happens on the monday, something is interrupting your backup chain. Does your index rebuild or maintenance plan...
August 17, 2008 at 2:45 pm
are both machines on a network?
if so, put the cd into the drive of the machine where installation was successful and share the disk out. The launch setup from the...
August 17, 2008 at 2:34 pm
you can also run the SQL setup from cd and that can be used to modify installed instances
August 17, 2008 at 2:30 pm
i would apply some normaliastion to table 2 as suggested first as you'll find yourself ending up with some extra tables which will change the query anyway
August 17, 2008 at 12:32 pm
Viewing 15 posts - 9,001 through 9,015 (of 9,248 total)