Forum Replies Created

Viewing 15 posts - 16 through 30 (of 84 total)

  • RE: MSDB Job History Tables

    Do you want to import on a scheduled basis or do you just want to link and then create a view which shows everything dynamically in real time?



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: how can we create Index on view?

    CREATE INDEX [NewIndexName] ON [ViewName]([ColumnName])



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: MSDB Job History Tables

    One option would be to create linked servers and then to create a view where you could do a union all to link tables together.

    Create a linked server:

    sp_addlinkedserver

    @server='Target1',

    @srvproduct='',

    @provider='SQLNCLI',

    @datasrc='SERVER'

    Create a view...



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: AWE ,memory management and 64bit OS

    Ells,

    The AWE settings and the Min & Max memory settings are seperate. You do not need to turn AWE on to be able to set these.

    For more explanation on AWE...



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: sysprotects fun...

    These OR branches are doing slightly different things and therefore i dont think i can do this using 1 statement.

    This branch is bringing back the first byte from the columns...



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: sysprotects fun...

    Success. See what you think of this.

    SELECT

    su2.name as 'Owner',

    so.name AS 'Object',

    su.name AS 'Grantee',

    su3.name AS 'Grantor',

    'ProtectType'=

    CASE sp.protecttype

    WHEN 204 THEN 'GRANT_W_GRANT'

    WHEN 205 THEN 'GRANT'

    WHEN 206 THEN 'DENY'

    END,

    'Action'=

    CASE sp.action

    WHEN 26 THEN 'REFERENCES'

    WHEN 178...



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: sysprotects fun...

    By the looks of things to fix this issue i cannot use the power function as that specifically returns an int value based upon the data type of the input...



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: sysprotects fun...

    Yep your right it falls over on the 32nd. Have been working on this since about 5 mins after posting the entire script. Will try and intgrated the new code...



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: sysprotects fun...

    Or the entire script to get all object based permissions is...

    SELECT

    su2.name as 'Owner',

    so.name AS 'Object',

    su.name AS 'Grantee',

    su3.name AS 'Grantor',

    'ProtectType'=

    CASE sp.protecttype

    WHEN 204 THEN 'GRANT_W_GRANT'

    WHEN 205 THEN 'GRANT'

    WHEN 206 THEN 'DENY'

    END,

    'Action'=

    CASE sp.action

    WHEN...



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: sysprotects fun...

    I tried you code but i didnt get the result i expected. Though thanks to the ideas put forward in your script i have managed to get what i think...



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: sysprotects fun...

    Cool thanks.



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: sysprotects fun...

    How would i join this to the varbinary value and also offset it as the first binary bit is the all permission setting?



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: SSIS Script Task Compilation Error

    Hi,

    I have found the issue. I was given the package to troubleshoot without the knowledge that there was a custom dll in use. By adding this custom dll into the...



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: Restore VerifyOnly hangs server

    Have a look at this link and see if it helps.

    http://forums12.itrc.hp.com/service/forums/questionanswer.do?admit=109447627+1214330952654+28353475&threadId=180196



    Nuke the site from orbit, its the only way to be sure... :w00t:

  • RE: Job Activity Monitor SQL 2005

    Have you tried looking at the history tab in the SQL Server Agent properties? This may be clearing some of the history information out.



    Nuke the site from orbit, its the only way to be sure... :w00t:

Viewing 15 posts - 16 through 30 (of 84 total)