Viewing 15 posts - 3,031 through 3,045 (of 3,606 total)
The thing to remember with security is who and what are you protecting the server from.
In our case SQLMail can only be used to send internal mail and can only...
September 16, 2004 at 1:51 am
I am still not 100% clear as to how to decide the FILL FACTOR.
My understanding was that if you have a high input rate into a table then the indices...
September 15, 2004 at 7:47 am
Do you allow mail to go into your SQL Server or are you simply pushing messages outwards?
Our network guy installed Outlook but configured the Exchange server so that only internal mail...
September 15, 2004 at 2:02 am
I work in a development environment where data is relatively small, even when we do data migration jobs.
This gives me the luxury of running DBCC DBREINDEX as part of the...
September 15, 2004 at 1:57 am
Check for locks.
It may be that you stored procedure requires a lock on an item that is already locked.
September 15, 2004 at 1:35 am
I take it that your publication includes the stored procedures, not just the tables?
The quickest way of reassigning pemissions is to assign permissions to a role then use TSQL Script...
September 14, 2004 at 6:09 am
DECLARE @sSQLSELECT VARCHAR(8000)
DECLARE @sSQLFROM VARCHAR(8000)
DECLARE @sSQLWHERE VARCHAR(8000)
SET @sSQLSELECT='SELECT .......'
etc
EXEC( @sSQLSELECT + @sSQLFROM + @sSQLWHERE)
September 14, 2004 at 1:24 am
Think of the BEGIN and END statements in TSQL as being like the curly braces in JavaScript, C#, C++, C, Java etc.
BEGIN = {
END = }
As with these languages TSQL...
September 14, 2004 at 1:22 am
If possible I try and avoid SHRINKFILE in live systems because there is an overhead in growing the file as data is put back in.
September 14, 2004 at 1:16 am
There is no direct equivalent.
You could try using the TOP predicate to return the TOP 1
September 14, 2004 at 1:10 am
The users within a database have a SID column which matches to the SID value of the login.
If you transfer your logins first then restoring your database will maintain your...
September 13, 2004 at 8:57 am
Yep, no DRI.
A few years back there was an discussion on this site about leaving out DRI in order to get the maximum throughput on the database.
The example given...
September 10, 2004 at 10:20 am
In the particular vendor database (I stress vendor) it held a list of countries.
The problem you face with a database with thousands of tables are
September 10, 2004 at 7:58 am
Over and above the previous answer
A Primary key cannot contain nulls.
A unique index can contain a single null.
A clustered index holds its data in the leaves of the index. You...
September 10, 2004 at 1:57 am
A login within SQL Server has a unique identifier called a SID and an encrypted password.
The way I do it is to use a SQL query to generate the sp_addlogin...
September 10, 2004 at 1:53 am
Viewing 15 posts - 3,031 through 3,045 (of 3,606 total)