Viewing 15 posts - 226 through 240 (of 1,137 total)
rockingadmin (10/16/2009)
can you guide...
October 16, 2009 at 1:36 am
Normally a dictionary file/table is used or a filter. most websites or forums utilise this form of strategy. similiar to how sql injection is basically dealt with. all input is...
October 16, 2009 at 1:34 am
WilliamBendall (10/16/2009)
I have a job scheduled to start at 5:00 PM everyday. Yesterday this job didn't start. I looked in the Job Activity Monitor view and found that the...
October 16, 2009 at 1:30 am
swear i answered this one about 10 minutes ago.
it is not an error, just an informational, just telling you that it called a extended stored procedure to read some values...
October 16, 2009 at 1:28 am
I take it that all the sql services are running, did you disable any thing else?, is there anything mentioned in the windows event logs?
October 16, 2009 at 1:26 am
lyeslink (10/16/2009)
I have a little problem with my security in my server SQl 2008, when a new user is created in the server, it has only the administrator rights...
October 16, 2009 at 1:13 am
It is not an error, the extended stored procedure is used to read values from the registry. I doubt that it is related to your problems.
October 16, 2009 at 1:07 am
You need to give more information if you want help, is it always going to be the 6th record or can it be any record and why is it that...
October 16, 2009 at 1:01 am
When you shrink it using SSMS 20005 do you shrink the database or do you shrink files.
if you select to shrink by files, make sure that the file type is...
October 15, 2009 at 9:09 am
did you actually shrink it using the reorganise option?
October 15, 2009 at 9:00 am
If you are concerned about the physical file size of the msdb database, last resort is to shrink it and then after that rebuild the indexes.
October 15, 2009 at 8:54 am
Can you give us more information like.
How big is the mdf file
how big is the ldf file
if you run dbcc loginfo on that database what do you get
what is your...
October 15, 2009 at 8:44 am
Siddu-916480 (10/15/2009)
I have a problem on my SQL server 2000.
We had a migration from old one to new one. As a part of it, detached all the dbs and moved...
October 15, 2009 at 8:33 am
george sibbald-364359 (10/15/2009)
AAAaaaaaaaaaaaaaaaaaaaargh!
Was that the answer, or did you have a caffeine free moment.
October 15, 2009 at 8:30 am
you are doubling the quotes
when you have got
EXEC sp_addrolemember N''db_datareader'', N''IBM\Pratck''
replace it with
EXEC sp_addrolemember N'db_datareader', N'IBM\Pratck'
do that for all of the lines that error and you will be fine
you can...
October 15, 2009 at 8:24 am
Viewing 15 posts - 226 through 240 (of 1,137 total)