Viewing 15 posts - 3,991 through 4,005 (of 9,643 total)
As Luke has said there is nothing in the query that would omit rows being returned when there are NULL values in any of the columns. Now if you...
October 23, 2009 at 7:48 am
Duplicate post. Please see this thread for answers.
October 23, 2009 at 7:44 am
I don't think it can hurt to have experience in other areas, both technical and business. One of my favorite things about working in IT is that I as...
October 23, 2009 at 7:18 am
mstjean,
Probably a good idea. In my experience the user usually enters a day without time, but to be safe a conversion like you suggest would be good.
October 22, 2009 at 11:43 am
Check out Brian's video on SQLShare as there are some gotchas.
October 22, 2009 at 7:19 am
Got this from Brian Kelley. sys.sql_logins is the new view in 2005.
October 22, 2009 at 7:17 am
I don't know what sp_active does since it is a custom stored procedure, but you could look at sp_lock.
October 22, 2009 at 6:50 am
I don't think that SSRS exposes that property. I think the only cell property that is exposed is Value.
October 22, 2009 at 6:47 am
I think you'll have to do it all in a script component. Read the file and then do the insert into the destination.
October 22, 2009 at 6:46 am
In SQL Server you can do something like this:
UPDATE Orders
SET precost = O2.cost
FROM
orders O JOIN
orders O2 ON
...
October 22, 2009 at 6:44 am
What is the database context the job is executing in?
October 22, 2009 at 6:35 am
Have you checked to see what else is running at the time the job is running the procedure? It could be being blocked by another process. You can...
October 22, 2009 at 6:27 am
What controls are you using to render the report? To my knowledge there is no way to restrict a report to being one page. SSRS automatically rolls...
October 22, 2009 at 6:25 am
Viewing 15 posts - 3,991 through 4,005 (of 9,643 total)