Viewing 15 posts - 4,876 through 4,890 (of 7,191 total)
Not just errorlog, but also sqlagent.out. If you don't have a sqlagent.out, then that's probably the problem - the service is configured to write to a folder that doesn't...
December 12, 2011 at 8:18 am
I don't understand why you're using a Script task. I would use an Execute SQL task, with an expression built using the values from your columns. If this...
December 12, 2011 at 8:15 am
ashanair70 (12/12/2011)
Is there a link or write-up that I can refer to do this?
I searched the internet for "create solution in bids". If you do the same, you'll find...
December 12, 2011 at 6:47 am
Lowell (12/12/2011)
instead, create a view that is uesed to calculate the count based on a join; then the count is correct...
December 12, 2011 at 6:44 am
You need to create a new project and add the package to the project. Then you can use the button with the green triangle to run the package (or...
December 12, 2011 at 5:59 am
Yes, I think it's possible to do this with a trigger. But I'm not doing all your work for you. Have a try, and post back if you...
December 12, 2011 at 5:56 am
What have you tried so far?
John
December 12, 2011 at 5:43 am
Also, you're confusing the output parameters of the procedure with the result set. You can only use INSERT INTO to insert the result set - not the output parameters.
Try...
December 7, 2011 at 3:27 am
No. From Books Online:
Members of the db_datawriter fixed database role can add, delete, or change data in all user tables.
Note the "all". You need to grant permissions...
December 6, 2011 at 7:36 am
You could put the different types of table in different schemas and then grant permissions on the schemas.
John
December 6, 2011 at 7:11 am
Easier than that in SQL Server 2008 and above:
SELECT CAST(CURRENT_TIMESTAMP AS time)
John
Edit: just noticed the milliseconds requirement. You can either convert the above to varchar and chop off the...
December 6, 2011 at 6:23 am
If there's nothing to choose between two different syntaxes, I usually go for the ANSI standard. That's why I prefer <> in this case.
John
December 6, 2011 at 6:20 am
OK, this is the last time I'm going to ask. I know it's extra effort for you to prepare and post full DDL, INSERT statements and procedure definitions, but...
December 6, 2011 at 5:02 am
Yes, the conditions in the WHERE clause do appear to be mutually exclusive. Don't change the ANDs to ORs just for the sake of getting it working, though -...
December 6, 2011 at 4:42 am
Viewing 15 posts - 4,876 through 4,890 (of 7,191 total)