Forum Replies Created

Viewing 15 posts - 12,646 through 12,660 (of 13,469 total)

  • RE: Profiler Execution Plan and Encrypted SP''''s

    i just tested this, and it looks like you can see the execution plan;

    i made a crappy proc, and tested it with encryption and without; both times i could see...

  • RE: Table with increment charter ID field

    Sergiy's idea is exactly what we suggested for someone else to do:

     below i'm pasting a function that will create a value AA001 thru ZZ999 (675999 values max before this function...

  • RE: Unlimited columns

    good luck; it's been a while since i fiddled with access, but i remember access 2000 had a 255 column limit; maybe the more updated version might not have that...

  • RE: back indexes of a database

    i wrote this a while back:

    it scritps out all PK, Uq and regular indexes. remove the top 100 to get all results, this can be a HUGE resultset, depending on...

  • RE: Data Conversion Failed Importing from text file

    i see errors like this when the source file is not formatted perfectly...for example, if you think the file is comma delimited, but a COMPANY column has a a comma...

  • RE: Help needed on update statement

    I consider it a bad practice to insert summary data into another table...it is very, very possible the data could be out of sync.

    you should simly use a VIEW instead.

    CREATE...

  • RE: Unlimited columns

    i would not let a non-dba force me to use an unfamiliar product just because someone wants a lot of columns in a table...I would stick with a product i...

  • RE: SQL Script - Compare data between tables in record level.

    lots of different scripts to do this in the scripts contribution area; search for "compare" and youll get results like these:

    ScriptsRatingSearch Score
    Smart Index Manipulation...
  • RE: Help needed on update statement

    CREATE PROCEDURE PR_YOURPROCNAME(=@MS_ID INT,=@PROJECT_ID  INT) AS

    UPDATE COST_PROJECT_PHASE

    SET COST_PROJECT_PHASE.CONSTRUCTION_CONST = COST_PROJECT_PHASE_UNIFORMAT

    FROM COST_PROJECT_PHASE_UNIFORMAT

    WHERE COST_PROJECT_PHASE.MS_ID     = COST_PROJECT_PHASE_UNIFORMAT.MS_ID

    AND COST_PROJECT_PHASE.PROJECT_ID = COST_PROJECT_PHASE_UNIFORMAT.PROJECT_ID

    AND COST_PROJECT_PHASE.MS_ID=@MS_ID

    ANDCOST_PROJECT_PHASE.PROJECT_ID =@PROJECT_ID

  • RE: Query for registry entry date and time.

    you are right...you can read or write a registry key, but there is no log or anything to tell you when a registry key was created/edited.

    if there is a key...

  • RE: scripting primary and foreign keys

    i should have mentioned, and you probably found it...the second sql can produce a ton of results, so i limited it to top 100...you'd pull that out to get all...

  • RE: scripting primary and foreign keys

    if you have access to the original db on 2005, you can use the scripts below ; here you go:

    first script generates both drop and add foreign key statments;

    second script...

  • RE: Sql 2000 production server SP4 not installed

    it's been a couple of months since i last installed an SP4 on a SQL server, but it went less than 15 minutes as i remember; if your server is...

  • RE: Placeholders in EXEC statements

    because you are doning dynamic SQL, you'll want to put the SQL command in a string with a placeholder, and then replace the placeholder prior to the real exec statement....

  • RE: Sql 2000 production server SP4 not installed

    time changes are at the operating system level..there is a registry patch for the operating system to change the daylight savings time on the new date available from microsoft...

    sql server...

Viewing 15 posts - 12,646 through 12,660 (of 13,469 total)