Viewing 15 posts - 736 through 750 (of 1,222 total)
Has the snapshot agent for the publication run yet ? Until it does, you won't get anything coming through to your subscriber. In replication monitor, you will see...
August 3, 2009 at 9:52 pm
With SQL 2005, you are out of luck. You are really only able to show text or images.
August 2, 2009 at 10:30 pm
The error is because you have included aliases for the field in the GROUP BY clause. Try the following instead
SELECT a.WS_Job_Number,
a.Year1,
a.PERIODID,
CASE
WHEN a.PeriodID = 1 THEN 'July'
WHEN a.PeriodID = 2...
July 29, 2009 at 10:11 pm
I suspect that the report is not associated with a data source (any more). Perhaps the report RDL was updated but the data source reference was not correct.
Try going...
July 28, 2009 at 10:12 pm
I suspect that the report is not associated with a data source (any more). Perhaps the report RDL was updated but the data source reference was not correct.
Try going...
July 28, 2009 at 10:07 pm
IF EXISTS is potentially quicker because once any record has been found SQL Server has finished what is needed.
Using COUNT(1) requires SQL Server to return all records that meet the...
July 23, 2009 at 10:10 pm
You could use
SSIS with the FOR EACH container
or possibly something like xp_cmdshell 'DIR c:'.
or maybe the FileSystemObject
or perhaps a small .net application
The can all give you a list...
July 21, 2009 at 9:59 pm
You could use
SSIS with the FOR EACH container
or possibly something like xp_cmdshell 'DIR c:'.
or maybe the FileSystemObject
or perhaps a small .net application
The can all give you a list...
July 21, 2009 at 9:52 pm
You could use
SSIS with the FOR EACH container
or possibly something like xp_cmdshell 'DIR c:'.
or maybe the FileSystemObject
or perhaps a small .net application
The can all give you a list...
July 21, 2009 at 9:47 pm
You can definitely read data from an OLAP database using DTS. All you need to do is create a connection using an OLAP OLE/DB provider and in your datapump...
July 20, 2009 at 10:07 pm
If a file that is being updated by the service pack is in use, a restart will be required. Hence, stop the service and it is unlikely that files...
July 13, 2009 at 9:30 pm
Thankfully, the optimizer is pretty good at sorting out exactly what you mean regardless of how you structure your query. However, I would be wary of using the syntax...
July 5, 2009 at 10:28 pm
I kinda suspect that you have not add a scription for the 4th table. The record count you saw is probably the bulk copy of the data from the...
July 5, 2009 at 10:13 pm
Again, Gift Peddie needs to understand the technology before answering.
Reporting Services is not aware of the location of the files used for any database including ReportServer and ReportServerTEMPDB. All...
July 2, 2009 at 10:09 pm
You know, the first thing that I thought when I started reading this post was that it is probably because you do not have the relevant bits of Excel installed...
July 2, 2009 at 9:59 pm
Viewing 15 posts - 736 through 750 (of 1,222 total)