Viewing 15 posts - 46 through 60 (of 91 total)
Yes, there are default permissions (to public) on objects in master and msdb. For example, any user (public) can execute sp_password or any user can select * from sysfiles...
September 17, 2003 at 11:55 am
To grab the latest backup file? Assuming you know what the backup file filename is. You'd either need to know the filename or have some scheme to get...
September 17, 2003 at 11:44 am
Yea, the cards can also leverage your storage costs - but using storage costs to justify anything is just silly anymore
Space is really all you'll save....
September 17, 2003 at 11:33 am
If a DTS package suits your purpose (or maybe it does and you don't know it yet ) - transformations from a SQL Server can use sp's....
September 17, 2003 at 11:26 am
HaHAHaa. It looked like everyone's guesses are spread evenly across the answers.
It should be an analysis server category of question if there is a such category. Definately not...
September 12, 2003 at 9:59 am
Yea, I figured the underlying MS supplied function isn't handling the nulls properly. This one caught me off guard- Where are the emaill addresses? Some outputs I'd written...
September 10, 2003 at 3:18 pm
As far as I know there is no way to automate or script the task to create the fmt files. If you're familiar with FMT files, .. er,...
September 10, 2003 at 3:07 pm
Uh, how about a dynamic stored procedure. Like this:
Declare @tablename sysname
declare @tablecount int
declare @strsql varchar(8000)
set @tablename = 'authors'
select @strsql = 'create procedure #temptest (@variable int = null OUTPUT) as...
September 10, 2003 at 2:23 pm
Look up CREATE TABLE in BOL (and read under TEMPORARY TABLES) for the full explanation. I cut this excerpt out:
A local temporary table created in a stored procedure is...
September 10, 2003 at 1:54 pm
In the stored procedure write:
declare @tablecount int
select @tablecount = count(*) from authors
September 10, 2003 at 1:46 pm
quote:
Not much to go on. If you can reproduce it, I'd call MS support about it.Andy
http://www.sqlservercentral.com/columnists/awarren/
September 3, 2003 at 10:03 am
My first instinct would be to try to hunt down the error at microsoft.com. Looking at your script (some of it looks like gibberish ), I...
September 3, 2003 at 10:02 am
quote:
Is there a command line version of this cliconfg utility (SQL Server 2000)?
I've never seen...
September 3, 2003 at 9:55 am
This might sound weird but, does the package actually execute in the scheduler?
Do you know the job is failing where you expect it to fail? On my more complicated...
September 3, 2003 at 9:33 am
ooooh.. I didn't think about the permissions aspect of changing the service profile. I answered correct, but I couldn't quite put my finger on why EM would be...
September 3, 2003 at 9:16 am
Viewing 15 posts - 46 through 60 (of 91 total)