Viewing 15 posts - 1 through 15 (of 16 total)
There is a Hotfix available on microsoft site.
June 24, 2008 at 6:12 am
How about you script out all of the stored procedures into one file, then do a replace on:
AS
Change it to:
WITH ENCRYPTION
AS
Just use notepad or any other text editor to do...
June 12, 2008 at 5:21 am
Replace your decrypt query with :
SELECT CONVERT(NVARCHAR(100),DecryptByKey(emppassword)) FROM dbo.Employees
i.e replace char with nVarchar.
For further help see: http://allaboutoraclemssql.blogspot.com/2008/06/sql-2005-encryption.html
June 12, 2008 at 5:15 am
SQL Password is a password recovery tool for MS SQL Server 2000, 2005, 2005 Express and MSDE 2000 (Microsoft SQL Server Desktop Engine).
You can either try to find the...
June 12, 2008 at 5:05 am
With Microsoft SQL Server 2000 it was possible to debug stored procedures from directly within Query With SQL Server 2005, however, this functionality was moved out of SQL Server Management...
May 30, 2008 at 1:11 am
Yes, as earlier posts says, use views.
Apart from that you can use encryption/decryption to hide values and allow to show table column.
May 28, 2008 at 12:29 am
use [database]
select name, physical_name from sys.database_files
May 28, 2008 at 12:21 am
To avoid deadlock, you must have through knowledge of your application.
1. Identify the deadlocking processes and the object sparticipating in deadlock.
2. Use program monitoring table, say Program_session having columns program_id...
May 28, 2008 at 12:18 am
1. Use "Create Script" to create tables. This will ensure the correct data structure abd its FK, PK and all constraints.
2. Use BCP Out and BCP In to copy...
May 28, 2008 at 12:07 am
1. Check the index fill factor .
Ideally it should be 70% for highly updating tables and 100% for rest DML opearations.
2. Check whether any anti-virus is installed on SQL server...
May 27, 2008 at 9:05 am
Turn off Hyper Threading on SQL 2005 host computers as the default.
HT-enabled motherboards show markedly degraded performance under heavy load. Disabling HT restores expected levels, according to reports from within...
May 27, 2008 at 12:36 am
Pl check the hardware configuration of both Dev and production server.
If CPU is bottleneck, then you should study and configure settings for parallelism, Hyperthreading.
May 27, 2008 at 12:28 am
You can use before insert and after insert and such triggers to store data in history and present table.
May 27, 2008 at 12:22 am
Yes, Jef, you are correct.This should apply to tables.
-Avishkar
May 20, 2008 at 7:31 am
If your database is read only (low number of updates), use a fillfactor of 100%.
If your database is write intensive (writes greatly exceed reads), use a fill factor somewhere...
May 20, 2008 at 6:59 am
Viewing 15 posts - 1 through 15 (of 16 total)