Viewing 15 posts - 1,096 through 1,110 (of 2,612 total)
They are relative to the server that runs the package, so if you put them on your local C drive, the server versions could be on the local C drive...
July 2, 2008 at 5:40 am
Yes, it has to be the active log, but I think if you restore a database and then restore the log file, the "replayed" transaction log entries show up. ...
July 2, 2008 at 5:36 am
First, I think we are missing some of the requirements. One of the problems with a security model that has users in multiple classes or groups is what to...
July 2, 2008 at 5:34 am
There is an undocumented DBCC command "DBCC LOG" that will return transaction log information, but since you are working from a restored database I am not sure if it will...
July 2, 2008 at 5:15 am
This is technically not a CROSS JOIN:
[font="Courier New"]USE Northwind
SELECT Title, Customerid
FROM Employees
FULL OUTER JOIN Orders ON 1=1[/font]
The query optimizer found it a pretty dumb thing to do as well. ...
July 1, 2008 at 11:52 am
I don't think your logic is that great on this one.
TempDB is nothing to be afraid to use. Is it overused at times - absolutely, but many large operations...
July 1, 2008 at 9:56 am
Yes, apparently I needed another coffee when included the unnecessary sub-query.
July 1, 2008 at 9:48 am
I was not aware that the package would run through VS on the server.
Try logging into the server as the user used for the startup account for the SQL Agent...
July 1, 2008 at 8:50 am
With one of my tables, the first query here is 1/2 the cost of the second one and it looks like it will support lots of queries in the middle...
July 1, 2008 at 7:23 am
You cannot without recovering the database and making it impossible to apply more log file backups.
July 1, 2008 at 5:57 am
Both are relatively insecure. I would recommend a CLR stored procedure - it is not much more secure, but it is using the newer technology.
July 1, 2008 at 5:54 am
Is this a homework question? This seems like a rediculous restriction.
I would suggest you look at the APPLY operator.
July 1, 2008 at 5:53 am
Jeff will probably post with a solution using a tally table - which will be faster, but I did not have a tally table on my test box so I...
July 1, 2008 at 5:48 am
It is a driver compatibility issue - you should contact DataDirect. My suggestion for a workaround (and probably theirs) would be to change the data access mode dropdown in...
July 1, 2008 at 5:39 am
The bcp task is the backwards one - the file location is from the perspective of the server that the task is executing against. So, the error message is...
July 1, 2008 at 5:36 am
Viewing 15 posts - 1,096 through 1,110 (of 2,612 total)