Viewing 15 posts - 796 through 810 (of 7,429 total)
Then how does Customer_ID relate to these tables. You told us he only common field names are
id (primary key)
transaction_date
communication_id
December 7, 2006 at 9:20 am
One thing I haven't seen asked is how big is your log file? Do you shrink it after the delete operation? If so what is you intitial size and growth factor?...
December 7, 2006 at 7:58 am
As stated INNER as you don't need to filter for NULL, as well only the records needed are pulled into memory on both sides and index can be used on...
December 6, 2006 at 1:10 pm
Additionally how wide should be the largest number?
December 6, 2006 at 1:07 pm
This is usally a memory issue not drive space. I have seen this on one of our heavily used servers numerous times until we redid several queries that were putting...
December 5, 2006 at 2:58 pm
The quickest and best way to be sure you get it right in my opinion is this
Open Enterprise Manager and open the table (tablex since I don't have a name)...
December 5, 2006 at 2:51 pm
Rereading this I realize you state can have the same date time for more than one record. Is there any other way to identify them in that scenario or do...
December 5, 2006 at 2:45 pm
Sorry I never saw this happen so not sure. Did you try to reinstall the client tools?
December 5, 2006 at 1:39 pm
You may be making overly complicated. Can you please post your DDL for the table and explain the relation is.
Otherwise let me make an example here and see if this...
December 5, 2006 at 1:07 pm
OK so let's take a bit further with the assumption of a Users table.
DECLARE @CategoryID INT -- SHOULD BE A PARAMETER
SET @CategoryID = 1
SELECT
TOP 5
JokeID,
JokeCatID,
JokeTitle,
JokeDesc
UserID
FROM
dbo.Jokes C
INNER JOIN
(SELECT
--UserID, -- Uncomment...
December 5, 2006 at 12:24 pm
Always busy these days. Try to pop out every so often. ![]()
December 5, 2006 at 12:22 pm
I would add a column for Inactive Date or something and allow it to be null. The make the Uniqeu Constraint
Col1, Col2 and InactiveDate
this will allow you to have...
December 5, 2006 at 12:09 pm
Glad to help. Also just realized, I am sure you have a Users table of some kind which means you can change this line to
(SELECT DISTINCT UserID FROM dbo.Jokes) A) D
to something...
December 5, 2006 at 12:00 pm
Although the method used generally does work I have performed a script where a table was changed the way EM does it. After completion the table was gone. So make...
December 5, 2006 at 11:41 am
Viewing 15 posts - 796 through 810 (of 7,429 total)