Forum Replies Created

Viewing 15 posts - 47,341 through 47,355 (of 49,571 total)

  • RE: Noncluster at sysindexes

    No, no, no. I didn't mean delete from the system table. That's guaranted to stuff things up.

    I meant drop the index.

    DROP INDEX <TableName>.<IndexName>

  • RE: Noncluster at sysindexes

    If you try to drop one of those indexes that appears in sysindexes for that table, what happens?

  • RE: Noncluster at sysindexes

    Please don't post multiple threads for the same problem

    Replies to the following thread please - http://www.sqlservercentral.com/Forums/Topic458367-5-1.aspx

  • RE: Noncluster at sysindexes

    Strange.

    Can you run a checkDB on that database? See if there's any form of corruption.

    Do you know if anyone there does direct updates of the system tables? check if updates...

  • RE: DTS doesn't run on a 64-bit server

    Typical management. Tell them straight, there is no 64 bit solution to this problem.

    If you have SQL Server 2005, you can rewrite all the DTS packages in SSIS (not...

  • RE: SSIS Experts

    Please don't cross post. It wastes people's time. Mos of us read all the forums.

    Replies to the following thread plase - SSIS Expert

  • RE: DTS doesn't run on a 64-bit server

    As far as I know, there's no 64 bit compile of DTSRun.

    I ran into exactly the same issue when we moved our app onto an Itanium. We had to...

  • RE: How can I ORDER BY AM PM of DateTime Stamp

    You're ordering by the string conversion of a date, not the date time itself. Therefore 10:24 PM comes before 6:45 AM. (because 1 comes before 6)

    If datetimestamp is a datetime...

  • RE: awe enable

    Please don't cross post. It wastes people's time.

    Replies to the following thread please - AWE Settings

  • RE: Triggers per second

    I don't know if there's a limitation,and I'm almost scared to ask why you're asking. In general, my opinion on triggers is as few as possible, executing as infrequently as...

  • RE: AWE SETTINGS

    What edition of SQL? What OS? 64bit? 32 bit?

    Do you have the /pae switch in the boot.ini file?

    Did you restart the SQL instance after enabling AWE?

  • RE: Question about when to use different types of tables

    Jeremy (2/19/2008)


    Temp Tables

    ...

    3. Are persisted in tempdb

    So are table variables. Both will reside only in memory unless there is memory pressure, or the number of rows becomes too large to...

  • RE: Question about when to use different types of tables

    I wrote a short comparison of temp tables and table variables a while back. - Temp tables vs table variables[/url]

    Might be of some use.

  • RE: Locking issues

    7 indexes shouldn't slow an insert down that much.

    Can you post the code for that step, the table structure and the index definitions please? Also check to see if there...

  • RE: selecting dist records

    This should do what you want.

    The subquery gets the max date for each parent product. Then join the subquery back to the table on both columns to get the rest...

Viewing 15 posts - 47,341 through 47,355 (of 49,571 total)