Forum Replies Created

Viewing 15 posts - 826 through 840 (of 1,222 total)

  • RE: Nested IIf statement syntax

    If you want to check the characters at the start of a string, you should use the LEFT function. "startswith" is not part of the syntax of the IIF...

  • RE: How Many DBAs

    If you are organised, a single DBA should be able to manage dozens of servers. I was the sole DBA at a site with about 50 servers in about...

  • RE: View and SQL2000 performance

    The simple existence of a view (or even 1,000's of them) has absolutely no impact on the performance of your server. A view will only affect performance if someone...

  • RE: EM 2000 to define views of 2005 tables ?

    I am pretty sure the answer is no. This is because Enterprise Manager uses SQL-DMO to access SQL Server instances and this does not support SQL 2005.

    However, you are...

  • RE: Backup database on a host provider

    The commands you need are BACKUP and RESTORE.

    BACKUP will take the entire contents of a database (table definitions, stored procs etc plus any data) and "save" it to a file....

  • RE: SQL Jobs - accessing job name

    You can't get the job name directly but you can get the job id which you can then use to lookup the name of the job (in msdb.dbo.sysjobs)

    Have a look...

  • RE: tempdb - Restricted File Growth option

    You certainly can limit the growth of tempdb however when it gets to that limit the query that is needing the space will fail.

    A better option is to review the...

  • RE: History Cleanup Task

    Can you add another log file on a different partition ? You could do this, run your history maintenance and then remove the log file you added

  • RE: Processing Cube

    This sort of error usually happens because the dimension was not processed before the cube. If you have new records added to the tables in the dimension (in the...

  • RE: multiple if statements stored proc

    I suggest that you check your logic. I suspect that you expect some code to conditionally execute but it doesn't because you are not using BEGIN/END blocks for the...

  • RE: update problem

    You need to either include Table2 in the FROM clause or use an alias

    e.g.

    UPDATE T

    SET Col1 = Table2.ColumnA

    from MyFirstTable T

    inner join...

  • RE: oracle to oracle etl using SSIS

    Your DBA is on the right path. You will need to have the appropriate SQL*Net software installed onto the server that you are running the SSIS packages from (and...

  • RE: MDX QUERY

    Not 100% sure from your example of exactly what you are needing but one possible answer is

    With Member Measures.A as '.....'

    select Measure.A on columns,

    (dimension.DIM_1, dimension.DIM_2) on rows

    from MYCUBE

  • RE: SRS 2005: Mix format in textbox

    I am afraid that the answer to each of your questions is no. In SQL 2008, there is some support this this sort of thing.

  • RE: Problems uploading data from excel to SQL 2000 (DTs). The DTS is taking the data like a numeric one.

    In my experience, this sort of issue happens because of the way the Jet OLEDB provider attempts to determine the datatype. What it does is examine the first "few"...

Viewing 15 posts - 826 through 840 (of 1,222 total)