Viewing 15 posts - 511 through 525 (of 1,062 total)
Can you show me the query?
Anyway I have created dynamic Sql over 8000 characters.
DECLARE @SQL1 VARCHAR(8000),
...
November 16, 2007 at 10:11 am
So I assume you have a Date dimension table, Company table, what about gender, ethnicity, marital status, does each one have its own dimension table or all these...
November 16, 2007 at 10:07 am
You can use sp_help_job to find out the job status.
EXEC msdb..sp_help_job
@job_name = 'Job'
,@job_aspect = N'job'
This will come back with a result set, the...
November 13, 2007 at 7:56 pm
That certainly gives the developer who uses both Oracle and SQL Server a headache. I have to use both Oracle and SQL Server in most of my jobs, talking...
November 7, 2007 at 2:23 pm
The problem is when you execute notepad.exe using Execute task and runs on a job. You need to put the directory, otherwise, it does not know where to find...
November 7, 2007 at 7:40 am
My previous obnoxious manger insisted to use trigger to update the table, it created a big deadlock in the system because it locked the table. If your inserted table...
November 7, 2007 at 7:30 am
What do you want to know?
Dimension table has the lookup field of the system eg, customer, product....
Fact table has the measure (number) and has the dimensions in it. ...
November 7, 2007 at 7:20 am
Oracle used *= but now it always uses outer join. I like to use ANSI standard better, it makes more clear. The Oracle developers still use *= but...
November 7, 2007 at 7:15 am
Jez, that is a good idea. If you put a surrogate key in the table, then it will eliminate the possibility if two parents have the same child.
CREATE TABLE...
November 7, 2007 at 7:11 am
What about Rochester, NY? Can I work at home? I am 3 hours away from Toronto.
Probably I can make a trip once or twice a month to...
November 7, 2007 at 6:11 am
I used to load multiple text files with different format into different tables in a database.
I created a table called TextFileInfo with TextfileName, Path directory, formatfilename with path directory,
table name.
I...
November 6, 2007 at 2:13 pm
When I designed the drilled down table, it contains level1 info, then level 2....
In your case
Table Material_DrillDown
Material VARCHAR
Item VARCHAR
Table Item_DrillDown
Material VARCHAR
Item VARCHAR
Item_Info1 VARCHAR
Item_Info2 VARCHAR
Material = Paper, Cardboard, Vinyl
Item = for...
November 6, 2007 at 2:02 pm
I used to work for a software company and I used Installshield to write install script. My DBA used Perl to write install script. No matter what, your...
November 6, 2007 at 1:42 pm
You mean when you have a deployment ready, you can start a job and update all the clients?
Then why don't you put the clients in a table, then write a...
November 2, 2007 at 4:22 pm
That was exactly what I wanted to say, if you use 'ALTER TABLE ADD COLUMN....', if the table was big, it would take a long time because during the alter...
November 1, 2007 at 7:55 pm
Viewing 15 posts - 511 through 525 (of 1,062 total)