Viewing 15 posts - 10,951 through 10,965 (of 14,953 total)
Did you convert it to an SSIS package, or leave it as DTS?
February 13, 2009 at 9:30 am
Looks to me like you should be able to change that in the report designer. Is there some reason you can't?
February 13, 2009 at 9:29 am
It's possible, but there are caveats on it. Take a look for Jeff Moden's Running Totals article on this site.
February 13, 2009 at 9:28 am
Grant Fritchey (2/13/2009)
And I don't have a single certification (well, a 14 or 15 year old one from Sybase, but I'm pretty sure that...
February 13, 2009 at 9:24 am
Most likely means that the backup file you selected isn't the one you actually wanted. I'd definitely double-check that.
February 13, 2009 at 8:26 am
I prefer a more adventurous company, but there has to be a balance.
One company I worked for took some risks on moving to a whole new industry. I was...
February 13, 2009 at 8:12 am
toniupstny (2/13/2009)
When do we start the thread where we can posit our views on religion now that we have one for politics!!!
Actually, we just had a touch of that on...
February 13, 2009 at 8:03 am
Whoa! I'm assuming you've tested it thoroughly first, right?
February 13, 2009 at 7:44 am
I think this will get you what you need. I can't really test it fully, not having access to your system, but it should be okay.
if object_id(N'tempdb..#Numbers') is not...
February 13, 2009 at 7:43 am
Here's a version that works in 2000:
if object_id(N'tempdb..#Numbers') is not null
drop table #Numbers
create table #Numbers (
Number int identity primary key,
PlaceHolder bit);
insert into #Numbers (PlaceHolder)
select top 1000 null
from dbo.syscolumns;
declare @String char(168);
select...
February 13, 2009 at 7:32 am
You'll need to look for what registry keys, etc., are telling Windows that SQL Server was ever installed. As mentioned, I'm not sure which ones those are, it's just...
February 13, 2009 at 7:10 am
bear in a box (2/13/2009)
my location is close to the equator, i...
February 13, 2009 at 6:52 am
Here are some facts:
**CO2 IS A GREENHOUSE GAS**. It re-radiates infrared/thermal radiation. This has been scientifically replicated and has been known for at least the last 100 years. The Swedish...
February 13, 2009 at 6:46 am
Yes, that should get the date of the last day of the current month. Test it with a few dates like Jan 31, in place of getdate, and see...
February 12, 2009 at 3:06 pm
Carlo Clausius (2/12/2009)
February 12, 2009 at 3:02 pm
Viewing 15 posts - 10,951 through 10,965 (of 14,953 total)