Viewing 15 posts - 20,926 through 20,940 (of 26,484 total)
FYI, Books On-Line is your friend. You will find many of your answers thee.
May 19, 2009 at 8:48 am
If you need to work with this database on your computer you may want to consider spending $50.00 (USD) and buying the Developer Edition of SQL Server.
May 19, 2009 at 8:17 am
You indicated in your original post (I belieive) that you are using SQL Server Express? I don't think you will be able to access the database. The Express...
May 19, 2009 at 8:15 am
First, your data provided does not match the diagram.
Here is some code to play with:
create table dbo.bom (item_id int, item_name varchar(15), qty int, parent varchar(10),parent_id int, has_child int, primary key(item_id));
insert...
May 18, 2009 at 4:26 pm
I really expected that you'd have data for this year and last year as well. You do want to be able to compute the YTD and Previous YTD Sales...
May 18, 2009 at 3:23 pm
As i get started at looking at this, I just want to confirm you are using SQL Server 2000, not SQL Server 2005. I don't want to use any...
May 18, 2009 at 3:11 pm
Florian Reischl (5/18/2009)
Bob Hovious (5/18/2009)
Arrrgg! Flo, I just realized I never proofed your article!
No problem :-). Take the time you need or give me a short hint...
May 18, 2009 at 3:08 pm
Rem (5/18/2009)
Result: SP3Am I OK?
Simple answer. Yes.
Microsoft SQL Server 2005 - 9.00.4035.00 (X64) Nov 24 2008 16:17:31 Copyright (c) 1988-2005 Microsoft Corporation Standard Edition (64-bit) on Windows NT 5.2...
May 18, 2009 at 2:11 pm
The only other change I would make to Option #3 is to make the EndPeriod an "open end" on the range. Example:
StartPeriod ...
May 18, 2009 at 2:07 pm
Could you provide the code (stored proc and function), table DDL (target table for the stored proc and the UDF)?
There may be a better way, but we'd need to see...
May 18, 2009 at 1:59 pm
amina omar (1/23/2004)
why does the reindex job fill up the t_log?
The reindex operation is a fully logged operation, that is why it writes to the transaction log. If you...
May 18, 2009 at 1:31 pm
Check out Books On-Line (BOL). You want the REPLACE() function.
May 18, 2009 at 11:17 am
Need more information. What versions of SQL Server are being run on the two servers and what is the database compatibility modes on the databases in question?
May 18, 2009 at 10:48 am
(CONVERT(VARCHAR(10), a.Stage_LoadDate, 112) = CONVERT(VARCHAR(10), GETDATE(), 112)
OR CONVERT(VARCHAR(10), b.Stage_LoadDate, 112) = CONVERT(VARCHAR(10), GETDATE(), 112)
OR CONVERT(VARCHAR(10), c.Stage_LoadDate, 112) = CONVERT(VARCHAR(10), GETDATE(), 112)
OR CONVERT(VARCHAR(10), d.Stage_LoadDate, 112) = CONVERT(VARCHAR(10), GETDATE(), 112))
Try...
May 18, 2009 at 10:36 am
Viewing 15 posts - 20,926 through 20,940 (of 26,484 total)