Viewing 15 posts - 61 through 75 (of 123 total)
Maybe the account that runs SQL SERVER agent doesn't have enough priveleges....
Or you are using the wrong account there ???
February 3, 2003 at 7:56 am
Maybe the account that runs SQL SERVER agent doesn't have enough priveleges....
Or you are using the wrong account there ???
February 3, 2003 at 7:53 am
Thanks Antares,
I looked in the books as well (First thing I do) but i couldn't find anything...
I was wondering... So I decided to post this question. And the answer is...
February 3, 2003 at 7:11 am
Antares are you telling me that a UDF doesn't store a execution plan ?????
That implies that you must never use data retrieval functions in a UDF ...
Am i wrong here...
February 3, 2003 at 3:48 am
The function is a lookup in anotjer table and returns a Table
February 3, 2003 at 3:16 am
Thanks crosspatch i know that one from the BOL. ( I wished every programming book would start with that phrase )
But the real question is WHY is it slower,...
January 21, 2003 at 5:40 am
Are the Default timeout settings on the server the same ????
January 21, 2003 at 5:35 am
I know this all.
But look at the following code....
DECLARE @STARTTIME DATETIME
DECLARE @ENDTIME DATETIME
DECLARE @LOOP AS INTEGER
DECLARE @MAXINSERTS AS INTEGER
DROP TABLE TESTTABLE
CREATE TABLE TESTTABLE
( --ID UNIQUEIDENTIFIER DEFAULT NEWID(),
ID INT...
January 20, 2003 at 7:21 am
Detach the database.
delete the log !
Next attach the database with
sp_attach_singel_file_db !
January 15, 2003 at 7:46 am
Is this the case for every database or only a specific one ?????
In other words is the backup failing just for this database or for all databases.
January 14, 2003 at 9:01 am
You should do this. Look in BOL for Service accounts.
You could need it for :
·Remote procedure calls
·Replication
·Backup to Network Drives
·SQL Mail
·Linked Servers
January 13, 2003 at 8:18 am
If you use log shipping it doesn't matter what you change ( add tables, add filegroups etc....) as long as Both systems have the same drive topology.
Tested it and works...
January 13, 2003 at 8:08 am
Andrew,
Why not create a Maintenance plan that does them all.
Or do you want to back up the databases simultaniously ?
Because if that is what you want You should create...
January 13, 2003 at 8:00 am
Not So difficult i think.......
every time you execute the job store the month in a table. For example Months.....
then you could do the following ....
if datepart(dw,getdate()) = 1 (is a...
January 13, 2003 at 2:45 am
I Agree with Carl. Most of my speed improvemnets was moving the small resultset to a amemory table and then join that large resultset with a small memory table,
or...
January 13, 2003 at 2:27 am
Viewing 15 posts - 61 through 75 (of 123 total)