Forum Replies Created

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

  • 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,...

  • RE: Filling NULL values

    im assuming your ID column is an identity...using the code below, if you repeat the update several times until no rows are affected, this will work:

    [font="Courier New"]

    CREATE TABLE EXAMPLE(

    ID    INT IDENTITY(1,1)...

  • RE: Stored Procedure SQL

    if you sp_helptext procedurename, it returns the text of the procedure, including all its comments, in the same format as wehn last created/altered.

    if you do this in gridmode in SSMS,...

  • RE: Reading from a document without using OPENROWSET

    if openrowset is disabled, then most likely xp_cmdshell and sp_OACreate are disabled as well, which were your other options...

    I think in this case, the solution is to NOT do it...

  • RE: Retrieve column headers for INFORMATION_SCHEMA

    well, the web page itself would run the query, and stick the results in either an ADODB.Recordset, or a .NET DataTable or DataReader, right?

    both of those have access to teh...

  • RE: How to avoid Table scan from temp db

    the same as any other table...after you create it, you'd need to create an index on the table, even if it is in tempdb. that's the only way to improve...

  • RE: Techniques for passing extra information into procedures and triggers

    I think what you are talking about is CONTEXT_INFO;

    you can store some information in there, and it is specific to the connection; typical examples might be the username from...

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