Forum Replies Created

Viewing 15 posts - 3,016 through 3,030 (of 7,502 total)

  • RE: More, More, More

    I would like a better search engine for SSC.

    One that works in general as well as in the "my posts" section.

    Maybe add an "extended search" or "search within results" button...

  • RE: datetime store method

    Don't fool yourself nor the engine and define the column using data type datetime !

    Rule no 1: tell the system what you know !

    Rule no 2: use the correct data...

  • RE: Strange table creation problem

    martinfalch (5/12/2010)


    Hmm I tried setting up the database using your code, but after running the query from before (this time referring to TimeSeries..SP rather than SP, since the original table...

  • RE: Strange table creation problem

    You are creating a db of 4Gb datafile + 2Gb log file .... to large !

    Can you give it a try using this ddl:

    CREATE DATABASE [TimeSeriesSSC] ON PRIMARY

    (...

  • RE: Strange table creation problem

    Can you script the create database ddl ?

    (rightclick on the db-name and then select Script database \ as create \ to query panel and then copy/paste the ddl.)

    This will only...

  • RE: Shrinking a SQL 2005 database

    Just my 2ct.

    Leave your db as it is until you are 100% sure it is actually over sized !

    (Someone will have put it to that size for a reason, figure...

  • RE: Strange table creation problem

    Your db files are >= 4Gb, which is the maximum for sql2005 express edition.

    You'll need to free up some space before your engine will be able to allocate it.

    You'll have...

  • RE: how do I find the IP of the 2005 sql server instance?

    another thing ...

    Are you sure your instance is listening at the port number you provided ??

    If I'm correct, in a connection string, if you provide the port number, it will...

  • RE: DBCC SHRINK FILE

    file 1 is a data file.

    Shrinking it 500MB at a time will be to much overhead for your operation, especially if you know it only contains 20% worth of data.

    I...

  • RE: How to check if a database is being used?????

    You could use a server level DDL trigger in combination with a database set AUTO_CLOSE on.

    (check BOL DDL Statements with Server Scope (ALTER_DATABASE) )

    and just register if it is...

  • RE: Backup Device - Delete after x days ?

    afaik you cannot delete a part of a backup file.

    A backup device is just a pointer to an actual file.

    If you use backup with init, that file wil...

  • RE: Update Table

    That shouldn't be a problem.

    please check out Identifiers http://msdn.microsoft.com/en-us/library/ms175874.aspx regarding your table name containing the #.

    Avoid special chars in your object names or always use brackets ([ ]) with your...

  • RE: Subqueries performance issue

    the lack of indexes, clustering indexes and foreign keys will indeed kill this kind of queries.

    Determine a primary key for every table and if you can, determine foreign keys that...

  • RE: stored procedure that will get all records for date range

    Denise McMillan (4/30/2010)


    I was wondering how the max works in the max(case... portion of your example?

    Also, what did you mean when you referred to this:

    - you also need to...

  • RE: Do I need a cursor?

    By default you don't need a cursor ! :w00t:

    double check your data !

    I think you misplaced column names for [CurrentTalkTime] and [IncrementalTalkTime].

    VALUES( 2 ,'2010-04-28', 510016, 135, 120, 15, '2010-04-28 15:00:00.000')

    Considered...

Viewing 15 posts - 3,016 through 3,030 (of 7,502 total)