Viewing 15 posts - 2,266 through 2,280 (of 5,103 total)
... And like always one can tell how much you "appretiate" J C ![]()
Cheers,
June 29, 2006 at 3:55 pm
it is simply an equality operation A = 3 is the same as 3 = A and you are simply searching for those who have 3 counted records with higher...
June 27, 2006 at 2:12 pm
Last altered date is always the same as Created date in SQL 2000. Not sure about 2005 though ![]()
Cheers,
June 12, 2006 at 2:08 pm
J.T.
I think the signature you are using should be :
"While (@First != 'Success')
Try++;"
instead ![]()
June 7, 2006 at 9:12 am
Christian,
IF you changed dbo.AccountMetrics to AM in the "IN" subquery you are creating a totally different query because there is an external dbo.AccountMetrics outside of the IN which is what...
June 5, 2006 at 1:18 pm
Andrew,
If you got that error is because the Function is expecting a varchar. In that case simply double the quotes like:
Set @select1 = 'Select Reference.RefID, Reference.CreatorString As CreatorString, Genre.Type As...
June 5, 2006 at 1:04 pm
the random Top three for each division implies more than 3 records, if that's what you want maybe try:
SELECT t1.C_division, t1.C_name, t1.C_address
FROM tableC t1
where pkey in (select top 3 pkey...
June 5, 2006 at 12:48 pm
Set @select1 = 'Select Reference.RefID, Reference.CreatorString As CreatorString, Genre.Type As Media, dbo.getRowRank(' + @Target + ', Reference.RefId) as Rank'
I don't think you need dynamic sql to solve this...
June 5, 2006 at 12:42 pm
Ok lets narrow down the issue.
1. Do you have set up an mdw file for the MS Access DB?
2. Are you sure nobody else has the DB Opened?
3. Are there any ldb...
June 5, 2006 at 11:34 am
For the TSQL code you will have to PARSE the code. For such action you will be probably better of doing a find and replace from your Source Repository and...
June 5, 2006 at 11:20 am
the error is a bit self explanatory. Your ACCESS DB is in use by Another process.(does someone has Access open with that DB?)
The Fact the in QA works when local...
June 5, 2006 at 11:07 am
Is it safe to assume that when you said:
dbo.AccountMetrics.tablename you actually meant: dbo.AccountMetrics.Columnname
About the difference in speed you will need to check your indexes usage, the statistics and the...
June 5, 2006 at 10:50 am
Erm... sorry but the user is asking for registrations and cancellations PER DAY.
Joe, Your query is NOT doing that
May 19, 2006 at 2:30 pm
... from mine you can:
create table TDemo ( col1 int primary key, Col2 decimal(10,2), Col3 int, ColFree varchar(20))
go
insert TDemo( Col1, Col2, Col3, ColFree)
select 1, 10.1, 11, 'ABCD'
union all select...
May 19, 2006 at 1:17 pm
Yes!
use two ( several) variables the concatenate those in the exec statement like:
select @str1 = '... ' -- up to 8000
, @str2 = '...' -- up to 8000
May 19, 2006 at 12:07 pm
Viewing 15 posts - 2,266 through 2,280 (of 5,103 total)