Viewing 15 posts - 1 through 15 (of 33 total)
We checked sql profiler and the execution log and the data retrieval is fine. However, the processing of the report is the killer in R2. It is...
November 12, 2010 at 12:26 pm
Think I found the issue. This occured in our test database server. It seems that one of our developers was messing around with Replication and tried to replicate a dbase...
August 23, 2006 at 9:15 am
Well, if anything, I appreciate everyone's replies because it always gives me insight on other issues and is a good way to enhance my SQL knowledge - which I think...
April 26, 2005 at 8:05 am
I'm sorry, it's not a three column update, it's at least a 30 column update and I already found a separate solution that would cover this, sometimes I just like...
April 26, 2005 at 7:38 am
Interesting... that is probably the policies that we will have to follow going forward if we have any issues. Thanks for all your help!
March 11, 2005 at 2:38 pm
The start-up account is not using the local system account, but a separate domain account. It connects the server using SQL Server authentication. However, I can't just remove builtin/administrators -...
March 11, 2005 at 7:41 am
Thanks for all your input - It's strange that when I deny access to the Builtin\Admins then I can't start the SQL Server Agent. Probably because the user that starts...
February 23, 2005 at 12:49 pm
The stored procedure is a good idea since it would only truncate the table specified in the stored proc. We have DTS Packages that run throughout the day to truncate...
December 6, 2004 at 10:54 am
Thanks for the reply!
I think the main issue with the connection is that a Connector must always have two connections.
So, if I didn't set up Referential Integrity on the tables...
September 28, 2004 at 7:56 am
One quick question on the transactions (I'm a newbie), if I do the following:
begin tran A1
insert into table_hist(.....) select ... from tableA where something = 'something'
if @@error <> 0 goto...
August 25, 2004 at 8:24 am
Thanks for all your responses.
To Antares686: I'm sorry for the messy example, I just copied and pasted and made some modifications to get the general idea of the cursor, and...
August 24, 2004 at 7:56 am
My comments use the prefix, $
DECLARE mod1 CURSOR
FOR SELECT EMP_NUM, PAY_WEEK, sum(Ult_ProHrs) as Ttl_ProHrs, sum(Hours) as Ttl_Hrs FROM TABLEA WHERE SUBMIT = 'Y' GROUP BY EMP_NUM, PAY_WEEK HAVING SUM(ULT_PROHRS) <>...
August 23, 2004 at 10:34 am
Thanks for your responses - it gave me alot to think about.
The records in the table that I'm archiving won't be changed while this procedure is running. My main concern...
August 23, 2004 at 8:42 am
Shoot...
Off the top of your head, do you know another way in SQL loop through a result set and perform operations?? The Cursor was the only thing I can think of to...
August 23, 2004 at 7:52 am
Worked great!
Thanks for the info!
March 22, 2004 at 10:22 am
Viewing 15 posts - 1 through 15 (of 33 total)