Viewing 15 posts - 1 through 15 (of 24 total)
Talk about a tempest in a teapot!
Doctor, Lawyer, Engineer, Information Technologist, Cop.
Which one of these has too many syllables?
Anyways, IT Guy it is better than computer guy. Around here,...
June 26, 2008 at 7:55 am
Well, I managed to fix this, but I'm still troubled by how I did it.
Ignore the code.
I dropped the clustered index and rebuilt it with a different name. Everything...
May 1, 2008 at 7:57 pm
DECLARE myCursor CURSOR
LOCAL
FOR
SELECT UsgSvc.UsgSvcID, Customer.CustID, UsgSvcMultiProvision.StatusID, UsgSvc.DisconnectDate,
UsgSvcMultiProvision.ProvisioningCompanyID, UsgSvcMultiProvision.PICTypeID
FROM UsgSvc, Customer, UsgSvcMultiProvision
WHERE UsgSvc.CustID = Customer.CustID AND
UsgSvc.UsgSvcID = UsgSvcMultiProvision.UsgSvcID AND
UsgSvc.CustID = @CustID
SET @CgException=60000
SET @errorcode=0
SET @ErrorString=''
...
May 1, 2008 at 6:16 pm
I pseudocoded a lot of stuff in the example because I didn't think it would be important. I'll post the rest tonight.
May 1, 2008 at 3:40 pm
Yeah, that is part of my problem. For the client-server app they need db_writer, which would then spill over into other, non-validated and non-logged, applications.
June 7, 2007 at 1:40 pm
Fear is a great demotivator. I can't think of anything that will break that can't be fixed by entering the new password. For example, if something has the old password...
January 15, 2007 at 2:10 pm
The sp_trace_% stored procedures can run profiles and dump them to files. Be prepared to spend a few hours learning how to configure the traces.
Be careful however, I've generated several gigs/hour of...
November 17, 2006 at 4:51 pm
This is actually one of those topics I've seen discussed and rediscussed extensively, yielding more confusion than answers mostly.
What I want to know is if I set the /3gb switch...
October 16, 2006 at 1:48 pm
Are you running Windows 2003? Standard or Enterprise?
September 6, 2006 at 4:35 pm
"Got to respectfully disagree here. Imagine we didn't correct the idea that the earth was the centre of the universe, that the earth is flat, that the theory of relativity...
August 30, 2006 at 10:07 am
Yes, but if I don't want to force a snapshot, then I can to this on my test instance:
sp_repladdcolumn 'TableName','ColumnB','int NULL','all',null,0,0
I see it actually go from my publisher to my...
June 28, 2006 at 1:47 pm
I just realized there is another thread in this group where this is discussed in more detail.
March 2, 2006 at 1:04 pm
I recently worked as a DBA under a (extremely painful) SOX environment. Not only did I not have admin rights to the box, but I was also not SA on...
March 2, 2006 at 12:50 pm
My (limited) understanding is that this is a measure of memory pressure. If the pages are being dumped faster, it means SQL Server decided it needs those resources freed up since...
March 2, 2006 at 12:25 pm
If you go to the exchange server and open the email account that SQL is using, do you see the emails?
February 22, 2006 at 1:51 pm
Viewing 15 posts - 1 through 15 (of 24 total)