Viewing 15 posts - 1,876 through 1,890 (of 5,393 total)
dilipd006 (2/16/2012)
The data should be protected, secured (Password protected, encrypted)
You can use Transparent Data Encryption for this.
there should not be any limit in data storage.
I think I covered this one...
-- Gianluca Sartori
February 16, 2012 at 3:59 am
Is this supposed to be a desktop application?
SQL Server 2008 R2 Express Edition supports databases up to 10 GB in size. I would be very concerned about running applications that...
-- Gianluca Sartori
February 16, 2012 at 3:55 am
rummings (2/16/2012)
I think I need to get my users stronger glasses.
🙂 Thanks to you for the good laugh!
-- Gianluca Sartori
February 16, 2012 at 3:27 am
jcb (2/16/2012)
-- Gianluca Sartori
February 16, 2012 at 3:23 am
You're welcome.
Happy to help
-- Gianluca Sartori
February 16, 2012 at 3:21 am
orkun çapraz (2/16/2012)
I want to ask a question.
Is there any way when a process block the others, automatically kill it...
-- Gianluca Sartori
February 16, 2012 at 3:01 am
Permissions on linked servers are assigned to logins, not to database users. "dbo" is not a login.
Check the security settings of the linked servers: all the authorized logins should be...
-- Gianluca Sartori
February 16, 2012 at 2:33 am
Jeff Moden (2/15/2012)
-- Gianluca Sartori
February 16, 2012 at 2:11 am
It's a server level privilege and you won't see it with sp_helprotect.
Use this instead:
SELECT sp.permission_name, p.name
FROM sys.server_permissions sp
INNER JOIN sys.server_principals p
ON p.principal_id = sp.grantee_principal_id
WHERE sp.permission_name =...
-- Gianluca Sartori
February 15, 2012 at 10:55 am
Lowell (2/15/2012)
-- Gianluca Sartori
February 15, 2012 at 10:35 am
No: the above script grants the privilege on ALL databases, including model.
New databases are created from a copy of the model database, which will already have those privileges granted to...
-- Gianluca Sartori
February 15, 2012 at 10:25 am
You will have to download the whole table and compare it to your local data, unless you have something on the remote table that you could use to filter data...
-- Gianluca Sartori
February 15, 2012 at 10:23 am
jcb (2/15/2012)
Depending of your tables and needs you can also log or create a...
-- Gianluca Sartori
February 15, 2012 at 10:18 am
Assuming USER1 is defined in each database, this should do:
EXEC master.dbo.sp_MsForEachDB 'USE [?]; GRANT VIEW Definition TO USER1;'
-- Gianluca Sartori
February 15, 2012 at 10:16 am
Not 100% sure what you're after, but this should do the trick:
UPDATE lf
SET Linked_File_Name = (
SELECT TOP 1 hf.[File_Name]
FROM dbo.Header_File hf...
-- Gianluca Sartori
February 15, 2012 at 9:25 am
Viewing 15 posts - 1,876 through 1,890 (of 5,393 total)