Forum Replies Created

Viewing 15 posts - 1 through 15 (of 27 total)

  • RE: UniqueIdentifiers as Indexes

    Guess in all it sounded like the Guid options was a poor dissicion for the design teams side. Thanks for the replies thou.

  • RE: Index creation

    Grant Fritchey (10/4/2007)


    One key difference, ignoring the "myth" for the moment, is that the constraint can be used as part of a foriegn key if you choose while the index...

  • RE: Index creation

    Thanks for all the replys.

    Tend to agree, the index did not script when I selected Index

  • RE: Index creation

    This was the SQL script generated by the type:

    SET ANSI_NULLS ON

    GO

    SET QUOTED_IDENTIFIER ON

    GO

    SET ANSI_PADDING ON

    GO

    CREATE TABLE [dbo].[Customer](

    [CustomerID] [int] NOT NULL,

    [UserName] [varchar](50) NOT NULL,

    [FirstName] [varchar](50) NOT NULL,

    [Surname] [varchar](50) NOT NULL,

    [IsActive] [bit]...

  • RE: Assembly location?

    Normally the assemblies are stored as binary in the db, by default the server can only see its own resources and drives, meanining it can only read assemblies on a...

  • RE: INNER JOINS

    The execution plan is exactly the same

  • RE: SQR vs Text

    Good point Eric. I always use brackets but in your case  "select 1 as [Ugly [] Column] --Doesn't Work" it would make much more sense to use text.

    l0n3i200n

  • RE: SQL Server 2000: The agent is suspect. No response within 10 minutes.

    Hi we had similar errors and the cause was that the agent user's password has changed and could not be started. Also make sure that sufficiant access is allowed for your...

  • RE: Problem in uploading excel data to SQL Server using SSIS

    Hi a quick and easy why of solving this problem is to tweak your excel drives a bit. Open regedit and find the following key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Jet\4.0\Engines\Excel'. Find the 'TypeGuessRows' and...

  • RE: Where is the OLE DB for ODBC drivers ?

    look under HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Jet\4.0\Engines\ODBC

    using regedit. ( assume ur using windows ). This should atleast point you in the correct direction.

    Try using some other compatible engine. Not sure to what datasource...

  • RE: CLR stored procedure

    Since I didn't receive a reply, I thought I can post the solution I eventualy went with. I've created a webservice which exposes the businessrules and then I used a...

  • RE: SQL syntax

    Thanks for the reply Shrikant. I learnt something 2day. Keep well

  • RE: Actual Reason to Use CLR

    I agree with Mr. or Mrs 500 you should always use TSQL when doing data manipulation using DML, you should consider CLR functions when ur not doing DML, but...

  • RE: Simplest backup

    DECLARE @PathName VARCHAR(1024)

    SET @PathName = ''\\[Server]\Backups\[FileName]'' + CONVERT(VARCHAR,GETDATE(),112) + ''.bak''

    BACKUP DATABASE [DATABASE_NAME]

    TO DISK = @PathName

    WITH

    NOFORMAT,

    NOINIT,

    NAME = N''DBBackup'',

    SKIP,

    STATS = 10;

    GO

    SCRIPT TO BACK UP

  • RE: For VB.Net users

    I'm not sure what you need. Do you need code to do a CLR stored proc? I think the CLR is a bit of overkill for the kind of command...

Viewing 15 posts - 1 through 15 (of 27 total)