Viewing 15 posts - 23,821 through 23,835 (of 26,486 total)
You may have eliminated the cursor, but you may not have eliminated the RBAR (Modenism for Row By Agonizing Row) processing.
If you post your code, table DDL (create statements), sample...
November 10, 2008 at 3:27 pm
Can you explain why you are "updating" the primary key in your update statement?
November 10, 2008 at 3:14 pm
paul.starr (11/10/2008)
Msg 208, Level 16, State 1, Procedure BILLTO_Customers, Line 7
Invalid object name 'dbo.cust.Customers'.
USE [AtriumWOE_CS_UserData_52]
GO
/****** Object: StoredProcedure [dbo].[BILLTO_Customers] ...
November 10, 2008 at 3:12 pm
paul.starr (11/10/2008)
////Alter Procedure
ALTER PROCEDURE [dbo].[BILLTO_Customers]
AS
DECLARE @message ...
November 10, 2008 at 2:05 pm
Christopher Stobbs (11/10/2008)
c.Date > = DATEDIFF(yy,-5,GETDATE())
Please not the this will take into account...
November 10, 2008 at 1:50 pm
GilaMonster (11/10/2008)
Patrick Russell (11/10/2008)
November 10, 2008 at 1:48 pm
Don Bernstein (11/10/2008)
I want to use a Print statement to show the number of students (StudentID's) in the table.
I could not...
November 10, 2008 at 1:34 pm
It would also help if you posted the code for your UDF as well as both valid and invalid sample data for the function.
November 10, 2008 at 10:29 am
Arthur.Lorenzini (11/10/2008)
I have this AND clause:AND c.DateCreated BETWEEN DATEADD(YEAR, -5, GETDATE())
Is this correct? What I am trying to get to is any records from today to 5 years ago.
No,...
November 10, 2008 at 10:17 am
It depends. Is there anything else going on with the database that you haven't told us, like replication? There could also be some long running transactions that keep...
November 10, 2008 at 10:02 am
Cross database access requires that the user also have rights in the other database.
November 10, 2008 at 9:56 am
Yes, if set to unrestricted growth, it will grow until it fills the drive. You should also look at setting tempdb to grow a set amount instead of 10%...
November 10, 2008 at 9:44 am
Obviously, your ERP database is using the Full Recovery model. In this model, if you are using Full, Differential, and Transaction Log backups appropriately, you can recover your database...
November 10, 2008 at 9:38 am
tymberwyld (11/10/2008)
November 10, 2008 at 9:28 am
Viewing 15 posts - 23,821 through 23,835 (of 26,486 total)