Viewing 15 posts - 8,851 through 8,865 (of 14,953 total)
Andy Lennon (8/5/2009)
GSquared (8/5/2009)
If your company loses an average of one laptop per year, and spends an extra $100k per year...
August 5, 2009 at 8:38 am
Here's what I could come up with:
create table #T (
ID int primary key,
NR int,
Txt char(2),
Val1 char(1));
insert into #T (ID, NR, Txt, Val1)
select 1 ,1 ,'aa' ,'A' union all
select 2 ,1...
August 5, 2009 at 8:12 am
If you want SSRS 2008, you need SQL 2008.
August 5, 2009 at 7:55 am
MSDN has online tutorials that are a good place to start.
August 5, 2009 at 7:52 am
You also have to assess the cost of protecting it.
If your company loses an average of one laptop per year, and spends an extra $100k per year on encrypting hard...
August 5, 2009 at 7:47 am
I wonder if it's a problem with SSIS holding a lock on the file. Have you tried making the e-mail into a second step in the job, instead of...
August 5, 2009 at 7:20 am
SQL Iron Chef (8/4/2009)
GSquared (8/4/2009)
To keep going, just keep one thing in mind: You'll get out of it what you put...
August 5, 2009 at 7:16 am
I would need to know what the procs are that are blocking each other and what objects they are accessing. Blocks aren't necessarily a bad thing. They just...
August 5, 2009 at 7:06 am
How long should the proc take to finish?
I have some that take a few milliseconds, and some that take an hour or more, and none of them are "broken".
You need...
August 5, 2009 at 7:04 am
I realized after I wrote my bit that it could be read as discouraging book-learning, and want to clarify that that's not the point. It takes a ballance of...
August 4, 2009 at 12:01 pm
Ah. I get it now.
Using the schedule table and the sysjobhistory table, you could probably join them together and get the data that way. It's not going to...
August 4, 2009 at 11:38 am
How are you sending the e-mail? Are you using DBMail (calling T-SQL) or using the SSIS SendMail task?
August 4, 2009 at 11:28 am
msdb.dbo.sysjobschedules and msdb.dbo.sysschedules should have what you need.
August 4, 2009 at 11:23 am
You could use an identity column and a calculated column that adds a "U" to the beginning of the number. Will that accomplish what you need?
August 4, 2009 at 9:33 am
Viewing 15 posts - 8,851 through 8,865 (of 14,953 total)