Viewing 15 posts - 11,596 through 11,610 (of 13,460 total)
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...
Lowell
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...
Lowell
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 ...
Lowell
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:
😉
Lowell
February 11, 2009 at 5:26 pm
nice noel; adding that to my snippet collection.
Lowell
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,...
Lowell
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)...
Lowell
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,...
Lowell
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...
Lowell
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...
Lowell
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...
Lowell
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...
Lowell
February 11, 2009 at 8:01 am
Say you have a big database, and you know from experience it takes 4 minutes to do a complete backup.
the last thing the backup would include would be every commited...
Lowell
February 11, 2009 at 7:57 am
Vic is correct. because there is no single repository for the tables/objects of all databases, you have to query each repository seperately...whether information_schema, sysobjects or sys.objects, you gotta do each...
Lowell
February 11, 2009 at 7:49 am
Ok i think i know what you want;
in SSMS go to tools options.
check the shown checkbox, and when you copy/paste any results, the column names will be included:

Lowell
February 11, 2009 at 7:40 am
Viewing 15 posts - 11,596 through 11,610 (of 13,460 total)