Forum Replies Created

Viewing 15 posts - 6,706 through 6,720 (of 7,185 total)

  • RE: installing failover cluster

    Denise

    I haven't worked with clustering and SQL Server 2005, but if it were SQL Server 2000 then I would back up the databases, uninstall SQL Server and then build my...

  • RE: Pivot Cross Tab for Text Results

    Felipe

    Data Definition Language.  In other words, the CREATE TABLE statements.

    Thanks

    John

  • RE: installing failover cluster

    Denise

    I haven't watched this video myself yet, but it may have the answers to some of your questions.

    http://www.jumpstarttv.com/Media.aspx?vid=33

    John

  • RE: Pivot Cross Tab for Text Results

    Felipe

    Can we see the DDL for the tables, please?

    John

  • RE: how to spot which column cause the error

    No variables, no quotation marks, no red text.  Simple:

    CREATE PROCEDURE [dbo].[CreateFile] AS

    Delete from InpatientMedStat

    insert into InpatientMedStat (PatientAccountNumber, MedicalRecordNumber, AdmissionDate,AdmissionSourceCode, AdmissionTypeCode,DischargeDate, DischargeStatusCode, PatientSex, PatientDOB,PatientZipCode, PatientTypeCode,AttendingPhysicianID,PrincipalDiagnosisCode, PatientEthnicity,FinancialClassCode,PatientName)...

  • RE: Rebuild Index over large table

    Richard

    I think I read somewhere that reindexing a table will cause the transaction log to grow by up to 1.25 (or was it 1.5?) times the size of the table. ...

  • RE: how to spot which column cause the error

    Frances

    First off, why are you using dynamic SQL?  You can do away with the string variables and the EXEC statements and achieve exactly the same effect.  Because your code won't...

  • RE: Foreign key details

    You can press Ctrl + Enter to get a normally spaced carriage return.

    Brandie's script returns all constraints, not just foreign keys.  And if the constraint spans more than one column,...

  • RE: Previous Max Date

    Are you looking for the second most recent date?  Something like this:

    SELECT MIN(t.tef_bas_tar) FROM

    (SELECT TOP 2 tef_bas_tar FROM tef_teftis

    WHERE kurum_id = @kurum AND birimler_id = @birim AND alt_birim1_id = @alt1...

  • RE: Column name passed in as a parameter

    Debra

    The best solution to your problem would be to redesign your database so that it's properly normalised.  If you can't do that, the only option you have is to use...

  • RE: Automate creating the text log file in Windows environment

    I'm not sure what you mean.  What are you trying to create a text log file of?

    John

  • RE: Looking for any problems in SQL error log

    We search for the strings "MSG ", "ERROR:" and "ERROR." during our check.  This procedure is generic for SQL Server (7.0 and 2000) and Sybase, so you may not need...

  • RE: Validating VAT Numbers

    David

    This function should be what you're looking for.  It returns 1 if the number is valid, and 0 otherwise.  It only does the mathematical algorithm part, so you'll need to...

  • RE: Large Table Design

    Rob

    If you don't have any indexes on your table then you can't have a fill factor.  I would recommend starting off by creating a clustered index at the very least.  You...

  • RE: Plzzzzzzzzzzzz help - Replication Problem

    Shaimaa

    I'd be surprised if it's the speed of your connection that's causing the failure.  When you get the failure message, double-click on the failed agent in Enterprise Manager and you...

Viewing 15 posts - 6,706 through 6,720 (of 7,185 total)