Viewing 15 posts - 721 through 735 (of 1,034 total)
What sort of disk subsystem are you working with?
In general I've seen SANs used to handle the clustered disk resource, with both nodes of the cluster having access to the...
March 15, 2010 at 7:35 am
dawidjordaan (3/9/2010)
March 9, 2010 at 11:23 am
Why not just use something like CDO or if your server is old enough CDONTS?
Basically brings Database Mail to SQL server 2000. Just for fun I was creating sp_send_dbmail stored...
March 9, 2010 at 10:03 am
I have to agree with the complainers here.
When one of the answers is none of the above, how do I know the abscence of a column name is accidental or...
February 26, 2010 at 6:38 am
Lynn Pettis (1/21/2010)
Have you checked model to see if that is how it is configured on each of the systems? You may not have fiddled with model, but someone...
January 21, 2010 at 9:32 am
david.wright-948385 (1/21/2010)
January 21, 2010 at 9:13 am
psm-983793 (1/21/2010)
Hi,On my Developer edition both 2005 and 2008 come up with 3MB and 1MB.
Windows 7 x64
Cheers,
Peter
2 MB mdf, 3 MB ldf here, and I know I haven't fiddled with...
January 21, 2010 at 9:11 am
Seeing as this is in the SQL 2k5 forum.
Personally if you have the time, I'd look at converting the GOTO's to TRY/CATCH blocks.
Just so much simpler to be able to...
January 14, 2010 at 7:11 am
Every time I read these articles about 4-4-5 my head hurts... and I vow again and again to make sure to not take a job with a company that follows...
January 11, 2010 at 7:16 am
Hmmm based on that I'd expect this to work though
declare @bob varchar(2000)
select
@bob = 'select * from sys.tables'
exec sp_executesql @bob
but instead I get
Msg 214, Level 16, State 2, Procedure sp_executesql,...
January 8, 2010 at 10:30 am
I'll bet its not... and here's why
Microsoft SQL Server 2005 introduces the max specifier. This specifier expands the storage capabilities of the varchar, nvarchar, and varbinary data types. varchar(max), nvarchar(max),...
January 8, 2010 at 10:28 am
That's odd because this query
declare @bob varchar(max)
select
@bob = 'select * from sys.tables'
exec sp_executesql @bob
Returns this message on SQL 2k5 when I run it.
Msg 214, Level 16, State 2, Procedure sp_executesql,...
January 8, 2010 at 7:34 am
jcdyntek (1/7/2010)
left outer join, right outer join would have the asterisk on the right side of the =, this is not ansi standard SQL
I believe that indeed it was ANSI-89...
January 7, 2010 at 11:57 am
Jeff Moden (1/7/2010)
mtassin (1/7/2010)
jcdyntek (1/7/2010)
January 7, 2010 at 11:43 am
jcdyntek (1/7/2010)
January 7, 2010 at 9:34 am
Viewing 15 posts - 721 through 735 (of 1,034 total)