Viewing 15 posts - 24,616 through 24,630 (of 26,486 total)
You really shouldn't cross post. This looks like it has been posted in three separate forums.
Edit:
I suggest using the following forum: http://www.sqlservercentral.com/Forums/Topic516075-145-1.aspx
😎
June 12, 2008 at 10:22 am
Jeff Moden (6/12/2008)
The real fact of the matter is the OP...
June 12, 2008 at 10:13 am
I'm not making any judgements on the design. I was trying to point out that somethings that don't seem right could be based on other factors.
You could desgin a...
June 12, 2008 at 10:01 am
Not knowing the full details of the example it is difficult to make a judgement. One thing to remember is that while designing a database for a production application...
June 12, 2008 at 8:31 am
The answer to this is Yes and No. there are a few that I can talk to about almost anything, just as a friend. I actually consider these...
June 12, 2008 at 7:59 am
Here is my solution:
declare @TheDate datetime;
set @TheDate = '2008-08-15';
select
@TheDate,
dateadd(mm, datediff(mm,0,@TheDate) + 1, 0) -
...
June 12, 2008 at 7:49 am
Jeff, I will post my solution as soon as I get to work. My code is sitting there, but I'm still at home getting ready to leave. See...
June 12, 2008 at 7:13 am
At this point, since you figured it out, is when you'd post what you did to answer your own question. One reason, others may have a similiar question, but...
June 12, 2008 at 6:47 am
Matt,
I want to thank you for taking the time to format the test data pino_daddy provided. I just didn't have the time even though using UltraEdit would have made...
June 11, 2008 at 10:10 pm
pino_daddy (6/11/2008)
I appreciate the response. I wish I had a copy of Quest Software, it seesm to help out sometimes by rewriting the query and trying it...
June 11, 2008 at 10:05 pm
VALEK (6/11/2008)
Lynn Pettis (6/11/2008)
...
while @LoopCnt < 100
...
Based on the results,...
June 11, 2008 at 5:26 pm
No. It means we have been doing our own work, or helping others whose problems/issues/questions were easily answered. I need additional time to look at your issue which...
June 11, 2008 at 4:28 pm
Matt Miller (6/11/2008)
John Rowan (6/11/2008)
June 11, 2008 at 3:08 pm
Once a SQL 2000 databse has been restored or attached to SQL Server 2005, you can't go back to SQL Server 2000 with that database, unless you use DTS/SSIS to...
June 11, 2008 at 2:48 pm
You are going to need a third party product to recover the data from the transaction log.
Then, you will need to setup a backup plan for regularly scheduled full, possibly...
June 11, 2008 at 2:43 pm
Viewing 15 posts - 24,616 through 24,630 (of 26,486 total)