Forum Replies Created

Viewing 15 posts - 11,596 through 11,610 (of 13,469 total)

  • RE: Calling Stored procedure at specific time

    again, I call BS.

    what possible business process needs to scan the table every 30 seconds? how often is the table queried against per second? you've explained just fine what you...

  • RE: View and SQL2000 performance

    When it comes to beating a dead horse with management, I've been there as well....sometimes they don't want to listen.

    What is the real issue by the way? cursors? we might...

  • RE: Database Migration from 2000 to 2005

    steveb's suggestion is the best, bar none. copy database wizard is not reliable compared to the built in ability of a SQL 2005 server to update an existing 2000 MDF...

  • RE: Trigger problem

    for a trigger to be handled correctly, you cannot declare variables....

    you have to keep everything SET based.

    once you declare a variable, you are telling me you are thinking of one...

  • RE: Using text data type in sql server 2000

    you can do it in 8000 char bites. the NULL parameter in your original statement below is WHERE to insert more text in the text field, and thenext parameter...

  • RE: How to avoid Table scan from temp db

    a table scan isn't necessarily evil....is the select very slow or anything?

    how many rows are in the temp table?

    what is the CREATE TABLE statement for the table?

    is there...

  • RE: Using text data type in sql server 2000

    you can't put a select statement there, only a string. you cannot select all columns in a table as a string...you'd have to build a string and use that.

    you'll need...

  • RE: Clustered Index in SQLCE?

    from what i read, you cannot create a clustered index on CE other thant eh PK of the table'http://www.developmentnow.com/g/97_2005_2_0_0_384968/Clustered-Indexes.htm

    also, CE can only use one index at any time, but i...

  • RE: Date value not poplating on my form

    also stating the obvious...maybe in one database, the field is not null, and the database that doesn't show the value it is null...did you query both dbs to check the...

  • RE: Preserve EM registered server and SQL server group

    ok i think the per user settings are here:

    HKEY_CURRENT_USER\Software\Microsoft\Microsoft SQL Server\80\Tools\Client\PrefServers

    for a user that is not logged in, i found a different set of servers here:

    HKEY_USERS\S-1-5-21-515967899-1220945662-839522115-500\Software\Microsoft\Microsoft SQL Server\80\Tools\Client\PrefServers

    his specific SID...

  • RE: View and SQL2000 performance

    and building on happycat's list:

    how are applications getting data from the views? if the application is doing SELECT * from 100GigView with no WHERE statement, and then filtering the recordset...

  • RE: Preserve EM registered server and SQL server group

    Lester on my machine, my 8.0 list of names are in the following key in the registry:

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer\Client\SuperSocketNetLib\LastConnect

    i don't know where the passwords are, but you could at least keep ...

  • RE: Filling NULL values

    forum software ...add a closing parenthesis right before the q...

    ) q

    it took amersand-nbsp-semicolon)

    and turned it into this:

    😉

  • RE: Filling NULL values

    nice noel; adding that to my snippet collection.

  • RE: Calling Stored procedure at specific time

    bad news: I agree with your client. there is no reason to to try and update a column every 30 seconds or one minute or on a specific schedule,...

Viewing 15 posts - 11,596 through 11,610 (of 13,469 total)