Viewing 15 posts - 11,596 through 11,610 (of 13,463 total)
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...
February 12, 2009 at 4:33 am
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...
February 11, 2009 at 9:16 pm
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...
February 11, 2009 at 8:26 pm
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...
February 11, 2009 at 8:24 pm
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...
February 11, 2009 at 8:13 pm
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 ...
February 11, 2009 at 8:04 pm
forum software ...add a closing parenthesis right before the q...
) q
it took amersand-nbsp-semicolon)
and turned it into this:
😉
February 11, 2009 at 5:26 pm
nice noel; adding that to my snippet collection.
February 11, 2009 at 4:45 pm
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,...
February 11, 2009 at 4:37 pm
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)...
February 11, 2009 at 4:21 pm
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,...
February 11, 2009 at 10:55 am
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...
February 11, 2009 at 10:50 am
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...
February 11, 2009 at 9:14 am
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...
February 11, 2009 at 8:05 am
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...
February 11, 2009 at 8:01 am
Viewing 15 posts - 11,596 through 11,610 (of 13,463 total)