Viewing 15 posts - 11,071 through 11,085 (of 13,469 total)
it took a while for this one to soak in. I read the requirement a couple of times, and kept thinking it's gotta be possible by using the stored...
May 25, 2009 at 6:19 am
HanShi (5/25/2009)
SQL 2000 is not compatible with SQL 2005. Connect to the SQL 2005 instance using the SQL 2005 tools.
the above advice is not correct. you can connect to a...
May 25, 2009 at 5:47 am
doh i'm sorry; i jumped to conclusions and thought the question was "how to assign/deny permissions to a role" ; Lemme test a couple of thoeries and i'll post the...
May 22, 2009 at 7:48 am
something like this example might help.
I'm creating 3 roles...one that is almost-but-not-quite-admin, one for regular users, and a third to explicity deny deletion rights.
i then assign various users to those...
May 22, 2009 at 7:00 am
no, my point was indid=1;
in my case the difference between the totals was 3x the number of rows, but 6 times the mb size:
SELECT SUM([# of Pages]) as NumPages,
Sum([# of...
May 21, 2009 at 2:34 pm
dynamic results means dynamic SQL. there's no other way to do it.
if you only have read access, you could not create a stored procedure to run dynamic sql anyway, right?
basically,...
May 21, 2009 at 11:56 am
SQLRecon is a good tool that finds installs and instances, and tests them for a lot of security holes like blank passwords, etc.
May 21, 2009 at 10:56 am
i think it's this WHERE statement:
WHERE indid >= 2 and indid = 1 would include the clustered index of each table, and certainly makes a huge difference when i ran...
May 21, 2009 at 10:35 am
to add to what Greg said, SQL server keeps a pointer for each TEXT field;
SQL server will try to store each fields data stuffed into a TEXT datatype in a...
May 21, 2009 at 9:58 am
passwords or logins?
pretty much no matter what you do, you will not be able to see passwords...it's a huge security hole if you could create a trace or trigger and...
May 21, 2009 at 7:42 am
without seeing your script, here is a common issue:
if you ALTER a table by adding a column, and then try to INSERTfeaturing that new column , an error is raised...
May 21, 2009 at 6:45 am
it's the nature of the beast; the Just-In-Time Compiler, after a restart, has to recompile any pages and put them into memory.
First time the web page is accessed, it compiles...
May 20, 2009 at 10:44 am
not sure if this is what you are after, but I often use fiddler to test web pages and see what data is being passed back and forth when...
May 20, 2009 at 10:40 am
preventing relaying to outside emails is a very common mailserver setting; my mail server will not allow relaying unless you AUTH with username and password;
the server can also allow relaying...
May 19, 2009 at 5:43 pm
i think seeing a function called multiple times is normal.
wouldn't this WHERE statement:
WHERE master.sys.fn_varbintohexstr(job_id) = substring(program_name, 30, 34))
be needed to be called one time for each row in sysjobs because...
May 19, 2009 at 4:38 pm
Viewing 15 posts - 11,071 through 11,085 (of 13,469 total)