Viewing 15 posts - 871 through 885 (of 1,062 total)
I forget to mention we are using SQL Server 2000 and we use DTS and stored procedures for ETL tools.
My old company spent millions of dollars buying Ab inito. It...
December 6, 2006 at 6:58 am
My company just changed to use Hyperion.
In my old company, the developers developed in-house reports using Actuate report (terrible tools), Active X report (OK) and microsoft reporting service (now it...
December 6, 2006 at 6:54 am
I wanted to clear something.
When I put anything into production, the company required us to fill out a form and had at least 6 manangers signed the form. The DBA...
December 5, 2006 at 1:20 pm
First, I would like to thank Clarold Britton to edit this article for me since I am still struggling my 'Chinlish' - English grammar.
I am working in a different company...
December 5, 2006 at 7:29 am
Now I understand what you want to do, you want the job to run every 15 minute interval. The frequency interval only has hours and minutes.
Instead of using schedule job,...
December 5, 2006 at 6:32 am
When you open the job in EM, click on the Schedule tab, you can set the schedule there and you can schedule in hh:mm:ss.
December 4, 2006 at 12:32 pm
Is this a joke?
Create view Candidate
AS
SELECT c.CandidateID, c.FirstName, c.LastName, c.Email, c.Nationality, c.English, c.Spanish, c. French, c. Portugese, c. OtherLanguage, c. OtherLanguageLevel, c. DOB, a.PostingID, a.CategoryType, e.DegreeID, d.Degree, x.exp
FROM CandidateTable...
December 4, 2006 at 12:23 pm
So I assume Table B the identity column is the customer key and the customer may exist in table B already.
You should do two steps, one is insert customer that...
December 4, 2006 at 10:28 am
Can you be more specific? Does table "A" have the same number of column as table "B" except there is no constraint and identity column ?
For example:
Table A (col1 varchar(10),...
December 4, 2006 at 8:20 am
select ('adfd' + cast(18 as varchar(3))) as 'cvr < '
Is this what you want? The result is 'adfd18'
December 1, 2006 at 10:08 am
Why do you need to use a cursor?
The big 'C' is a big No No in SQL Server.
November 30, 2006 at 8:04 am
Is it difficult to attract good programmer to a small town especially if both husband and wife working on different fields? It is not easy to find a job if...
November 30, 2006 at 7:56 am
Nice article. However I never see any DBA get fired who had made the mistake on your list.
In my last job, the junior DBA...
November 30, 2006 at 7:09 am
The whole query looked liked an Oracle query.
Decode, month_between, sysdate are all oracle terms.
Do you want to write an Oracle query or SQL Server query?
November 29, 2006 at 2:00 pm
I don't think there is any difference in using INSERT INTO #Temp ( ) SELECT
and SELECT ... INTO #Temp FROM
SELECT ....INTO created the table by itself instead of the...
November 29, 2006 at 1:11 pm
Viewing 15 posts - 871 through 885 (of 1,062 total)