Viewing 15 posts - 6,301 through 6,315 (of 14,953 total)
Kit G (11/2/2010)
Grant Fritchey (11/2/2010)
Jeff Moden (11/2/2010)
Grant Fritchey (11/2/2010)
November 2, 2010 at 11:45 am
You're going to have to convert the column to DateTime in the Where clause.
That'll make the query work as expected. It'll be SLOW if the table has any serious...
November 2, 2010 at 11:07 am
Jeff Moden (11/2/2010)
Grant Fritchey (11/2/2010)
November 2, 2010 at 11:04 am
jcrawf02 (11/2/2010)
http://runningahospital.blogspot.com/2010/10/sad-news-on-soccer-pitch.html
It's also a good blog by the CEO of Beth Israel...
November 2, 2010 at 10:35 am
How are they trying to get it? Is there an application? A web page? Do they just query the data through SQL Management Studio?
November 2, 2010 at 10:22 am
This whole discussion reminds me of the good old days when there was no such thing as writing and people had to rely on their ability to memorize vast amounts...
November 2, 2010 at 9:25 am
I think it would be quite useful on 24x7 systems. Anything else, you probably have downtime that could be used to rebuild an index if you find it really...
November 2, 2010 at 8:25 am
You're welcome.
November 2, 2010 at 8:13 am
I have to ask: Why do you need a staging table and a final table?
Why not do like I did, and just dump into a table with an XML column?
If...
November 2, 2010 at 8:00 am
WayneS (11/1/2010)
If your job is scheduled to run, say, every 15 minutes. When it runs @ 1:45 (the first time), it gets set to...
November 2, 2010 at 7:54 am
You're missing the database name in that. Needs to be between the server name and the schema name ("dbo").
October 29, 2010 at 12:42 pm
Well, if you can go in and answer how "P equals NP" in complexity issues, then you can expect to pass a senior level interview.
October 29, 2010 at 12:39 pm
Unless I'm misreading the log, it looks like it was deliberately shut down.
I'd question all the unsafe assemblies being loaded right before that.
October 29, 2010 at 12:12 pm
select accountnumber,
(select sum(in + out)
from daybook
where accountnumber = accounts.accountnumber)
from accounts;
You can wrap the inline query in a Coalesce/IsNull function if you...
October 29, 2010 at 11:09 am
USE [DBA]
GO
/****** Object: Table [dbo].[DDLLog] Script Date: 10/29/2010 13:00:14 ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[DDLLog](
[ID] [int] IDENTITY(1,1) NOT NULL,
[LogDate] [datetime] NOT NULL DEFAULT (getdate()),
[LogEntry] [xml]...
October 29, 2010 at 11:00 am
Viewing 15 posts - 6,301 through 6,315 (of 14,953 total)