Viewing 15 posts - 796 through 810 (of 872 total)
colin Leversuch-Roberts (2/22/2008)
this is a subject which is raised every so often - bean counters
What exactly is a bean counter?
February 22, 2008 at 12:49 pm
If you want an automated way to do this, I'd highly recommend using Bill Wunder's DDL Archive Utility. Been using it for the last 3 years, and absolutely love it....
February 22, 2008 at 12:45 pm
Tommy Bollhofer (2/19/2008)
You can utilize the schema changes history report available in SSMS (management studio). Within the SSMS UI, right-click the database and/or server name and select the reports option.
Where...
February 19, 2008 at 11:40 am
Yeah I went to databasepropertyex right away as well, but the status reported was online.
Basically, I attempted to take a database offline that still had active connections, during this time,...
February 19, 2008 at 6:19 am
USE [database] GRANT EXECUTE ON ASSEMBLY::[assemblyname] TO ;
February 15, 2008 at 1:10 pm
I went back and changed it so that it does the dbcc inputbuffer ... I wasn't able to find any other way to get the actual procedure called, vs the...
February 14, 2008 at 5:53 am
I highly recommend looking into Quests's performance analysis.
Sorry I can't elaborate more at the time, but go demo it ... have them put a web demo together for you....
February 13, 2008 at 11:57 am
So this works ... just dumped the db backup into dynamic SQL:
I'd really like to hear any type of explanation ...
Thanks
IF OBJECT_ID('DailyDatabaseBackups','P') IS NOT NULL
DROP PROCEDURE DailyDatabaseBackups
GO
/*******************************************************************************************************
**Name:admin.dbo.DailyDatabaseBackups
**Desc:Runs full SQL...
February 12, 2008 at 1:24 pm
Wow, this is nuts ...
So If I put the comment out the backup or put it into dynamic SQL:
SET @BUName = @BUPath + @DBName + '.bak' ...
February 12, 2008 at 12:31 pm
Immediately after you create the snapshot or after you start altering the source database?
February 11, 2008 at 8:30 am
Good to know.
Also, just FYI, the name of the type of file (I think) is a sparse file. That it creates a file at a specified size, but doesn't actually...
February 11, 2008 at 8:25 am
There are quite a few good scripts here on SSC for scripting out logins ... I haven't used it, but this looks like it should help: http://www.sqlservercentral.com/scripts/Replication/31160/
If not, just search...
February 8, 2008 at 2:26 pm
matt stockham (1/24/2008)
February 8, 2008 at 1:57 pm
Run your backup again, then do a sp_readerrorlog and grab the full error.
If I were to take a random guess, I'd say it's permissions to the file system.
February 8, 2008 at 1:34 pm
b_boy (2/8/2008)
Does any one now the syntax to input the outut of a stored procedure into a tabel for it to be used by SSRS?
In your dataset, you can specify...
February 8, 2008 at 1:19 pm
Viewing 15 posts - 796 through 810 (of 872 total)