Viewing 15 posts - 5,776 through 5,790 (of 7,191 total)
Everything you need to know has already been posted here - you just need to do a bit of reading. To summarise:
(1) Create a clustered index on all tables...
August 20, 2010 at 1:38 am
ashish.kuriyal (8/19/2010)
You will definately see the difference.
if it still growing, then you need to find...
August 19, 2010 at 4:15 am
I won't go into why you shouldn't shrink your database - you can search this site and you'll find plenty of references. If you must do it, do it...
August 19, 2010 at 3:54 am
1. That's fine.
2. sp_helpdb
3. Don't shrink your database. If you need more space, add it. Are you performing regular maintentance on your indexes?
John
August 19, 2010 at 3:39 am
Enclose the column name in square brackets ([]).
John
August 19, 2010 at 3:16 am
Ashkan
You need to rebuild and/or reorganise your indexes regularly, so if you remove it from this maintenance plan then you should make sure you're doing it somewhere else.
I'm sorry but...
August 18, 2010 at 7:07 am
So you have a database at least one of whose tables is gigabytes in size, and you also have a maintenance plan that attempts to shrink the database when it...
August 18, 2010 at 3:00 am
http://www.lmgtfy.com/?q=execute+sql+task+result+set+into+variable
Have a look at this, and post back if there's anything you still don't understand.
John
August 17, 2010 at 8:46 am
What is your result? Is it a result set or just a scalar value?
John
August 17, 2010 at 8:25 am
Something like this will generate a script for you to run and create the tables and copy the data across. You'll want to tweak it a bit so that...
August 17, 2010 at 8:18 am
Win
Since you're getting Logon to server 'REDMOND\XXXX' failed, I would guess that your SQL Server Agent doesn't have permission to log on. Have a look under Logins, and check...
August 17, 2010 at 6:55 am
Ramji29 (8/17/2010)
I don't think its a good practice for the sql service account (both mssql & agent service) to have local admin rights to the server.
Rohit
You're right - they...
August 17, 2010 at 6:41 am
Your thinking is indeed correct.
We use sa or the SQL Server Agent account as the job owner. We usually go for the former because it's easier to remember. ...
August 17, 2010 at 3:54 am
Nithi
You still haven't specified what you need help with.
Let's look at your stored procedure, though. It looks unnecessarily complicated. Why do you not just insert straight from the...
August 17, 2010 at 2:02 am
Viewing 15 posts - 5,776 through 5,790 (of 7,191 total)