Viewing 15 posts - 46 through 60 (of 67 total)
The previous reply won't work as the TOP 1 statement will limit you to returning only one Company in the select statement, the options for returning multiple companies with one...
September 16, 2005 at 8:19 am
What kind of error message are you getting from the job?
September 16, 2005 at 7:43 am
Not sure on whether there is a setting for this or not but it only occurs when a row is not returned by the SELECT statement if a row is...
September 16, 2005 at 3:28 am
Another option is to use FSO within the SP to return the Size and Free Space on the disks, useful when you're after values from more than one server.
September 16, 2005 at 2:43 am
Another thing to look out for especially while looping (Obviously to be avoid whenever possible) but if you're using something along the lines of ...
SELECT @Variable = ColumnName FROM TABLE WHERE...
September 16, 2005 at 2:40 am
We occacionally get that when trying to connect to one of our small sites over an ADSL link, when the link is down it can't connect and returns that message.
September 15, 2005 at 8:32 am
If you post the SQL statement on here it should be quite easy to sort out, it sounds like you're joining the two tables but not specifying how they are...
September 15, 2005 at 8:19 am
Also check Remote Procedure Call (RPC) & Remote Procedure Call (RPC) Locator services are running and what user they are set to run as.
September 15, 2005 at 8:13 am
I've had this one a couple of times, it's to do with permissions of the account the debugging process service is running from, have a search on google for it,...
September 15, 2005 at 8:07 am
SELECT Column1, Column2 FROM OldTable
UNION ALL
SELECT Column1, Column2 FROM NewTable
September 15, 2005 at 8:02 am
Bugger, sorry about that, didn't notice the reply above
September 15, 2005 at 8:02 am
You can download the CTP version of SQL 2005 at the moment and the final version is being released in early November.
September 15, 2005 at 2:15 am
We've just enabled the /3G setting on our system here and it's made quite a difference. As long as your system is solely a SQL box and isn't used for...
September 15, 2005 at 2:14 am
Nice, will have to have a look into that
September 14, 2005 at 9:50 am
Mmm I like the idea of BCPing the tables off the server on a nightly basis, that would save quite a bit of time on the odd restore due to...
September 14, 2005 at 9:31 am
Viewing 15 posts - 46 through 60 (of 67 total)