Viewing 15 posts - 4,006 through 4,020 (of 14,953 total)
If you're using DBMail (sp_send_DBMail), then all the e-mails are queued and logged in msdb, and you can query the relevant tables for status, etc., pretty easily. That's what...
June 13, 2011 at 6:58 am
I've played EVE enough to have two characters with Tech III ships and one with a Command ship (those aren't easy to get into). It's fun enough for a...
June 13, 2011 at 6:54 am
It can't pull those in Insert Select. It's one of those, "What was Microsoft thinking when they did that?" kind of things. Especially since you can get that...
June 10, 2011 at 2:35 pm
GilaMonster (6/10/2011)
GSquared (6/10/2011)
MMORPGs (currently playing RIFT)Is it any good? I'm waiting for The Old Republic in anticipation...
As far as I'm concerned, Rift rocks.
It's got significant similarity to WoW, but...
June 10, 2011 at 2:30 pm
It would look something like this:
-- Input Parameters faked for script
DECLARE @StartDate CHAR(10),
@EndDate CHAR(10),
@PatientPersonGUID VARCHAR(25),
@TCPersonGUID VARCHAR(25),
...
June 10, 2011 at 2:18 pm
Spend time with my wife, spend time with my dogs, volunteer work, study, MMORPGs (currently playing RIFT), lots of movies (theatre and Netflix), cooking, eating.
June 10, 2011 at 2:07 pm
That's the kind of thing SSIS does really well at.
It can query a folder for a list of files, or operate off of a query to a database table, and...
June 10, 2011 at 2:05 pm
Here are the two options most commonly used:
Select <column list>
Into #MyTempTable
From MyTable;
create table #MyTempTable (colum list and definitions);
Insert Into #MyTempTable (column list)
Select (column list)
From MyTable;
In both cases, SQL Server has...
June 10, 2011 at 2:04 pm
Select Into for temp tables used to be a bad practice in pre-SQL 2000 days because of schema locks in tempdb. The datum that it is a bad practice...
June 10, 2011 at 1:40 pm
"text" datatype fields aren't actually stored in the clustered index. They are stored in an extended space. So, no, they really can't be part of an index, even...
June 10, 2011 at 1:30 pm
Log space used != table space used.
Have you dug into a log parsing technique like DBCC LOG?
There's a lot going on in there. Everything needed to make sure that any...
June 10, 2011 at 1:19 pm
Crispin Proctor (6/10/2011)
simplier: EXECUTE sp_msforeachdb 'USE ? PRINT DB_NAME()'
Considering the query and return results he's trying for, I discounted the system proc. The input command would be complex to...
June 10, 2011 at 1:10 pm
NullIf isn't the way to go for what you're doing. It will render your whole string null.
What you need is a Case statement. Check if the value of...
June 10, 2011 at 1:04 pm
toddasd (6/8/2011)
GSquared (6/8/2011)
toddasd (6/7/2011)
Richard Warr (6/6/2011)
toddasd (6/6/2011)
Answer this: do you consider this to be true: 1/3 = 0.333...?
No, however that is the only way you can represent 1/3 as a...
June 10, 2011 at 12:56 pm
coronaride (6/10/2011)
G-Squared - I see where you're coming from and, if I wasn't normalizing addresses out into CASS certified columns or making first/last name entities (our...
June 10, 2011 at 11:04 am
Viewing 15 posts - 4,006 through 4,020 (of 14,953 total)