Viewing 15 posts - 4,141 through 4,155 (of 9,643 total)
I'd say that if your goal is to work in BI then do the BI cert. I also think, and this is just my opinion, that BI is the...
October 5, 2009 at 7:51 am
Steve Jones - Editor (10/5/2009)
The post is a little self promotion, but I'm more willing to tolerate authors promoting themselves than...
October 5, 2009 at 7:47 am
Jan Van der Eecken (10/2/2009)
Is this fair use of the forums by the way?
I don't have a problem with it. The OP isn't directly trying to sell the book,...
October 2, 2009 at 5:42 pm
I'd do it like this:
Create Table #results(...)
Insert into #results
Select ... from local table
Insert into #results
Select ... from linked table
....
Select * from #results
October 2, 2009 at 1:15 pm
No, you want SQL Server to be able to determine what types of locks to take. SQL Server does a pretty good job of determining the best way to...
October 2, 2009 at 1:13 pm
I don't know if this is a problem or not. It sounds like it would be a problem to me.
Are the system DB's in the same location?...
October 2, 2009 at 7:29 am
Dropping an index will not affect foreign key constraints other than a table scan will be used to access the data if the index is not present.
October 2, 2009 at 7:27 am
To clarify what J-F said. You would use a JOIN when you want to return data from #t2 and you might use WHERE EXISTS when you only want to...
October 2, 2009 at 7:25 am
Modify the script to dump the results of each query to a temp table and then finish with a select from the temp table.
October 2, 2009 at 7:10 am
I have SP3 installed (XP) and do not have separate copies of the system databases for SSRS. Do you see multiple entries in sys.databases?
October 2, 2009 at 7:06 am
I'm not really sure what you are trying to accomplish, but yes it is possible to use SUM in a CASE statement, but of course all the normal aggregation rules...
October 2, 2009 at 7:02 am
You would want Derived Column Transformation. With this you can either add a new column to your Data Flow or Replace the data in the Date Column. In...
October 2, 2009 at 6:56 am
You have to have locking in order to insure consistency. Locking is part of what makes an RDBMS. Typically you would leave the defaults because ROW and PAGE...
October 2, 2009 at 6:33 am
Because you are putting the Text "Grand Total: " in the same textbox as the number the formatting will not apply because it is no longer numeric data the textbox....
October 2, 2009 at 6:10 am
I'm fairly confident that the format you have, if imported as string not integer, will directly convert to a SQL Server DateTime data type.
CREATE TABLE #date (theDate DATETIME)
INSERT INTO #date...
October 2, 2009 at 5:59 am
Viewing 15 posts - 4,141 through 4,155 (of 9,643 total)