Viewing 15 posts - 76 through 90 (of 98 total)
Current valid data:
IF OBJECT_ID('TempDB..#mytable','U') IS NOT NULL
DROP TABLE #mytable
CREATE TABLE #mytable
(
RouteName VARCHAR(3) PRIMARY KEY,
...
March 15, 2011 at 10:07 am
The routing line it's used to validate the selections of the user in the interface, to write a log file...
First i check if the points selected by the user...
March 15, 2011 at 4:26 am
Here some sample data:
GO
CREATE TABLE #Table1 (colName VARCHAR(10),ValCol1 DECIMAL)
CREATE TABLE #Table2 (colName VARCHAR(10),ValCol2 DECIMAL)
INSERT INTO #Table1
SELECT 'name1',1 UNION ALL
SELECT 'name1',1 UNION ALL
SELECT 'name1',1 UNION ALL
SELECT 'name1',1 UNION ALL
SELECT 'name1',1 UNION...
February 10, 2011 at 3:57 am
I know that i need to put the data here with the SELECT UNION to help to test the query, but i don't find the topic how to do it...
February 10, 2011 at 3:49 am
@Toby Harman
More flexibility and the ability to change the workflow more easily?
- True
Just to be capable of handling future changes in the workflow, like this one that I'm dealing...
December 31, 2010 at 2:55 am
I have to look in the forums, at least for tips, for several reasons, i have to solve this problem, i have to solve it by myself because I'm the...
December 30, 2010 at 7:44 am
Until the process change, i think that all in one table product case was a good choice, and if my company doesn't had changed the process I never...
December 30, 2010 at 5:04 am
Thanks for the replys
@Toby Harman
I was thinking in something like that, but i must check some things before doing that.
My application main core works around this table, i have...
December 30, 2010 at 4:07 am
Sorry for the late response... holidays 🙂
Yes i know that i need to redesign the table, that's why i ask for help 🙂
My business logic isn't like the normal product...
December 28, 2010 at 7:36 am
Sorry...
Like i said the original table has more than 100 columns, so i'll put here a sample of one similar with less columns.
Let's say that the company manufactures products for...
December 23, 2010 at 4:43 am
How do i quote some one?!
Should it? Always? In every case? Why?
I have little knowledge about developing dw's, but the little thing that i know for example in...
October 28, 2010 at 10:12 am
Yes there isn't any rule that tells that, but it should be... 🙂
Not bothering to normalise past 1st is not denormalisation, it's lazyness.
😀
October 28, 2010 at 9:10 am
Hehehe
This was a small application that is increasing in the time, by adding other functions/modules/options.
Now i have to redesign one of the modules, and i was looking...
October 28, 2010 at 7:57 am
Viewing 15 posts - 76 through 90 (of 98 total)