Viewing 15 posts - 886 through 900 (of 7,168 total)
Perfect meaning all accounts or servers are registered, port numbers are spot-on, and even fully-qualified names are registered in case you used that, e.g. you could have registered servername.domainname.extension but...
July 9, 2013 at 8:36 am
Finding them in one of the tables referenced by sys.server_principals was just a hunch. They could be somewhere else too. Have you tried adding the Login and then dropping it...
July 9, 2013 at 8:09 am
I don't typically scrutinize the performance of DDL operations like an IF EXISTS...DROP block but calls to OBJECT_ID and OBJECT_SCHEMA_NAME will likely be equally slow. Joining to sys.schemas will likely...
July 9, 2013 at 8:06 am
When I have issues like this I run setspn /L and scrutinize the results. All SPNs have to be perfect for things to work.
July 9, 2013 at 7:49 am
You can select from those system tables only when logged in using the DAC.
July 9, 2013 at 7:03 am
It might be the table referred to by sys.server_principals. It's likely not documented.
July 9, 2013 at 5:27 am
I am assuming it is stored in a system table the first time it is resolved so it does not have to reach out to Active Directory every time you...
July 9, 2013 at 4:09 am
In that case you might try creating a Login from the Windows Account and then immediately dropping it.
July 9, 2013 at 3:42 am
Marzipan (7/8/2013)
What excel object model runs on a server?
July 8, 2013 at 8:08 pm
Chances are you need to issue ALTER LOGIN [DOMAIN\OLD.NAME] SET NAME = [DOMAIN\NEW.NAME]; to rename the SQL Server Login to have the same name as the Active Directory Account. This...
July 8, 2013 at 5:56 pm
Sounds like double hop issue. What accounts are the SQL Server services on the prod servers running as? Depending on the answer, either check for an SPN registered to the...
July 8, 2013 at 5:45 pm
Here is the script-form I use:
IF EXISTS ( SELECT *
FROM sys.objects
...
July 8, 2013 at 12:04 pm
This could be solved using the Excel Object Model in a Script Task, bit it would be quite involved to program such a thing and really wouldn't require SSIS at...
July 6, 2013 at 7:54 pm
The SqlBulkCopy class is the fastest way to load an ADO.NET DataTable to a SQL Server table.
http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlbulkcopy.aspx
July 5, 2013 at 8:09 pm
Sean Grebey (7/2/2013)
July 5, 2013 at 7:44 pm
Viewing 15 posts - 886 through 900 (of 7,168 total)