Viewing 15 posts - 9,406 through 9,420 (of 14,953 total)
If you're talking about Business Intelligence Dev Studio (which is where you build SSIS packages), then it probably doesn't have any templates because it doesn't appear to come with them....
June 1, 2009 at 9:57 am
Yes.
Service Broker is necessary for DBMail, for example. Has other uses as well.
June 1, 2009 at 8:58 am
I guess you'd probably need to talk to the people who provide the web service about that one.
(One thing to keep in mind is that "lac" and "lakh" are only...
June 1, 2009 at 8:56 am
I may be missing something, but what does SSIS have to do with web site building?
Do you mean .NET Dev Studio? Or something else?
June 1, 2009 at 8:50 am
Text data-type is one way to go on that. The other is to vertically partition the table.
If, for example, the table has an ID column, then you have the...
June 1, 2009 at 8:08 am
Lynn Pettis (5/28/2009)
I was trying to point out that full and differential backups don't block the t-log backups anymore starting with SQL Server 2005.
Which is something I had (quite obviously)...
June 1, 2009 at 6:43 am
Bob Griffin (5/29/2009)
Good post GSquared...I think you should change your nickname to 'Renaissance Man'
Nah. That requires at least some artistic aptitude. I'm not exactly top shelf in that...
May 29, 2009 at 3:15 pm
Kit G (5/29/2009)
GilaMonster (5/29/2009)
Gut feel is that those bad stats are going to bite him but he probably...
May 29, 2009 at 1:25 pm
Actually, if it's apples and pears, it's 1 or 2, not 2 or 3. 3 doesn't carry apples.
Here's a sample of how to do this kind of thing. ...
May 29, 2009 at 1:22 pm
Have an identity column, and a calculated column based on it.
create table #T (
ID int identity primary key,
CustomerID as 'Cust' + right('000' + cast(ID as varchar(3)), 3));
insert into #T
default values;
insert...
May 29, 2009 at 1:08 pm
Bob Griffin (5/29/2009)
May 29, 2009 at 12:46 pm
Alvin Ramard (5/29/2009)
Kit G (5/29/2009)
Steve Jones - Editor (5/29/2009)
Well maybe the questions aren't worse, but the grammar certainly is!
"The problem is that the order by clause was left...
May 29, 2009 at 11:37 am
Ramesh (5/29/2009)
The method "Value"...
May 29, 2009 at 11:14 am
Viewing 15 posts - 9,406 through 9,420 (of 14,953 total)