Forum Replies Created

Viewing 15 posts - 1 through 15 (of 54 total)

  • RE: column does not allow nulls. INSERT fails

    Whatever connector your website is using to connect to the database is setting some defaults that are causing your temp table columns to default to NOT NULL.

    You can reproduce...

  • RE: Get Rid of Duplicates!

    The row_number() method is by far the quickest and cleanest method. If you've never used row_number() before, do yourself a favor and learn it.

    one modification to JP's code.. "......

  • RE: Please help me

    This may not be exactly what you're looking for, but you could create a wrapper stored procedure that the job calls. this sproc would do whatever calculation or querying necessary...

  • RE: Annoyances

    mpalecek (3/27/2009)


    The thing that I think is terrible is the coffee pot. We used to have someone in the office who would take the last full cup of coffee and...

  • RE: Annoyances

    There was a guy that sat in the cube next to me. Nice guy, but everytime he would talk on the phone, and only while he was talking, he would...

  • RE: Table Copy

    There are 2 ways you can do this.

    If you want all the constraints in place in the new location before the data is imported, I would suggest defining the...

  • RE: problem in generating the required data

    I agree with Jeff.

    There doesn't appear to be a relation between memberEventID and BillingId. If you want to display the results (memberId, billingID, memberEventID), and return only 6 rows,...

  • RE: Stored procedure to Update the table

    Hi, your question is not entirely clear. Are you simply trying to update a table? Are you trying to change the primary key of the table?

    Please elaborate.

  • RE: Stored Procedures Execute Permissions

    They way I do it is that I have all my sprocs scripted out. At the bottom of the script, after a GO statement, i have the permissions that are...

  • RE: Tables Taking lot of time for delete

    Please post the textual version of the execution plan.

    before you run your query, run this.

    set statistics profile on

    GO

    you should see a textual plan at the bottom of...

  • RE: Stored Procedure Management

    We have an in house data utility that allows us to script out every object in our database. We go all the way down to the smallest detail; storing indexes,...

  • RE: SQL 2005 Mirroring/Replication/Clustering ideas/thoughts

    I agree with Roy. This sounds like a classic example of a scenario that would require merge replication.

    As long as your requirement is that updates need to take place...

  • RE: Stored Procedures Execute Permissions

    Perry Whittle (2/19/2009)


    granting execute on a stored procedure to a user does not require that user to have permissions to the underlying tables

    The only time you may run into problems...

  • RE: Metadata for computed column does not match column definition

    A number of tables that have computed columns return the message "Metadata stored on disk for computed column 'xxx' in table 'dbo.zzz' did not match the column definition. In order...

  • RE: Transactional replicatrion or merge replication?

    Roy, i wouldn't say your idea is outrageous. There is always a place for custom solutions. However, I still feel that even with the connection issues that Aldo's client is...

Viewing 15 posts - 1 through 15 (of 54 total)