Viewing 15 posts - 541 through 555 (of 695 total)
Instead of using a Maintenance Task, why not simply create an SSIS package that performs the backup. It is very simple to write a package. I have never relied on...
February 19, 2010 at 8:26 am
I would create a simple SSIS Package and schedule the package to fire off. But keep in mind that you need to have the SQL Service running under a domain...
February 19, 2010 at 5:35 am
I always drop the "sa" account, and re-create it and assign no permissions and assign it to public group
SQL BOL
System Administrator (sa) Login
System administrator (sa) is a special login provided...
February 19, 2010 at 5:20 am
you can create your own schema, and see everything that is in the database, the tables, the constraints, everything.
Since you posted this in SQL 2005, I am assuming that you...
February 18, 2010 at 4:31 pm
You should never use the sys admin account for anything. That is only for backwards compatibility. Not sure why it is even still in here.
Create a simple SQL user account...
February 18, 2010 at 4:18 pm
in the Execute SQL Task command area, type the name of the stored procedure and the parameter variable value
ie....
exec INS_NewColor 'purple'
That is it.
In the sproc you should have code that...
February 18, 2010 at 4:10 pm
SSMS or Enterprise manager is only a client, like a web browser. you do not have to be connected to the Internet to open a web browser.
So how do you...
February 18, 2010 at 9:30 am
When you are using SSMS, are you on the server, or on your workstation? Have you tried connecting from a different workstation, or from a different server?
We cannot tell much...
February 18, 2010 at 8:46 am
You can move the TempDB to another drive. You can shrink it a couple times a week if needed. Is this a 24/7 box? If not, bounce it a couple...
February 18, 2010 at 5:48 am
What I was talking about is this............
You need to use a domain account to run the SQL Service. You will not be able to connect to any file share using...
February 18, 2010 at 5:27 am
For one, you should not be using the sys admin account for anything. Create another account for back ups. Also, you cannot place the backup files onto a network drive,...
February 17, 2010 at 10:26 am
A trans log cannot actually get full. It can grow all the way to the capacity of the drive in which it resides.
You need to backup the database and truncate...
February 17, 2010 at 10:19 am
You can start in the sys.syslogins view in SQL 2005 and above. If memory services me correctly, there was a syslogins table in SQL 2000. I do not have a...
February 17, 2010 at 9:30 am
I believe the SQL BOL are the best.
Andrew SQLDBA
February 16, 2010 at 6:57 am
Thanks Matt
Appreciate your explanation. You know, some things in SQL are sometimes difficult to explain, although you know the answer or how it works. It is at least for me.
Andrew...
February 15, 2010 at 3:55 pm
Viewing 15 posts - 541 through 555 (of 695 total)