Forum Replies Created

Viewing 15 posts - 106 through 120 (of 137 total)

  • RE: want to see ur knowledge

     

    Sufian, You cannot rollback a restore because it is a transaction.

     

  • RE: Giving pain to DBA

    Phil, you are right, in fact it is the most exciting thread I have ever been on!!!!

    I will be here all night if Sufian keeps on posting....

    Sufian, can you please answer Brian's question: "When you do have a successful log file backup, how large is it?"

    How do you dump transactions of...

  • RE: Giving pain to DBA

    Man....I'm too late!!! I miss all the great stuff. Anyway....

    Mohammad, what kind of DBA job is this? 200GB of log in 2mins??...you're kidding me!!!.

    What kind of users do you have??? They must be real...

  • RE: Is there a ROW ID

    ......sql server has identity column.

     

    cheers.

     

  • RE: How to query for primary keys

    I hope this help!

     

     declare @objid int,   -- the object id of the table

       @indid smallint, -- the index id of an index

       @groupid smallint,  -- the filegroup id of an index

       @indname sysname,

       @groupname sysname,

       @status int,

       @keys...

  • RE: DTS Step Names/DTSrun

    I know this can be a real pain sometimes.

    When you edit/save and run the dts in the gui it will run the latest version.

    In EM you need to refresh the...

  • RE: Global variables in SQL task

    sometimes we may forget....

    exactly what phil said, what's the datatype for TableName? 

  • RE: Global variables in SQL task

    if your global variable is a string type you shouldn't have any problem.

     

     

  • RE: Dynamic Properties Task

    What I did was:-

    1.create a data.INI file which contains something like this:

    [section] --name of the connection

    server=servername

    dbase=dbname

    uid=username

    pwd=password

    [section2]

    .....

    2. load this file into dynamic properties task.

    when you excute this step you will see...

  • RE: Server: Msg 306,.....The text, ntext, and image data.......????????????????

    As you already know if your field1 is a text/image type you can not do a straight compare ie. using '='

    you can use datalength(field1) to get the size but not very...

  • RE: Best Way to move data between databases?

    how about stored procs?

  • RE: Problem Renaming DTS Package

    DSP is right!!!

    General speaking, you can save package as another name and then delete the old parcel.

    One way is updating dts package names in dts tables including all versions.

     

     

  • RE: Roles and DTS Packages (Problem created versions)

    one way is save your packages with passwords, user enter the password then can do edit/save/exec.

    Another way is grant user with execute on sp_add_dtspackage, sp_get_dtspackage, sp_enum_dtspackages. Can be very harmful if user is 'not...

  • RE: Using SCROLL CURSOR in a user defined function

    deallocate your cursor before exit function.

Viewing 15 posts - 106 through 120 (of 137 total)