Viewing 15 posts - 17,746 through 17,760 (of 26,484 total)
Slight mod to the code for testing:
--create download code table
create table #DownloadCode
(
dlc uniqueidentifier not null,
dlcmembernumber numeric(13,0),
dlcdatereceived datetime, ...
December 22, 2009 at 11:01 am
Here is the original SQL Server 2005/2008 code I had envisioned earlier in the post:
--create download code table
create table #DownloadCode
(
dlc varchar(14) not...
December 22, 2009 at 10:53 am
Greg Snidow (12/22/2009)
Greg Snidow (12/22/2009)
Lynn Pettis (12/22/2009)
set @MemberCount = @@rowcount; -- How many members with out download codesset rowcount @MemberCount; -- SQL Server 2000
Lynn, that's a neat little trick I...
December 22, 2009 at 10:39 am
Here is my SQL Server 2005/2008 code for the same problem:
--create download code table
create table #DownloadCode
(
dlc varchar(14) not null,
dlcmembernumber numeric(13,0),...
December 22, 2009 at 10:34 am
Greg Snidow (12/22/2009)
Lynn Pettis (12/22/2009)
set @MemberCount = @@rowcount; -- How many members with out download codesset rowcount @MemberCount; -- SQL Server 2000
Lynn, that's a neat little trick I never thought...
December 22, 2009 at 10:30 am
Fridayish -- my apologies, but this is a Friday on a Tuesday today.
December 22, 2009 at 10:28 am
Since triggers are synchronous, not going to happen. Well, not true, what you may need to look at is using Service Broker to handle those functions that you need...
December 22, 2009 at 10:14 am
I'm starting to notice a trend in a few questions where people expect tables to store records in a specific order. Anyone else seeing that trend?
(Okay, two posts don't...
December 22, 2009 at 10:09 am
I used the row counts to limit the number of downloadcodes loaded to the temp file. Operating in a partial vacuum (more downloadocdes than members but no real numbers)...
December 22, 2009 at 9:50 am
Steve Jones - Editor (12/22/2009)
Merry Christmas to everyone as well.I'll be back tomorrow, mountains calling today 🙂
Take it easy on the roads. I've heard that a storm is...
December 22, 2009 at 9:41 am
Yes. First, if you shrink it, it will just have to grow again. You should size your database (mdf file) such that it has sufficient space for 3...
December 22, 2009 at 9:22 am
Chris Morris-439714 (12/22/2009)
Lynn Pettis (12/22/2009)
December 22, 2009 at 8:39 am
How about something like this?
--create download code table
create table #DownloadCode
(
dlc varchar(14) not null,
dlcmembernumber numeric(13,0),
dlcdatereceived datetime,
dlcdateexpires datetime,
dlcissuedby varchar(50)
)
alter table #DownloadCode add...
December 22, 2009 at 8:21 am
Let's take another step back. Help us help you, read the first the article I have referenced below in my signature block. Follow the instructions in that article...
December 22, 2009 at 7:36 am
Sorry to join in late, but looking at your stored procedure in the first post, all your stored procedure is doing is setting local variables to what will most likely...
December 22, 2009 at 7:06 am
Viewing 15 posts - 17,746 through 17,760 (of 26,484 total)