Forum Replies Created

Viewing 15 posts - 1,066 through 1,080 (of 1,654 total)

  • RE: SQL Replication and SQL Injection attacks

    Sounds like total nonsense to me.

    Transactional replication reads from the transaction log. Of course SQL Injection is possible through your original application, then replication will apply any change to...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Merge Replication

    I'm not sure if it's possible like that, but it's certainly not the recommended way.

    When you're having replication between different versions, the Distributor should always have the highest version....

    [font="Verdana"]Markus Bohse[/font]

  • RE: Script database role

    Which ServicePack are you using?

    On my SP2 machine I have Database Roles on top of the list. I don't have any machines available with a lower version so can't test...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Alter Login on Stored procedure

    You need to use dynamic sql in order to do this

    DECLARE @ULOGIN sysname

    DECLARE @sql nvarchar(500)

    SET @ULOGIN = 'TESTER'

    SET @sql = 'ALTER LOGIN ' + @ULOGIN + ' WITH PASSWORD...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Simple query returns inaccurate results - Serious bug in SQL Server 2000

    Ali Soylu (11/8/2007)


    Does anyone know which specific hotfix fixed this issue?

    As I said before I don't know exactly which fix but you should get the cummulative package SQL2000-KB916287-v8.00.2187-x86x64-ENU.exe

    [font="Verdana"]Markus Bohse[/font]

  • RE: Simple query returns inaccurate results - Serious bug in SQL Server 2000

    Steve Jones - Editor (11/8/2007)


    Markus,

    Very interesting. What was the issue with the view? Was this hotfix'ed?

    Steve,

    the issue with the view was exactly the same, that unless the derived table...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Simple query returns inaccurate results - Serious bug in SQL Server 2000

    Ali,

    I did a quick test

    First on SQL 2000.2187 (incl. cumultaive Hotfixes), all queries return the expected result.

    Second on SQL 2000.2039 the results are like you said.

    Then I rembered an...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Default Constraints

    This should do the job:

    SELECT OBJECT_NAME(d.parent_object_id) AS tablename,

    d.name ...

    [font="Verdana"]Markus Bohse[/font]

  • RE: Installing Analysis Services after initial installation of SS 2005

    You can add AS from Add/Remove Programs in Control Panel. Select MSSQL Server 2005 and then click Change. But depending on which Service Pack level your server is you might...

    [font="Verdana"]Markus Bohse[/font]

  • RE: New install of SQL 2005 then restoring a SQL 2000 database.. Possible?

    As Paul already wrote, the big question is what is wrong with your current server.

    If you uninstall SQL 2000 and makea new 2005 install, you need to recreate all...

    [font="Verdana"]Markus Bohse[/font]

  • RE: valid windows user is not able to login

    Sounds like the users are part of a windows group. Check in Active directory if the group has been removed.

    [font="Verdana"]Markus Bohse[/font]

  • RE: Public Role - Access to dtproperties

    dtproperties stores the information for database diagrams. Internally it's a system table and public by default has access to all system tables. That's why the permissions are set like they...

    [font="Verdana"]Markus Bohse[/font]

  • RE: altering a table

    You could create a new table with the desired layout, when insert all records from the original table, drop the old table and rename the new one to the original...

    [font="Verdana"]Markus Bohse[/font]

  • RE: SQL Server Latest Service Pack

    Rohit Chitre (11/5/2007)


    We get this after running

    SQL2000-KB884525-SP4-ia64-ENU.EXE

    This is the service pack for 64-bit Itanium version. Your select @@version result shows an Intelx86 version. So you have the wrong...

    [font="Verdana"]Markus Bohse[/font]

  • RE: '' = ' ' ???

    Martin,

    you could try using the CHARINDEX function.

    IF CHARINDEX (' ', postcode) = 5 ...

    Markus

    [font="Verdana"]Markus Bohse[/font]

Viewing 15 posts - 1,066 through 1,080 (of 1,654 total)