Viewing 15 posts - 916 through 930 (of 1,884 total)
Hi,
if you search this site with the keywords Table Rowcount you will find a lot of discussions with queries and some scripts. I have the following one for rowcont with...
April 6, 2006 at 10:36 am
Steve,
In addition to the test environment you have to have a tested roll-back plan or I would say, Exit Strategy. I had 2 cases when the upgrades were running great...
April 6, 2006 at 10:08 am
Data,
I did resolve the issue for one of our developers and he is using this syntax in his jobs. You may test it from the command line first as opening command...
April 5, 2006 at 11:54 am
I looked up the solution that Brian Kelly found last year answering to my question on the same topic:
SELECT OBJECT_DEFINITION(<object ID>)
As an example:
SELECT OBJECT_DEFINITION(OBJECT_ID('sys.sp_help'))
I tested his solution and added a comment...
April 5, 2006 at 11:33 am
Hello Oliver,
did you get any error messages?
There are 2 things to try:
1. On the screen with the table list click on each table and click Preview button. If the table...
April 5, 2006 at 9:58 am
sp_helptext [ @objname = ] 'name' [ , [ @columnname = ] computed_column_name ]
April 4, 2006 at 2:13 pm
Michael,
you can not just re-create, I assume. Jobs are different, some run Maintenance Plans, some run DTS packages. For the miantenance Plan we found out that "Delete Files Older Than...
April 4, 2006 at 2:10 pm
Hello,
the backup size is more or less the size of the data. The database size may be much bigger with a lot of extra space in the database. I did...
April 4, 2006 at 2:03 pm
Also sometimes the backup is from another server with different drive structure and we have to correct the drive letter or path in the Physical Path for the files. The...
April 4, 2006 at 1:12 pm
Do we need this port to develop / run packages? I answered correctly but the reference says we need this port to start/stop the service. I wonder if we need...
April 4, 2006 at 12:26 pm
You do need sysjobs and sysjobschedules to determine a scheduled time. You probably don't need to use Event Log, use sysjobhistory table to check if the job was executed for...
April 3, 2006 at 2:09 pm
Paul,
did you specify in parameters
@message = 'my message string goes here'
April 3, 2006 at 12:57 pm
Yes, you should close connections if you don't need them anymore.There is an overhead when esteblishing a new connection so close your connection only when the task for this connection...
April 3, 2006 at 9:19 am
Viewing 15 posts - 916 through 930 (of 1,884 total)