Viewing 15 posts - 2,236 through 2,250 (of 2,267 total)
halifaxdal (4/17/2008)
How can I find more clue from them?
Thanks lots.
Run them, and click on the 'Display Estimated Execution Plan' button on the tool-bar.
This will bring up some icons/graphics showing...
April 17, 2008 at 10:04 am
Well i guess it does come down to individual preference and whether you have the time and budget to attend courses.
Though it is worth noting that nothing beats being mentored...
April 17, 2008 at 9:07 am
I dont know if there is an easy answer, maybe some one else can help?
but these prooblems can at times be worked out by looking at your execution plan.
have you...
April 17, 2008 at 8:43 am
What calender is the server using?
does this show the year as 2551?
April 17, 2008 at 5:49 am
Any budding DW designer/builder should get a copy of
'The Data Warehouse Lifecycle Toolkit' by Ralph Kimball
this will give you a really good understanding of techniques and theories behined DW....
April 17, 2008 at 2:21 am
I can fully recommend the red gate suite of tools (sponsors of this site) I had played around with the freeware tools from other companies and nothing i have...
April 16, 2008 at 9:21 am
have you tried dividing by 100 to move the deciaml point?
April 16, 2008 at 9:16 am
Do you have experience in DW/BI on other platforms and want to learn SQL server tools?
or are you new to DW/BI all-together?
there are a lot of books out there...
April 16, 2008 at 3:22 am
Try re-writing the query to use a join, rather than a sub-query as this will be more efficent.
Do you have the appropriate indexes setup on the tables?
April 15, 2008 at 10:12 am
could you post the table structures that your queries relate to and some sample data?
Wouldn't using 'select 1 from' just return you a coulm of 1's ?
Also 4...
April 15, 2008 at 9:09 am
You can not do it directly with the CREATE VIEW command, but it can be done by using dynamic SQL
declare @sqlcode varchar(max)
select @sqlcode = 'create view vw_MyView as select...
April 15, 2008 at 7:44 am
do you want to create a view from within your stored procedure?
Or do you want to create a view that returns the same data as your stored procedure?
please expand your...
April 15, 2008 at 7:31 am
you could try something like
UPDATE Employees
SET Day1= '0'
WHERE (isnumeric(Day1) =1)
UPDATE...
April 15, 2008 at 7:04 am
Try using the FLOAT data type
select convert(float, '2.11758236814')
you can then change this to NUMERIC if you want to as well
select convert(numeric(30,15),(convert(float, '-2.11758236814e-10')))
April 15, 2008 at 5:33 am
kavitaasnani (4/14/2008)
I didn't try breaking it up but i don't see how that will help. I'll wait for you to add code.Rgds,
Kavita
I mean break up the string into parts and...
April 14, 2008 at 8:43 am
Viewing 15 posts - 2,236 through 2,250 (of 2,267 total)