Viewing 15 posts - 7,411 through 7,425 (of 7,636 total)
I don't know but I would love to hear as answer to this.
March 20, 2008 at 8:55 pm
The prinicpal difference between running in development and running in production for a DTS package is where it runs.
In development, it typically runs on your desktop, however, in production when...
March 20, 2008 at 8:54 pm
Well, I am going to assume that it is a local package (as opposed to say, a file). What is the error that it is returning?
March 20, 2008 at 4:30 pm
Thanks for the example Ralph. I was just mad at myself for not noticing the typo before I posted my reply...
March 20, 2008 at 3:48 pm
Well assuming that it's the former, "[font="Courier New"]DBCC Sqlperf(Logspace)[/font]" is the command that you want.
March 20, 2008 at 3:44 pm
duh. Its a typo, should be [font="Courier New"]@ddl[/font] on the select line.
March 20, 2008 at 3:17 pm
For some reason, this does not work for me. Keeps telling me that I have to "[font="Courier New"]declare the scalar variable @ddl[/font]"
March 20, 2008 at 3:13 pm
Use a stored procedure, like this:
DECLARE @Total float
SELECT @Total = Cast(COUNT(CITY) as float) FROM MR_MEMBER_1
SELECT COUNT(CITY) AS MEMBERCITY, CITY
, 100 * Cast(COUNT(CITY) as float)/@Total AS PERCENTAGE
FROM MR_MEMBER_1
GROUP...
March 20, 2008 at 2:25 pm
Do you mean 90% of current space is in use in the LogFile, or do you mean that 90% of the Maximum size is in use?
March 20, 2008 at 2:15 pm
jreed (3/20/2008)
When I run this query in the query analyzer I get records either way.
What happens if you run the stored procedure in Query analyzer, instead...
March 20, 2008 at 2:00 pm
Either this is an LDAP issue or you've got SET ROWCOUNT on.
Try doing SET ROWCOUNT 0 before your query.
March 20, 2008 at 1:48 pm
Viewing 15 posts - 7,411 through 7,425 (of 7,636 total)