Forum Replies Created

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

  • RE: RollBack Problem

    You're missing things alright.

    begin transaction tl

    delete from table

    commit transaction tl

    At this point the only way of getting back to the database state BEFORE the delete was executed, is to go...

  • RE: junction table questions

    Aha...well that bit (an account can play more than one role for a fund) was left out of the description.

    But it may also point to a need to go down...

  • RE: junction table questions

    "1. Funds

    Fund_ID int PK

    Fund_Number varchar(10)

    2. Accounts

    Acct_ID int PK

    Account_Number

    3. FundsAccounts

    FundsAccounts_ID int PK

    Fund_ID int

    Acct_ID int

    Role_Description varchar(20)"

     

    I have to query/challenge your starting presumption of automatically using a 'generated' key for the primary keys.  Each table should...

  • RE: RollBack Problem

    "But by tlog information in BOL microsoft says that we can recover any transaction from tlog."

    You can recover info using the TLOG...PROVIDED it's STILL in the TLOG.  The TLOG is...

  • RE: Determine Scanned Image Page size from Access

    The most consistant advice I've seen re images is to keep them out of SQL Server altogether...just use references to the physical files stored on a LAN/SAN.

  • RE: IT Unions

    "Ban Canadians".....

    my my ....somebody doesn't like the 51st state (what crappy beer did the some barperson give you?....or are you jealous of the view of Niagara Falls from the northern...

  • RE: AlphaNumeric code generator

    Why not just take 10 random characters out of a call invoking NEWID().......

  • RE: how to find a rowcount for a long-running process

    The delay is possibly related to the size of the single transaction into tablec.

    Can this process be broken into smaller sub-steps with smaller commit points, where each successive execution, loads...

  • RE: Long Running Transaction when inserting large amounts of data

    Couple of things.

    a) Do the clustered indices help support user queries, or "are they just there...because of a historical decision"...because if the data is not being loaded in a manner...

  • RE: Casting a CHAR to an INT

    beware

    "SELECT SCRCTG, * FROM tblIntelecDownload WHERE ISNUMERIC(SCRCTG) = 0"

    won't deal with some 'char' data...ie numbers which can be represented using "scientific notation" ....particularly D and E

  • RE: Need advice on SOX compliant policy for access to generic admin accounts.

    SOX is about seperation of duties and the creation of procedures to monitor and control same.  Once you have a procedure in place to cover the 'viewing/usage' of an 'SA'...

  • RE: New SQLServer box for better performance

    You'll waste the full benefit of that budget IF you put the Web server on the same machine as the SQL server.  2 memory hogs don't live well in the...

  • RE: SQL Server Performance issue

    Application server....  ".Net"?...advice seen elsewhere is "not to run SQL server and IIS on the same server".

    Presume you have "Profiled" the SQL code + DB to ensure you have optimal...

  • RE: Project management recommendations please

    Red-gate.com have a net based bug-tracking application (hosted and  inhouse versions or so I read)....they also produce the SQL Compare product.

  • RE: SQL Execution Plan Bug!

    In effect your query is one of the type "give me every record or give me some records".  However the Plan must deal with both situations....and a "give me every...

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