Viewing 15 posts - 4,321 through 4,335 (of 7,191 total)
So you've tried DENY DELETE instead of DENY DROP?
john
October 12, 2012 at 8:31 am
OK, then you need to provide more information. Was this a one-off failure, or does it happen regularly? Does it always happen at the same time of day?...
October 12, 2012 at 8:11 am
Looks like Database Mail isn't correctly configured. There's plenty of information out there on how to set it up - here[/url]'s an example.
John
October 12, 2012 at 6:27 am
Is this a one-off, or are you going to have to do it regularly? If you're only doing it once, I don't think I'd bother with SSIS. Here's...
October 12, 2012 at 6:21 am
Not DENY ALTER SCHEMA. Something like DENY ALTER ON SCHEMA::SchemaName. You'd have to check out the exact syntax yourself if that isn't quite correct.
John
October 12, 2012 at 1:34 am
Welsh Corgi (10/11/2012)
Could you please expand on your comments about DELETE and the ON Clause?
Yes - try DENYing DELETE or ALTER on the schema that the tables are in.
Deny permission...
October 11, 2012 at 8:36 am
A couple of things to try:
(1) Use DELETE instead of DROP
(2) Add an ON clause (although I don't know why that would be needed for DENY DELETE/ALTER but not for...
October 11, 2012 at 8:00 am
It's not possible in a single operation. You could restore the database then create new files in the restored database. Can I ask why you need to do...
October 11, 2012 at 7:51 am
Mr.DiGi (10/10/2012)
UPDATE
P
SET
ProductName = N.ProductName,
Price = N.Price
FROM
dbo.Product P
INNER JOIN
dbo.New_Prices N ON...
October 11, 2012 at 3:50 am
Use a Foreach Loop Container in SSIS. Your requirements are quite vague, so please try that and post again if there's anything in particular that you don't understand.
John
October 10, 2012 at 4:27 am
Lavanyasri (10/8/2012)
hi Guys,Can i have any update on this...........
Please will you post the script, then?
By the way, you can see what differential backups have completed with this query:
John
October 8, 2012 at 6:30 am
Vijay
Please post your full INSERT statement and the DDL for your table.
Thanks
John
October 4, 2012 at 5:31 am
It might help you to understand what's going on if you run the following just before selecting from the view:
SELECT SUSER_NAME()
SELECT USER_NAME()
It doesn't matter whether you're a sysadmin, a database...
October 4, 2012 at 1:22 am
OK, understood. Does the definition contain "user_name", "user_id", "sys.database_principals", "current_user" or anything else that suggests it's returning data according to the user running the query?
John
October 3, 2012 at 9:14 am
I can't say whether it's correct or not because I can't see your data. But since one user gets one result set and another user gets a different one,...
October 3, 2012 at 8:55 am
Viewing 15 posts - 4,321 through 4,335 (of 7,191 total)