Forum Replies Created

Viewing 15 posts - 76 through 90 (of 457 total)

  • RE: Temp Tables

    In my experience reporting services has a lot of trouble with temporary tables. If possible wrap the code into a stored procedure and have RS execute the procedure.

  • RE: Warnings turn off

    Wow, what the heck do you have to store that takes so much space???

    I don't know of any way to disable that warning, however I would caution you against the...

  • RE: Warnings turn off

    Wow, what the heck do you have to store that takes so much space???

    I don't know of any way to disable that warning, however I would caution you against the...

  • RE: temp table

    Doh, I totally misread...

    I'd create a table with the columns specified in the result sets from BOL for sp_spaceused. Then you could do something like this:

    EXEC sp_msforeachtable 'INSERT #spaceused...

  • RE: temp table

    Temporary tables are created in tempdb so you'd have to execute it there... i.e. exec tempdb..sp_msforeachtable 'sp_spaceused ''?'''

  • RE: subquery???

    Your subquery would acts like a virtual table. Tables need to be referenced using the FROM clause in this case. You'll need to not use WHERE IN but...

  • RE: primary key violation using DTS export wizard

    The problem is that your target table has a primary key which enforces uniqueness across a certain set of one or more columns. You can do a few things...

  • RE: CRLF

    Look into using the LEFT() and CHARINDEX() functions to search for the results of CHAR(13) which resolves to a new line.

    That should get you started.

  • RE: Compatibility Modes

    Yes, it's normal for it to stay in the earlier compatibility mode in my experience. If you update it to compatibility mode 80 it will open up the ability...

  • RE: XPSMTP

    I've used XP_SMTP before and found it's pretty darned cool. But if you want to receive e-mails in 2000 you're going to want to use SQL Mail. But...

  • RE: Using Multi-Select Parameters

    You can use it in combination with an IN statement. I see it frequently like this:

    wHERE a.mycolumn IN ( @MultiSelect )

  • RE: Need an advice

    Jeff brings a good point (I was in a meeting while responding the first time so I'm sorry if I was brief). The issue is that if you're noticing...

  • RE: Need an advice

    I would suggest a defrag of the indexes. Rebuild them if you have a maintenance period. Statistics are great, but good statistics on a bad index is only...

  • RE: Help getting rid of sql default tables

    Agreed, this reeks of troll. All the same, I usually try to be helpful (with varying degrees of effectiveness); I'll take down my sarcastic comments from the other thread...

  • RE: Urgent Help Needed!!!!

    Methinks this is a Friday joke... 😉

Viewing 15 posts - 76 through 90 (of 457 total)