Forum Replies Created

Viewing 15 posts - 3,331 through 3,345 (of 7,498 total)

  • RE: incorporating time constraints on NT security

    Currently SQL2005 is on SP3 for a while now ! You should evaluate it and upgrade if you can !

    The logon trigger (available with sp2) is only validated...

  • RE: Database Partition

    Tara-1044200 (11/4/2009)


    I have database with 100's of partitions ( a partition for a month) , how can i add or delete partitions on 2TB database.

    example:2TB of databases containing 20 yrs...

  • RE: incorporating time constraints on NT security

    If you have SQL2005 SP2 or higher have a look at http://www.simple-talk.com/sql/sql-server-2005/logon-triggers/

  • RE: Cannot run jobs

    - please post in the correct forum ! ( this is a sql2005 forum )

    - the lack of SQLAgent manager role is one of the weak spots of SQL2000 ...

  • RE: copy db from one server to another

    HTH

    Keep in mind that if you are using sqlauthentication and didn't migrate the sqluserid including the SID, you must resync the user ids using:

    -- to be executed per sqluserid !

    exec...

  • RE: SQL SP3 issue. urgent help

    What issue did you encounter to validate the need to uninstall the sp ?

  • RE: Find "lock pages in memory" option

    Robert Frasca (10/30/2009)


    Just to clarify. If you're using 64-bit SQL Server it is recommend that Lock Pages in Memory be enabled and that the AWE enabled switch be set....

  • RE: Login issue

    it isn't mandatory, but it helps for sure :-P:-D

  • RE: Deleting huge data from a table

    I posted my SQL2005 script, because you posted in the SQL2005 forum !

    for sql2000 you can use:

    SET NOCOUNT ON

    SET ROWCOUNT 1000

    WHILE 1 = 1

    BEGIN

    DELETE TableName WHERE <Your Condition Here>

    ...

  • RE: copy db from one server to another

    Anamika (10/30/2009)


    thanks,

    but to take a back up i don't have space in the server. it'z a 200gb database.

    regards,

    anamika

    You can also produce the backup to a remote location, provided you grant...

  • RE: I vant your blud!

    That's an eye opener indeed !

    In many cases we only see the beauty of life, once we have to mis part of it.

    For Belgium these links may get donation started:

    Flemish...

  • RE: copy db from one server to another

    If both sqlservers can "see" eachother and the destination service account has read auth on the source servers backup folder, you can restore using the source server bak files

    restore database...

  • RE: Deleting huge data from a table

    This is one way to work with batches:

    If you don't switch to simple recovery, you log files may get filled up and even grow !

    If you switch to simple recovery,...

  • RE: Login issue

    or maybe someone just dropped the database that had been set for default database of the service account.

    Solution:

    ALTER LOGIN [ictlan\MSSQLSERVICE] WITH DEFAULT_DATABASE=[master]

  • RE: C:\ filling up "SELECT *"

    Thank you both for clarifying how to change that behaviour at windows level;

    I hadn't been looking in that direction, because in many cases, when you encounter this behaviour, it points...

Viewing 15 posts - 3,331 through 3,345 (of 7,498 total)