Viewing 15 posts - 136 through 150 (of 907 total)
Thanks for the thought and link Andy. I did resolve this problem. I got the answer at PASS at the PSS/MVP session. Actuall none of the PSS...
November 17, 2003 at 12:43 pm
See other my example here:
Gregory A. Larsen, DBA
Contributor to 'The Best of SQLServerCentral.com 2002' book. Get a copy here: http:www.sqlservercentral.com/bestof/purchase.asp
Need SQL Server Examples check out my website at http://www.geocities.com/sqlserverexamples
November 6, 2003 at 7:44 am
Will something like this work for you.
create table run(id int identity, num int)
insert into run (num) values(10)
insert into run (num) values(20)
insert into run (num) values(30)
insert into run (num) values(40)
insert into...
November 6, 2003 at 7:42 am
Interesting thought. Hummm..........
Right now we don't allow anyone to send mail to SQL Server.
It has been a long time since I played with xp_readmail and sending email...
November 5, 2003 at 11:06 am
Here is a way to do that by creating a pivot table query, no cursors here.
set nocount on
create table pivot_records ([Order] int,
...
October 29, 2003 at 7:50 am
That is kind of what I thought. Thank you for the feedback.
Gregory A. Larsen, DBA
Contributor to 'The Best of SQLServerCentral.com 2002' book. Get a copy here: http:www.sqlservercentral.com/bestof/purchase.asp
Need SQL...
October 28, 2003 at 7:32 am
You can use the WSCRIPT SHELL object to do asynchronous processing of SP's. Here is a simple example to demonstrate what I am talking about. This example creates a sp,...
October 23, 2003 at 10:27 am
You might try turning on Audit Level logging to ALL, and then reviewing 60 days worth of SQL Server logs to determine the logins that have logged in, then this...
October 23, 2003 at 8:23 am
Not exactly sure what you are saying here "I think you want to change the service account, remove admin permissions, then change back using EM, which should reset all permissions...
September 30, 2003 at 9:53 am
I agree it would be nice to transfer the default database. As the script comes from Microsoft it does not set the default database, and that is what I...
September 30, 2003 at 9:00 am
When you transfer master all the logins will come across so you would not have to run this script. This script is used to copy logins and passwords without...
September 30, 2003 at 8:51 am
I would suggest that you hash the passwords and then store them in you database. This will keep anyone even the SA from knowing the password. Now if...
September 24, 2003 at 7:44 am
Funny you should ask. Turns out the biggest table, and the one I was working with did not have a clustered index. From my testing it seems when...
September 23, 2003 at 2:33 pm
As promised I said I would give a little recap of regarding resolving my used space verses unused space.
Now first let me say I'd like to thank both Jonathan and...
September 23, 2003 at 11:18 am
Viewing 15 posts - 136 through 150 (of 907 total)