Viewing 15 posts - 316 through 330 (of 549 total)
I loved Brian's book
Microsoft SQL Server 2005 Reporting Services
Brian Larson
McGraw-Hill, Hardcover, Published December 2005, 767 pages, ISBN 0072262397
November 13, 2008 at 1:07 pm
Did you guys expand the Job Step detail to see the more-detailed error?
Also, you can go into Maint. Plan and right-click on the plan, View History
That one shows detailed error...
November 13, 2008 at 9:41 am
I think SQL 2008 needs 3.5 SP1 RTM even
If you have Visual Studio 2008 installed, it wans VS2008 SP1 installed first as well
Let the SQL installer install whatever it needs...
November 11, 2008 at 10:25 am
Create a Subscription, then choose Email (instead of File Share)
note: Email option may not appear if you did not configure SMTP for your SSRS
Pick Email in the Dropdown [Delivered By]
November 11, 2008 at 7:54 am
Good question
I know if you deploy the report in SSRS (Reporting Service), you can then export to Excel
To do it in SSMS 2005, no clue
November 11, 2008 at 7:51 am
2 ways I can think of
1. Create a table manually, then
INSERT INTO @table
exec sp_fkeys XXX
2. sp_helptext sp_fkeys to find the source code
then customize the source code for your need
November 11, 2008 at 7:50 am
The requirement is a bit iffy
But using ROW_NUMBER (in SS2005), you can create a sequence of an Object/ID
e.g. group by ID, order by time = you have a trail of...
November 11, 2008 at 7:46 am
right-click on a Database, you'll see a "Report" menu item -> Standard Reports
November 7, 2008 at 1:34 pm
Wow, so many negative opinions, I read it and just take away whatever I can, doesn't hurt me anyway
By the way, to continue on SP_MSforeachdb.... I know it's undocumented (maybe...
November 7, 2008 at 9:20 am
I don't think the order matters
You just install the Report Viewer/Explorer Web Parts into SharePoint and connect to SSRS2005 correctly
so I would install
1. SQL 2005, and SSRS
2. SharePoint, and Web...
November 7, 2008 at 8:19 am
latingntlman (11/6/2008)
I understand. The way suggested works just fine. I was just curious to know if it was possible to do this looking up GUID.Regards,
John
GUID I would say not. NEWID()
Sequential...
November 7, 2008 at 8:13 am
I wonder, would a SELF JOIN and use DATEDIFF or <= operator work?
it would be more SET BASED
SELECT T1.user_id_num
FROM #temp T1
INNER JOIN #temp T2 ON DATEDIFF(hh, T1.insert_date DATETIME, T2.insert_date DATETIME)...
November 7, 2008 at 8:05 am
Small companies often don't required/consider DRP or off-site backup
My recommendation is
1. Backup locally (keep a week's rotation for example)
2. Either scheduled task with RoboCopy (or DOS commands), or even...
November 7, 2008 at 8:00 am
You are getting into the "Datawarehouse" concept
and yes I agree, usually needs custom solutions (either via SSIS, BCP, etc...)
or is it possible, just take DIFFERENTIAL backups on Production
then restore them...
November 7, 2008 at 7:56 am
I know my SSMS 2005 SP2 (9.0.3042) can't connect to SQL Server 2008 database
It's good to know your 9.0.3282 (CU9) can
November 6, 2008 at 4:43 pm
Viewing 15 posts - 316 through 330 (of 549 total)