Viewing 15 posts - 601 through 615 (of 972 total)
I followed this link[/url] on a SQL 2000 server that had the same issue. It holds true to SQL 2005 as well.
sysdbmaintplans should be the table you are looking...
August 27, 2010 at 9:50 am
Check this site.[/url] Then buy the book. It will give you a good headstart.
You are going to have to obtain some experience before jumping into an dedicated DBA position. ...
August 26, 2010 at 2:48 pm
SELECT 'ALTER LOGIN [' + name + '] WITH PASSWORD=N''password''
, CHECK_POLICY = ON
, CHECK_EXPIRATION = ON''
Change the first line to this.
August 23, 2010 at 10:09 am
The files under the BINN directory in the SQL Server program files directory. It is the SQL "OS" files, that SQL Server function with.
August 21, 2010 at 11:33 pm
pshaship (8/21/2010)
Is this good practice to keep SQL binaries on separate local node instead of OS drive C?
My only concern in keep SQL binaries on D drive( local). Previously we...
August 21, 2010 at 7:03 pm
ALTER LOGIN [login_name] WITH PASSWORD = 'password'
GO
You could probably loop through the sys.logins table if you wanted too as a quick fix.
Actually thinking about it use an excel spreadsheet. ...
August 20, 2010 at 2:21 pm
Searching this site you will probably find a few.
MSSQLTips.com has tons of them down to translating the INIT data columns into what they actually mean.
August 20, 2010 at 1:43 pm
Is this good practice to keep SQL binaries on separate local node instead of OS drive C?
It is common for people to do this, but the binaries are not...
August 20, 2010 at 10:16 am
Glad I could help.
I was tyring to remember where I came across this procedure...I know the issue I had was in SQL 2000 one of the procedures for I think...
August 18, 2010 at 8:00 pm
If your query to modify an original stored procedure errored out then the process did not complete, therefore it did not modify anything.
What error did you receive?
August 18, 2010 at 12:42 pm
I've done this with stored procedures so I don't know if it will work with a table, but expect it would.
Once you create the object you mark it as a...
August 18, 2010 at 12:39 pm
Wonderful resources that is constently growing:
August 18, 2010 at 12:26 pm
You might need to check to ensure you have patched your SSMS toolset:
http://stackoverflow.com/questions/52103/can-i-use-sql-server-management-studio-2005-for-2008-db
August 17, 2010 at 3:44 pm
osql -E -S CMSBLACKBERRY\BLACKBERRY -i\ c:\bbup.sql
Your syntax looks to be off.
I believe it should look like this (unless above is typo)
osql -E -S CMSBLACKBERRY\BLACKBERRY -i c:\bbup.sql
August 16, 2010 at 1:57 pm
Steve Jones - Editor (8/16/2010)
Those are good books. I'd add in as well that Kevin Kline's SQL in a nutshell is a nice intro.
Yes, I have this book on my...
August 16, 2010 at 1:29 pm
Viewing 15 posts - 601 through 615 (of 972 total)