Viewing 15 posts - 13,066 through 13,080 (of 18,923 total)
No because first + last name IS NOT A KEY. You'll have to list all possible adress for that name, then they'll have to pick the right one. ...
September 20, 2005 at 11:53 am
It's not a setting, it's a formula. But it doesn't matter now, I have a vague idea. Looks like if you can't change the report, then you'll have...
September 20, 2005 at 11:51 am
Might be sneaky but...
If not exists (Select flag where..)
begin
select 1/0
--should fail, make this step exit the job on failure.
end
else
begin
--don't do anything>> will go to next step
end
or you could actually control...
September 20, 2005 at 11:39 am
It's not about being neat... It's about filtering first, then showing the data. I don't know any other set way of doing this.
September 20, 2005 at 11:37 am
Select dtLastEntries.AgentID, dtLastEntries.BookSaleTime, Main.BookingID from dbo.YourTable Main inner join
(Select agentid, max(booksaletime) as booksaletime from dbo.YourTable group by agentid) dtLastEntries
on Main.AgentID = dtLastEntries.AgentID and Main.BookSaleTime = dtLastEntries.BookSaleTime
September 20, 2005 at 11:29 am
Simplest way is number_of_rows * avg_size_of_row.
Let's say the avg row size is 1 K, that's over 27 MB of raw data to transfer/present (god knows how much bloating that can...
September 20, 2005 at 11:23 am
I might understand this process for huge batch processing that can't hold the user from doing something else. But I can't see that being used on almost every part...
September 20, 2005 at 11:18 am
That's why I read the article and stopped using dynamic sql... too much troubles for no rewards at all (most of the time).
September 20, 2005 at 11:12 am
Create a new file group and move the clustered index on that filegroup.
September 20, 2005 at 11:10 am
How much data do you have to present (mbs, rows, columns, size of rows).
September 20, 2005 at 9:50 am
Views don't turn into table in dts transfer... are you copying related objects too??
READ THIS :
This is just a start. Once you got the principle, move...
September 20, 2005 at 9:48 am
CREATE FUNCTION [dbo].[fnvwFacturation_ALL] (@BT as bit = 0, @PS as bit = 0, @TEBT as bit = 0, @TETBL as bit = 0, @DateLimite as datetime, @NoPS AS INT) ...
September 20, 2005 at 9:46 am
I'll let you work on that one. Fax it to me when you're done
.
September 20, 2005 at 9:45 am
Viewing 15 posts - 13,066 through 13,080 (of 18,923 total)