Viewing 15 posts - 886 through 900 (of 7,164 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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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.
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 9, 2013 at 7:49 am
You can select from those system tables only when logged in using the DAC.
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 9, 2013 at 7:03 am
It might be the table referred to by sys.server_principals. It's likely not documented.
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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.
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 9, 2013 at 3:42 am
Marzipan (7/8/2013)
What excel object model runs on a server?
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 8, 2013 at 5:45 pm
Here is the script-form I use:
IF EXISTS ( SELECT *
FROM sys.objects
...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 5, 2013 at 8:09 pm
Sean Grebey (7/2/2013)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 5, 2013 at 7:44 pm
Viewing 15 posts - 886 through 900 (of 7,164 total)