Forum Replies Created

Viewing 15 posts - 3,076 through 3,090 (of 6,486 total)

  • RE: Server Side Paging With SQL Server 2005

    jacob sebastian (5/30/2008)


    You can find the total number of rows by using 'COUNT(*) OVER(PARTITION BY '')'. I think some one has already mentioned this earlier in this thread.

    You can...

  • RE: display data columnwise in table

    You've given us just about nothing to work with. You going to have to be more specific.

    looks suspiciously like something you should be leaving to your presentation layer to...

  • RE: About MS SQL 2000

    With the amount of info you have right here - it's just about impossible to give you anything mucvh to work with. You need to review the execution plan...

  • RE: How do you merge multiple SQL 2005 Express databases

    Sounds to me like you're angling towards using some kind of table-wise UNION setup to get your reports. That's certainly something that can be done vai T-SQL.

    Depending on what...

  • RE: ADODB.command is not executing stored procedure

    Also - perhaps try setting NOCOUNT on in your stored proc. Messages being returned might be getting misinterpreted too.

  • RE: Job Specialization - Boon or Bane?

    Ted Pin (5/30/2008)


    Loner (5/29/2008)


    Companies keep saying they can't find the right person, do they know what they are looking for in the first place?

    That is a really good point. The...

  • RE: Find recently altered tables and SP's

    In 2005, there are two things that come to mind (well - two different method to get to the same place):

    - there's a default trace running, which keeps track...

  • RE: Cannot insert the value NULL

    Jeff Moden (5/30/2008)


    I don't believe anything is missing... just alter the column like I did... don't mess with the constraint or the default.

    I understand - I guess I've been focusing...

  • RE: Index on a Temp table conundrum

    Michael (5/30/2008)


    Thanks for all of the feedback. I realize I should have provided a bit more detail. After I posted, I learned, by reading the help files that;

    -...

  • RE: Cannot insert the value NULL

    Jeff Moden (5/30/2008)


    Look at the code, guys... column was previously defined as NOT NULL.

    Dunno if it'll work because no one provided the code for the rest of the...

  • RE: Running Stored Procedure from Access

    Create a passthrough query in Access... Connect it to your DB.

    Just type in as the query:

    Exec MyStoredProcedureName @Myparameter='MyString'

    Save query - run it.....

  • RE: Index on a Temp table conundrum

    How about making sure the name is unique?

    Just create the table, then look up its object_ID(). Doing that will return the #Temp table you created, even if...

  • RE: Covering Index vs Included Columns

    There should be, although how much might be debatable. Ultimately - I think the "sweet spot" is the version you didn't include:

    CREATE NONCLUSTERED INDEX IX_OrderDetailDateProdSold ON dbo.OrderDetail

    ( OrderDate ASC,...

  • RE: Cannot insert the value NULL

    You could always add the constraint with NOCHECK and then enable the constraint. That will prevent any FUTURE nulls from getting in.

  • RE: Cannot insert the value NULL

    Have you check if there were nulls in column B? I know you had a constraint on it, but if it was disabled or if the constraint was added...

Viewing 15 posts - 3,076 through 3,090 (of 6,486 total)