Forum Replies Created

Viewing 15 posts - 1,456 through 1,470 (of 1,518 total)

  • RE: Identity Column in SQL Server - Transaction - MultiUSer

    Point well taken... 🙂

  • RE: Identity Column in SQL Server - Transaction - MultiUSer

    From "INSIDE MICROSOFT SQL SERVER 2005 - T-SQL QUERYING" by Itzik Ben-Gan, Solid Quality Learning, pg 429:

    Another aspect of the IDENTITY property that can be considered a limitation in some...

  • RE: CLR object to return Windows groups that a Win acct is a member of

    LDAP actually has an OLE DB -type provider, so you can actually set your Active Directory as some kind of linked server you can run queries against.

    This link seems...

  • RE: Fill Factor clarification

    Matt Miller (2/15/2008)


    At best -perhaps look at being more selective, and rebuild the one or two indexes in a database that get changed/fragmented a lot.

    Absolutely true!

    Do not re-index...

  • RE: Blackberry or smartphone for DBA

    Living and working in Canada, an hour's drive from RIM headquarters, I am partial to the blackberry... 😉

    I find it saves me time by helping me to clear out...

  • RE: Identity Column in SQL Server - Transaction - MultiUSer

    Another issue you need to watch out for, if your requirement is a contiguous sequence of values in the identity column with no gaps in between:

    The insertion of a new...

  • RE: Foreign Key issues

    Oops, let's try this again:

    ALTER TABLE your_table WITH CHECK CHECK CONSTRAINT your_constraint;

    USE your_db;

    SELECT OBJECT_NAME(parent_object_id) AS table_name, name

    FROM sys.check_constraints

    WHERE is_not_trusted = 1

    UNION ALL

    SELECT OBJECT_NAME(parent_object_id) AS...

  • RE: Foreign Key issues

    Disco (1/14/2008)


    I moved two tables from one server to another... after moving, the foreign key relationship is missing on one of the columns in the table in the destination...

  • RE: deadlock log - please assist

    You wrote:

    From research in interpreting this log, it looks like one node has an excludive on key_generator table and the other node has an update lock on the same table....

  • RE: .Net Framwork version from SQL

    AElsmore (2/15/2008)


    Is there a way that I can find out which version of the .Net Framework is installed on the SQL Server without having to use a CLR Assembly?

    I don't...

  • RE: Permissions to execute Assemblies...

    JMSM (2/15/2008)


    Hello,

    Can anyone tell me what permissions should i give to one user to execute Assemblies? and what is exactly one assembly?

    Thanks and regards,

    JMSM 😉

    An assembly is a unit...

  • RE: SQL Agent job not running simple SSIS package

    David Scotland (2/16/2008)


    Cannot find SSPI context is probably related to the SPN(service principal name) for the SQL Server not being set correctly.

    You can check this using adsiedit but intsead of...

  • RE: CLR and UDF

    Is the following specified at the top of your code?

    [SqlFunction(Microsoft.SqlServer.Server.SqlFunction(DataAccess=DataAccessKind.Read, SystemDataAccess=SystemDataAccessKind.Read)]

  • RE: CLR and UDF

    You wrote:

    ...Safe permission set doesnt solve the problem either, can you please elaborate a little more.

    Based on that, I have the feeling the code fails somewhere other than the SELECT...

  • RE: SQL Agent job not running simple SSIS package

    Is it possible for you to run the package in debug mode using Visual Studio locally on that server?

    Yes, it runs fine when I run each component seperately.

    Would it...

Viewing 15 posts - 1,456 through 1,470 (of 1,518 total)