Forum Replies Created

Viewing 15 posts - 56,626 through 56,640 (of 59,067 total)

  • RE: How to fix a non-indexed huge table?

    Sorry Andreas... That's absolutely incorrect and you really need to check your facts before making such an unqualified statement... Try this... insert a column in the middle of an existing...

  • RE: get the data & log file path

    You are partially correct... all of the SQL objects will be constructed from what is in the MODEL... However, the listing from sysfiles shows the following file names for the...

  • RE: How to fix a non-indexed huge table?

    Heh... I missed THAT!  Not only does the table need some fixin', but you do need to add some memory!  My desktop box has a gig... a server running standard...

  • RE: get the data & log file path

    Cory,

    Great idea but, the Model DB files don't show where new files would be made (as a default)... they only show where the current Model files are.

    For the other DB's, then sysfiles...

  • RE: Creating a datafile via UDF, Sproc?

    KBrown,

    You all set?  Michael's solution seems to do what you asked but just making sure (pretty cool sequence generation function he's got there, huh?) because of the duplication of stock...

  • RE: get the data & log file path

    You DO need to access the registry... You can either do it from the front end or you can read them using the unsupported xp_RegRead stored procedure.  For SQL Server...

  • RE: T-SQL and The Excel Solver

    Yardstick?  Is that anything like the 2x4 I normally use?

  • RE: How to fix a non-indexed huge table?

    Oh yeah... almost forgot... you need a complete list and script for any triggers that may exist on the table as well as a complete list of views that use...

  • RE: How to fix a non-indexed huge table?

    Ok, I can tell you're just a little nervous about this whole thing and I don't blame you one little bit... so, here's the plan and why I asked the...

  • RE: Noobish Question

    Nope... I've seen this before... I call it "chain" join.   If we look at Wade's join "chain"...

    FROM Inventory AS I

    JOIN Block AS B

    JOIN Phase AS P

    JOIN ProjectSub AS PS

    JOIN...

  • RE: evaluation on a select case column

    Only way that could happen is if group_sec doesn't exist...  what do you get when you run the following?

    SELECT COUNT(Group_Sec) FROM TestTable

  • RE: will union work

    They do the same thing where I work and it drives me nuts... what's the purpose of an archive?  Right... to move infrequently used data out of the way for...

  • RE: Primary key violation

    Using a cursor to do a simple "UPSERT"??  You an Oracle programmer, Simon?

  • RE: Performance Problem when using partitioned view against actual table

    Real answer is... don't use a partitioned view.  SQL Server can handle huge tables.

  • RE: How to fix a non-indexed huge table?

    Here's the schema you posted...

    CREATE TABLE [dbo].[IISlog] (

     [date] [datetime] NULL ,

     [time] [datetime] NULL ,

     [c-ip] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,

     [cs-username] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS NULL ,

     [s-ip] [varchar] (255) COLLATE SQL_Latin1_General_CP1_CI_AS...

Viewing 15 posts - 56,626 through 56,640 (of 59,067 total)