Forum Replies Created

Viewing 15 posts - 76 through 90 (of 99 total)

  • RE: Windows License YIKES

    I don't think the licence allows for multiplexing through a seperate device, I belive the device/user count is based upon the final end point of the connection regardless of the...

  • RE: Windows License YIKES

    What I make out from that article is that if you were using per user licencing within a domain then each user would require a CAL but this would be...

  • RE: Creating Dynamic Tables

    I would just use the convert function, something like:

    set

    @tablename = '#BackupFile_' + convert(

  • RE: Application/Role based web security

    From your schema I can't see where people are related to a role.

    From what I can see you need a table that relates users to an application role.

    Then you could...

  • RE: Mirroring and snaphot

    One point to remember for reporting is that snapshots use more resources as records are only copied when they are modified. Also snapshots cannot be backed up, not good for your...

  • RE: Access and Merge Replication

    At a first guess, maybe some thing to do with the replication is firing a trigger, thus altering the value of the last identity created.

    Are you using @@identity or scope_identity()...

  • RE: Less flash ads

    For large databases and backups that are transfered over a network speed and size would be an issue.

    Such as if you were copying the backups to an offsite location. That...

  • RE: Preventing Identity Theft Using SQL Server

    I suppose the worry here is if the attacker were to gain sys admin rights on the database. Then the whole permission system fails to work. This solution could then...

  • RE: bcp statement written on multiple lines

    It looks like xp_cmdshell only uses the first line as the command to run.

    I tried running a command using ^ (needed in the command prompt to split a command over...

  • RE: just swapped over to a new server. now some users cant connect

    To me that looks like one of two problems. The user's windows account doesn't have an sql login (got missed in the change over?) or the user is not connecting...

  • RE: making stored procs read only for developers(SQL 2000)

    I personally like the idea of having all the procedures checked into source control and then just not allowing the developers access to the procedures on the server as they...

  • RE: Decimal datatype?

    Your trouble is the way floating point numbers are represented in memory, which leads to rounding errors. An eqivelent to this is in decimal we cannot write 1/3 exactly as...

  • RE: Bug or feature?

    There isn't an setting anywhere to make it non-optional is there? Thus to alias a column you would have to write alias = column or column as alias.

  • RE: Database Diagrams & Visio

    I just create all the diagrams in visio using the reverse engineer function. Although at the moment I can only do this using the generic ODBC driver, anyone know when...

  • RE: Execute a stored procedure inside a user defined function

    I have seen no way to achive this. Either the procedure needs to be rewrote to be a function, or the function needs to be made into a procedure

Viewing 15 posts - 76 through 90 (of 99 total)