Viewing 15 posts - 211 through 225 (of 279 total)
jeetsingh.cs (2/13/2013)
the statement in the true clause will onlyexecuted
And only the first one that evaluated to true
February 13, 2013 at 7:37 am
eg: http://databases.about.com/od/sqlserver/a/sql_server_2012_licensing.htm
But use it only for information. Like anthony.green said for the exact price contact with reseller
February 13, 2013 at 7:10 am
Or just use a language-neutral form, that is always interpreted as ymd, eg:
set @VisitDate=N'20131225'
February 13, 2013 at 6:56 am
You can start here http://msdn.microsoft.com/en-us/library/ms166102%28v=sql.100%29.aspx
1. You should know what cause an activation stored procedures to rollback and return messages to a queue, that cause disable of the queue. You can...
February 8, 2013 at 1:09 am
If tables have the same structure use a partitioned view, or bind and unbind table to view, or in SQL 2012 use synonym, all depend on your needs.
February 7, 2013 at 1:12 am
Why case? You need a simple select and a where condition or I don't understand your question. Post example data and result then it will be easier
February 4, 2013 at 6:16 am
This is a one query or many?
Please post a query execution plan, there must be something that send a query optimizer to choose a wrong execution plan, this could be...
February 2, 2013 at 3:43 pm
Check, and find a one difference:
DECLARE @Person TABLE (Name nvarchar(100)
COLLATE SQL_Latin1_General_CP1_CI_AS);
INSERT INTO @Person VALUES(N'Çaliskan Akdag');
SELECT * FROM @Person;
February 1, 2013 at 7:25 am
jchapman (1/29/2013)
I have a test user called "LowAccessTest", who exists as a user in DataMart but has no specific privileges (If I give this user db_datareader, they can see everything...
January 30, 2013 at 1:18 am
PHXHoward (1/29/2013)
That makes sense. I was wondering about the reencrypt process because an auditor asked me that question so I wanted to give him an answer.
Auditor 🙂 so all is...
January 29, 2013 at 12:21 pm
PHXHoward (1/29/2013)
Thank you for the replies. I understand now.How safe is the reencrypt process? Is there data file ever exposed while it is reencrypted?
Encrypted data in decrypted form...
January 29, 2013 at 12:03 pm
gerard-593414 (1/29/2013)
However, If I use an INTO clause , it errors with...
January 29, 2013 at 5:16 am
PHXHoward (1/28/2013)
I'm referring to TDE encryption.When we regenerate the DEK or create a new certificate and encrypt using certificate, does it decrypt/reencrypt the data itself?
Without decryption how can it change...
January 29, 2013 at 2:16 am
Anju Renjith (1/29/2013)
...I need to check this constraint only for the new records and ignore the values existing in the table.
You can't have part of a table with constraint and...
January 29, 2013 at 12:23 am
PHXHoward (1/28/2013)
At what point does the actual data get reencrypted by SQL Server? Does it happen when I regenerate a database encryption key or when a new certificate...
January 28, 2013 at 2:27 pm
Viewing 15 posts - 211 through 225 (of 279 total)