Viewing 15 posts - 196 through 210 (of 549 total)
It will work for SQL 2005 as well if we change
Select db_name()
,object_name(s.object_id) As ObjectName
--,object_schema_name(s.object_id) As SchemaName--...
December 9, 2008 at 10:23 am
Alvin Ramard (12/9/2008)
I'm starting to wonder if one may be going away in future versions.
Not for a long time I hope, GETDATE() and GETUTCDATE() are too widely used
I rarely use...
December 9, 2008 at 10:13 am
To me
Log Shipping = Trans Log backup + Scheduled restore
so if you want High Availability or warm standby, use Log Shipping (which also gives you log backup at the same...
December 9, 2008 at 10:08 am
SQL_Easy_btn? (12/9/2008)
Can you uninstall the default instance and leave the remaining named instances intact?
I would think so, default instance is really another named instance called MSSQLSERVER
I have uninstalled 1 of...
December 9, 2008 at 10:05 am
The typical batch issue
.bat
VBScript
PowerShell
Perl
3rd party - RedGate Multi Script, xSQL Script Executor (free), etc..
see this post from last week
http://sqlblog.com/blogs/linchi_shea/archive/2008/12/04/executing-a-large-number-of-sql-scripts.aspx
As far as I know, you need to customize it to...
December 9, 2008 at 10:03 am
+1 to above
USE msdb
SELECT TOP 100 *
FROM RESTOREHISTORY WITH (NOLOCK)
--WHERE destination_database_name IN ('XXX')
ORDER BY restore_date DESC
December 9, 2008 at 9:51 am
e.g: C: Partition = 50 GB installed O/S and SQL Server 2008
D: Partition (SQL Data)
...
December 9, 2008 at 9:50 am
you should just run the CTE/Derived table section to confirm RowNumber returns the correct #
I think that this part won't work, as it does NOT sort by the [VOODCD] column...
December 9, 2008 at 9:48 am
How much disk space is there for the log drive?
Also, does the log have restricted max size?
Any other maint. tasks like reindexing etc? that would cause the log to grow
December 9, 2008 at 9:44 am
In SQL Server 2005, the SQL Server Profiler graphical user interface displays the Duration column in milliseconds by default, but when a trace is saved to either a file or...
December 8, 2008 at 1:24 pm
Make sure you won't lock yourself out (i.e. create your account/domain account in SQL with sysadmin, or know the sa account)
By default, I believe SQL 2008 doesn't include BUILTIN\Administrators as...
December 8, 2008 at 12:44 pm
dva2007 (12/8/2008)
December 8, 2008 at 12:40 pm
Greg Charles (12/8/2008)
I've done this exactly the way Jack describes and it does work. The "deny" for the individual overides the "permit" for the group.
Good to hear
I have had...
December 8, 2008 at 9:47 am
Google seemed to think so, I would think so too
I'd suggest try it first (make sure you setup the credentials/logins correctly), there is no harm
We have linked server in SQL...
December 8, 2008 at 9:45 am
Above is a duplicate post
resolved in this post
December 5, 2008 at 1:06 pm
Viewing 15 posts - 196 through 210 (of 549 total)