Viewing 15 posts - 3,601 through 3,615 (of 7,168 total)
Grasping now...
Are you using Kerberos or NTLM? I am thinking cached tickets.
Have you tried bouncing the SQL service? The server?
July 11, 2012 at 3:14 pm
Jack Corbett (7/10/2012)
The only issue with Extended Events on 2008 is that there are some key events that aren't available in Extended Events...
July 11, 2012 at 3:11 pm
Officially MS only supports 2 previous versions in terms of the compat level, i.e. database compat mode 80 is no longer available as of SQL 2012. I would not be...
July 11, 2012 at 3:00 pm
Right, transactional replication is not possible from 2012 to 2000. I have seen people add a shim (not official technical term) database in between to facilitate replication between incompatible platforms,...
July 11, 2012 at 2:50 pm
A Subscriber to a transactional publication can be any version within two versions of the Publisher version.
2000 is three versions away from 2012.
July 11, 2012 at 2:26 pm
What I would really like to see is a before and after CSV file.
The before file being what you receive from your external data supplier.
The after file being...
July 11, 2012 at 2:17 pm
On the problem instance can you do this?
EXECUTE AS LOGIN = 'NewLoginName';
GO
REVERT;
GO
EXECUTE AS LOGIN = 'OldLoginName';
GO
REVERT;
GO
July 11, 2012 at 2:10 pm
What does this yield on the working instance? How about the non-working instance?
EXEC sys.xp_logininfo
@acctname = N'GROUPNAME',
@option = 'members';
July 11, 2012 at 1:40 pm
Thanks. The persistent use of memory while the cursor is open is not necessarily the same as a memory leak. Of course if your system must support a large volume...
July 11, 2012 at 1:28 pm
Hadrian (7/11/2012)
yes you can ,change the compatibility when it finish.
I think Hadrian was answering the initial post, not sjimmo, in which case the response makes sense. Look at the time...
July 11, 2012 at 11:03 am
kprmcl (7/11/2012)
Hadrian (7/11/2012)
yes you can ,change the compatibility when it finish.
Is this the way to do it, or should I use a stored procedure?
ALTER DATABASE...
July 11, 2012 at 10:02 am
See if something like this is interesting to you. I get something like this, which should be easily parseable by PS:
C:\>dsquery group domainroot -limit 2 | dsget group -members |...
July 10, 2012 at 6:15 pm
mtillman-921105 (7/10/2012)
July 10, 2012 at 4:16 pm
BULK INSERT supports the use of a format file. See the FORMATFILE option: BULK INSERT
Depending on what you meant:
Using a Format File to Skip a Data Field
or
July 10, 2012 at 3:07 pm
Viewing 15 posts - 3,601 through 3,615 (of 7,168 total)