Viewing 15 posts - 42,301 through 42,315 (of 49,566 total)
Ninja's_RGR'us (12/18/2008)
Well not really, it would almost be correct in Access which is probably where that all started.
I haven't worked in Access for so long I can't remember anything about...
December 18, 2008 at 5:51 am
thatok (12/18/2008)
Decryption By Password = N'HRTestPassword'
I hope you're going to make that password a little more complex in production.
December 18, 2008 at 5:51 am
Your syntax is completely incorrect.
Update TargetTable
SET TargetColumn = SourceColumn
FROM TargetTable INNER JOIN ....
December 18, 2008 at 5:28 am
What do you mean by "performance is slow"
Is this normal, or is the server unusually slow?
Have you made any changes recently?
Are there more users than normal?
Is there excessive blocking?
Are you...
December 18, 2008 at 5:27 am
If you are using SQL 2005, rather use the sys.dm_exec_sql_text than inputbuffer.
December 18, 2008 at 5:25 am
Look up the EncryptByKey and DecryptByKey functions in Books Online.
December 18, 2008 at 5:21 am
Username is typically a very bad choice for a clustered index. It's wide, it's nowhere near unique and it's not ever increasing. LOG_DATE_TIME may be a good candidate. Still need...
December 18, 2008 at 5:16 am
Did you read the links that Pradeep provided?
December 18, 2008 at 5:14 am
DBCC TRACEON (1222,-1)
The -1 turns it on globally. Without that the traceflag is only enabled for a single session, the one that turned it on. Since deadlocks are detected by...
December 18, 2008 at 5:13 am
Kiran (12/17/2008)
1. when will the log shrink for simple recovery model?
Never. The log is truncated on a checkpoint, meaning the inactive log records are discarded and the space made...
December 18, 2008 at 12:15 am
I haven't seen this for a while.
is the set "SET CPU_ UTILISATION LOW" is the query to set the cpu utilisation low..
December 18, 2008 at 12:12 am
karthikaug18 (12/17/2008)
is the set "SET CPU_ UTILISATION LOW" is the query to set the cpu utilisation low..
Um, no. SQL will take what CPU it needs.
when we are taking the...
December 18, 2008 at 12:05 am
kwitzell (12/17/2008)
Gail,I ran the script and received no output (0 rows).
Ken
Is that in the AM20 database?
December 18, 2008 at 12:04 am
You gain points by posting (1 per post) or by answering the Question Of the Day correctly. Usually between 1 and 3 points
Forum Newbie - 0
Grasshopper - 10
SSC Rookie -...
December 17, 2008 at 1:25 pm
Since you're on 2005, join to sys.tables. Only user tables appear in that view.
sysobjects is deprecated in 2005 and above and will be removed in a future version.
December 17, 2008 at 12:59 pm
Viewing 15 posts - 42,301 through 42,315 (of 49,566 total)