Viewing 15 posts - 676 through 690 (of 1,062 total)
Benoit,
Being a project manger, you know a lot more about DTS package and SQL server than some of the SQL Server developers I know. My company will never let a...
June 19, 2007 at 7:20 am
Robert
I don't like to encrypt the sript because there is no way to undo it. If anything happens, I have no way to debug it.
My problem is I have a...
June 19, 2007 at 7:18 am
Do you need to put in Log in ID and Password in the bat or exe file ?
Are you a SQL Server deverloper ro DBA?
June 18, 2007 at 6:47 am
I have a question. Sun microsystem does a lot of good things. The UNIX system worked wonderful. They also the first on introduce JAVA which would run from any platform. ...
June 18, 2007 at 6:35 am
If you have three databases, which database do you put the common tables and processes?
I would use a new database for comman tables and processes, if it is meta data tables, definitely...
June 15, 2007 at 9:26 am
Ralph Kimball is an advocate for enterprise data warehouse while Bill Inmon is an advocate for data mart.
In Ralph Kimball's datawarehouse book, he mentioined using both star schema and...
June 15, 2007 at 9:23 am
I will vote for Condi Rice too. But Hillary Clinton, I did not even vote for her for senator even I live in NY. But unfortunately NY is a democrate...
June 15, 2007 at 9:03 am
I want to know if you don't use xp_cmdshell, what can you do to solve the problem ? Can you use execute process task ?
I am trying to do...
June 14, 2007 at 3:07 pm
What is the salary range and would they consider working offsite?
June 14, 2007 at 10:02 am
Can you change the datetime field to character field before the transfer? Each database (for example Oracle and SQL Server) has its logic to process the date, that's why it is not...
June 13, 2007 at 9:08 am
Fact and dimension tables are totally different.
Fact table contains measures and different dimensions. Dimension tables just contains information about that particular dimension.
I don't understand your question about fact table as...
June 13, 2007 at 7:37 am
Thanks all to your advises. I feel you all care about me more than anyone around me at work or at home. Once I told my husband I had some problems at work, he...
June 13, 2007 at 6:58 am
Another way
SELECT CASE WHEN ih.oppidfrom IS NOT NULL
THEN 'YES'
ELSE 'NO' END
FROM Indicatorhour ih
LEFT OUTER JOIN author a ON a.oppid = ih.oppid where empid=O.empid
June 11, 2007 at 4:05 pm
IF EXISTS (SELECT ih.oppid from Indicatorhour ih
inner join author a on
a.oppid=ih.oppid
where empid=O.empid)
SELECT 'YES'
ELSE
SELECT 'NO'
June 11, 2007 at 4:03 pm
Viewing 15 posts - 676 through 690 (of 1,062 total)