Viewing 15 posts - 4,576 through 4,590 (of 6,026 total)
I vaguely recalled something about SQL Server 2012 adding some additional system stored procedures that return a resultset describing metadata that would be returned from a specified batch of T-SQL,...
April 16, 2014 at 11:04 am
Gary Varga (4/16/2014)
Eric M Russell (4/16/2014)
Jim P. (4/15/2014)
You always have choice:
1. Cheap
2. ...
April 16, 2014 at 10:10 am
Jim P. (4/15/2014)
You always have choice:
1. Cheap
2. Fast
...
April 16, 2014 at 7:14 am
First, understand that blocking is normal, it's kind of like the locking latch on a bathroom stall door. There are 100+ different reasons why a process can be temporarily blocked....
April 15, 2014 at 1:06 pm
Since you're posting in the SQL Server 2008 forum, I'm assuming the legacy database has been ported over to this version. The solution below may also require the database Compatibility...
April 15, 2014 at 11:07 am
We could create a DDL trigger or a nightly job that replicates sys.databases to a dbo.DatabaseList table. Also, we don't really need a dbo.BackupList table and foreign key just to...
April 15, 2014 at 10:36 am
Gary Varga (4/15/2014)
Eric M Russell (4/15/2014)
April 15, 2014 at 9:11 am
I'm glad to hear that your nephew is the type who stays after hours to get the job done. He'll go far. Just think how useless a surgeon, attorney, or...
April 15, 2014 at 7:39 am
I wish Microsoft had called this latest release SQL Server 2012 R2. Now those of us not planning to use v2014 in the forseeable future look like fuddy-duddies.
April 14, 2014 at 1:43 pm
I've got half a dozen retired PC boxes stacked in a corner under my desk on which I'm installing a Ubuntu / Hadoop cluster. My intention is to prove whether...
April 14, 2014 at 12:05 pm
ALTER TABLE [dbo].[databases]
WITH CHECK ADD CONSTRAINT [FK_backlist_backuplist]
FOREIGN KEY([name])
REFERENCES [dbo].[backuplist] ([name])
First, are we creating the [databases] table? There is no table by that name, but there...
April 14, 2014 at 11:38 am
If management allows an hour for lunch and places no restrictions on how early one can enter the office or how late one leaves, then there can always be time...
April 14, 2014 at 7:53 am
Going from v2000 to v2005 was obviously a leap forward in terms of how SQL Server database are implemented and coded. To a lesser extent v2008 had some compelling features...
April 14, 2014 at 7:14 am
Viewing 15 posts - 4,576 through 4,590 (of 6,026 total)