Viewing 15 posts - 4,306 through 4,320 (of 7,191 total)
If you want to release space on disk then you need to shrink the database. See DBCC SHRINKDATABASE. Beware, though - if your database is likely to grow...
October 19, 2012 at 1:33 am
That'll revoke the deny, but won't necessarily restore the permission. You'll need to do an explicit GRANT if the user doesn't have the permission through any other avenue.
John
October 18, 2012 at 8:05 am
Nobody has so far commented on the four distinct values in your column. In one of Gail's articles that you're about to read, it says this:
It usually works out...
October 18, 2012 at 7:53 am
Didn't we go through this yesterday?
John
October 17, 2012 at 7:53 am
Jim
If you have xp_cmdshell enabled, you can use it to run the command line for your zip utility. Otherwise, you could consider using SSIS to do the same. ...
October 16, 2012 at 8:44 am
Why are you getting a value for @fctity and then not using it? More importantly, why are you using a cursor at all? Get rid of everything up...
October 16, 2012 at 7:30 am
Remove the column qualifiers from the SELECT list, or replace them with "Inserted".
John
October 16, 2012 at 6:52 am
Please will you post DDL for the two tables, including any primary key or unique constraints. Please also give an example of an INSERT statement.
Are you sure that after...
October 16, 2012 at 6:10 am
I'll let you find that out for yourself. Just type "File System Task" into your favourite search engine.
John
October 16, 2012 at 5:59 am
If you have a Central Management Server, you can run the same GRANT statement on all servers at the same time. Don't know whether it would work for the...
October 16, 2012 at 5:53 am
Or you can use the File System Task built into SSIS.
John
October 16, 2012 at 5:42 am
Grant SELECT permission on the objects it needs to read from, then. Depending on exactly what data you're trying to read, the VIEW DEFINITION permission might be appropriate.
John
October 16, 2012 at 5:36 am
What error message did you get when it failed the second time (after you had added the SQL Server Agent account to the target servers)? What does the package...
October 16, 2012 at 4:56 am
What is the data type of the coldate column?
Have you compared the execution plans for the two queries?
John
October 16, 2012 at 4:12 am
Has the user in question tried dropping any objects since you denied ALTER on the schema?
John
October 12, 2012 at 8:59 am
Viewing 15 posts - 4,306 through 4,320 (of 7,191 total)