Viewing 15 posts - 76 through 90 (of 99 total)
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...
September 29, 2006 at 8:39 am
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...
September 29, 2006 at 7:04 am
I would just use the convert function, something like:
set
@tablename = '#BackupFile_' + convert(
September 29, 2006 at 6:47 am
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...
September 22, 2006 at 6:06 am
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...
September 22, 2006 at 5:40 am
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()...
September 21, 2006 at 5:31 am
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...
September 20, 2006 at 8:56 am
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...
September 20, 2006 at 6:17 am
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...
September 15, 2006 at 5:45 pm
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...
September 15, 2006 at 5:23 pm
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...
September 15, 2006 at 5:20 pm
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...
September 13, 2006 at 5:11 pm
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.
September 13, 2006 at 5:00 pm
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...
September 13, 2006 at 4:54 pm
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
September 13, 2006 at 4:38 pm
Viewing 15 posts - 76 through 90 (of 99 total)