Viewing 15 posts - 4,906 through 4,920 (of 7,429 total)
When considering concurrent users of a database I go with number of SPIDS as this is the number of connections open to the database at the time. However if you...
September 10, 2002 at 4:26 am
SQLAgentCmdExec has nothing to do with a called package that is under the right of the user.
Depending on the users rights they may have created the table but under there...
September 10, 2002 at 4:14 am
Also if you are INSERTING, UPDATING, or DELETING multiple records at a time you will have to look thru the records in either the inserted and/or the deleted tables either...
September 10, 2002 at 4:05 am
There are several factors that influence this. One of the major is where is the restore coming from local file backup or from tape. Also, how much data changes and...
September 10, 2002 at 4:02 am
It would be great but you cannot use TEXT as the data type for a variable except when used for INPUT/OUTPUT with a stored procedure, however as for OUTPUT no...
September 10, 2002 at 3:56 am
I haven't seen the issue with SA not working when the account was pulled unless your EM was cnfigured to use the trusted connection. Usually you can get around by...
September 10, 2002 at 3:45 am
Ok, first the General tab is the installed version of SQL (english language version in this case). The language for users when created is based on the Server settings default...
September 9, 2002 at 3:44 am
Also, try restore to another database from a previous backup to see if the same thing exists.
"Don't roll your eyes at me. I will tape them in place." (Teacher on...
September 9, 2002 at 3:33 am
I do laugh at the last thing about DBA's lasting longer. find where I work and a few other large corps around here that the job title DBA is...
September 9, 2002 at 3:26 am
Actually, I believe if you right click the table in EM you will get a script of the table and all it' s related items except triggers that you can...
September 8, 2002 at 9:53 am
Sorry without your code and the fact you never stated which was the left table I incorrectly assumed it was the remote table not the local. However, with a linked...
September 7, 2002 at 2:26 pm
About the only way is for someone to truncate the table or do a delete from. As this is the first time you may need to check with Profiler to...
September 7, 2002 at 2:22 pm
It most likely boils down index decisions. For example if the clustered index is on the column you are joining to then the query manager may decide to use the...
September 6, 2002 at 6:56 pm
Depends on what code is in the .BAT, most likely it references osql or isql thru command line so you would execute under the OS enviroment thru cmd or by...
September 6, 2002 at 6:51 pm
There are dozens of factors that cause the query engine to make certain decissions. Generally it looks at the index with the most unique values and may consider the WHERE...
September 6, 2002 at 6:46 pm
Viewing 15 posts - 4,906 through 4,920 (of 7,429 total)