Viewing 15 posts - 17,746 through 17,760 (of 26,489 total)
YSLGuru (12/22/2009)
Jeffrey Williams-493691 (12/21/2009)
Second, the only way...
December 22, 2009 at 12:29 pm
I think you are out of luck. Anything we can provide you in the qay of guidance will help you going forward, but what has happened in the past...
December 22, 2009 at 11:28 am
No problem. The more you learn, the more effective you can be in solving your opportunities (other peoples problems).
December 22, 2009 at 11:16 am
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
Viewing 15 posts - 17,746 through 17,760 (of 26,489 total)