Viewing 15 posts - 3,601 through 3,615 (of 7,164 total)
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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,...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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.
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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';
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 11, 2012 at 1:40 pm
How are things going?
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 11, 2012 at 1:32 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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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 |...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 10, 2012 at 6:15 pm
mtillman-921105 (7/10/2012)
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
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
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 10, 2012 at 3:07 pm
I have it installed on my XP workstation and I think it came with the Admin Tools Pack. I installed it so I could easily look up AD group members...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 10, 2012 at 10:12 am
Booo 😛
You could explore the possibility of using the command line tool dsquery which is available on XP. I have used it before, but never for automation. However with...
There are no special teachers of virtue, because virtue is taught by the whole community.
--Plato
July 10, 2012 at 10:00 am
Viewing 15 posts - 3,601 through 3,615 (of 7,164 total)