Forum Replies Created

Viewing 15 posts - 181 through 195 (of 244 total)

  • RE: Anyone have ideas how to solve deadlock problems

    does this assume that an insert is taaking a page level (or higher) lock?

  • RE: Anyone have ideas how to solve deadlock problems

    'Of course blocking could be reduced if you don't have a clustered index on an IDENTITY column....)'

    Why?

  • RE: The Best Database

    for sheer amount and complexity of data it has to be cricket

  • RE: Script to Sync Permissions

    alter schema transfer table to DBO

    fixed it in the end.

     

    Thanks,

    'Jules'

  • RE: Script to Sync Permissions

    Unfortunatly its a windows NT login that has got out of sync and this sp doesnt update them. the code below coems from that SP. Any Ideas?

     

     

    -- VALIDATE PARAMS -- ...

  • RE: Script to Sync Permissions

    Yep but cant update sys tables in sql9.

     

    this wopnt work anymore

     

    update

    u

    set sid = l.sid

    from

    ...

  • RE: SQL injection attacks

    Yep the user name and password are checked in dynamic  T-SQL this is because the DB they are in is passed in as a parameter.

    But a structure like

    CREATE PROCEDURE search_orders...

  • RE: Temp Table Vs table variable

    'A temp table is a DB object in tempdb, much different than a locally scoped variable'

    If enough data goes into a table variable it will create an object in tempdb....

  • RE: Grouping Issue

     

    Getting the aggregates into table variables rather than using sub selects will probably improve things but cant see quite how to do it without knowing the format of the sql...

  • RE: Temp Table Vs table variable

    Yep Thanks. of course the hint is in the name 'Tabke VARIABLE'.

    WQas reading the thread in responce to  the recent article on temp tables where the general concensus is...

  • RE: Is a Temporary Table Really Necessary?

    Code below illustrates one other difference between temp tables and table variables. That that dynamic sql can see temp tables created by calling script but cant see table variables. Presumably...

  • RE: Script to Sync Permissions

    cant delete user in current db as it is referenecd by a schema.

    need to delete or change schema first which means i must remove the schema from all db objects....

  • RE: Source Safe Integration

    figured it out anyway.

    Well enough to know that its still not air tight. You create a project and then have to script all your objects out into seperate files...

  • RE: How to open Report Builder as Web Application

    Access the report server via the web and click on the report builder tab

    the url should be somethign like //localhost/reportserver/

  • RE: Updating Tables on Linked Server

    This is an odd behaviour but i think your problem is the ANSI_NULLS and ANSI_WARNINGS setting under which the trigger was created and not the setting as set within the...

Viewing 15 posts - 181 through 195 (of 244 total)