Viewing 15 posts - 121 through 135 (of 443 total)
Jeff,
Love the phrase:
... slam all the CPU's into the wall for hours ...
🙂
Just trying to visualize it now...
Bits of silicon smeared all over the server room walls... nice!
May 23, 2011 at 2:25 am
Lowell (5/20/2011)
... the requirements scream "homework" to me..
Obviously not screaming loud enough for me to hear, doh! :blush:
May 20, 2011 at 7:19 am
Aren't you missing a table to relate the hours to the project and employee?
IF OBJECT_ID('tempdb..#Employee') IS NOT NULL
DROP TABLE #Employee
IF OBJECT_ID('tempdb..#Project') IS NOT NULL
DROP TABLE #Project
IF OBJECT_ID('tempdb..#ProjectEmployeeHours') IS NOT NULL
DROP...
May 20, 2011 at 5:55 am
odanwada (5/19/2011)
I think my manager wants the...
May 20, 2011 at 2:54 am
This may help, but first you need to read about splitting delimited strings in the Tally table article referenced in my sig below.
CREATE PROCEDURE MyReport(@years VARCHAR(max)=null)
AS
DECLARE @t TABLE(FiscalYear int)
INSERT @t...
May 19, 2011 at 7:47 am
sqlzealot-81 (5/19/2011)
Adding one more point....Be a regular visitor of SSC...
Absolutely!
Subscribe to the daily email, read the articles and discussions.
You will learn a lot, I know I have.
May 19, 2011 at 2:38 am
varaprasad.gali (5/1/2011)
pls suggest me
Buy a book?
Go on a course?
Read online tutorials?
All of the above?
May 18, 2011 at 4:57 am
deepikamm (5/12/2011)
Please give me some overview aboutdataset.GetXml();
dataset.ReadXml(New XmlTextReader(New StringReader(str)));
openxml
Hi,
Would like to help:
i. Could you provide some more information to work with here.
ii. What you're asking for...
May 12, 2011 at 9:00 am
Similarly:
DECLARE @t TABLE(s CHAR(6), i INT, d decimal(19,5))
INSERT @t(s,i,d)
SELECT TOP 20
'ABCDEF',
10,
125.5
FROM Tally
SELECT s,i,d FROM @t
May 9, 2011 at 4:11 am
Have a look at this:
http://www.sqlservercentral.com/articles/T-SQL/62867/[/url]
understand it well, then this:
http://www.sqlservercentral.com/articles/Tally+Table/72993/[/url]
May 9, 2011 at 3:59 am
I would suggest you ask your question on one of the Visual Dataflex forums:
April 28, 2011 at 3:44 am
James Goodwin (4/13/2011)
April 13, 2011 at 7:29 am
Way too complicated!
No need for any while loops just a good old Tally (Numbers) table:
DECLARE @search VARCHAR(20)
DECLARE @find VARCHAR(2)
SELECT @search = '-ABCDABFGHABXYZ.', @find = 'AB'
SELECT
...
April 13, 2011 at 7:22 am
Viewing 15 posts - 121 through 135 (of 443 total)