Forum Replies Created

Viewing 15 posts - 2,761 through 2,775 (of 3,616 total)

  • RE: Query on Modified Objects

    When you say modified I presume that you mean structure rather than data? That is a column has been added/deleted from a table rather than a new record added?

    There...

  • RE: SQL Server Agent Won''''t Start

    What is the login account for the service?

    Is it the same as the MSSQLSERVER login account?

    If not:

    Does it have logon as service rights?

    Does it have suitable permissions to run the...

  • RE: Converting Datatypes: nvarchar to datetime

    I have not come across this one before but I would guess that the confusion is caused by the source and target machines being set to different locales

    British Date DMY

    American...

  • RE: SQL demo license expires

    MSDE is a cut down version of SQL Server without any front end tools. Maximum database size is 2GB and max ram is 2GB.

    If you are talking about small,...

  • RE: edit records in enterprise manager

    If you use EM you can cause locking problems if other users are connected.

    Unless you are talking millions of records I find that if I need manual updates I export...

  • RE: Execute SQL Server 2000 stored procedure from Access 2000

    Don't forget you need suitable permissions on the SQL2000 box to do this.

    You may have read/write access to tables but DDL statements such as CREATE, ALTER and DROP may not...

  • RE: The CLR in SQL Server 2005

    I'm not suggesting we should be just database geeks or stand Canute like before the .NET tide.

    I'm facing a situation where I have inheritted a mission critical system that was...

  • RE: Visual Studio Integration

    C:\WINNT\system32\os2 ?????????

    Look in the C:\WINNT\system32\os2\DLL folder and see a DLL called doscalls.dll

    Write out a million times "I must not be cynical".

    You know morale is low when the company does a...

  • RE: Trigger to create a Primary key

    CREATE TABLE dbo.Product (

    ID Int Identity (1,1) NOT NULL,

    ProductName VARCHAR(50) NOT NULL ,

    ...etc

    )

    The parameters of identity are the start value of the sequence and the increment.

    You can...

  • RE: One Up

    The great thing about an X-box is that you can chip it, upgrade the hard disk and get a fairly decent linux install on it for £99!

    I think the hand...

  • RE: backup 6.5 restore to 7

    Absolutely not.

    SQL 6.5 is a totally different architecture to SQL 7 and onwards.

    SQL 6.5 is nearer to SyBase on UNIX than it is to SQL 7 on Windows.

    You can connect...

  • RE: Can we have One error log file instead of Seven

    I suspect that you can't have an autogrowing file but there is a registry setting that allows you to specify the number of logs you keep.

    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer\MSSQLServer] "NumErrorLogs"=dword:00000010

    The problem with having...

  • RE: connection between two servers

    They don't even have to be SQL Servers!

  • RE: Calculated Alias T-SQL with CASE

    In your line

    [Sales]*[Cdisc]/100 AS [Set Disc], [GP]-[Set Disc] AS [Adj GP Pre Rebate]

    I don't think that you can define [Set Disc] and use it in one statement.

    Try

    [Sales]*[Cdisc]/100 AS [Set Disc],...

  • RE: dts error

    In your transformations there is an "options" tab. There is an exception file tab. If you have a file name filled in either remove it or make sure...

Viewing 15 posts - 2,761 through 2,775 (of 3,616 total)