Forum Replies Created

Viewing 15 posts - 46 through 60 (of 158 total)

  • RE: Full Path to Database

    HI ,

    You can use a linked server. Look up linked server on BOL. When you create a linked server use a login name that has the minimum rights to the...

  • RE: Varying return values for Servername

    Good luck

    I thought that it might have to do with a named instance, but tried it on my 64 bit named instance. But my results were not "messed up".

    Please...

  • RE: Does "SQL Server" linked server use OLEDB provider?

    Hi ,

    Yes they both will use SQLOLEDB. You can see this by a query on sysservers in Master.

    SELECT     srvproduct, providername, srvname

    FROM         sysservers

     

     

  • RE: Error message

    What version of SQL Server are you using? (Not sure about this error message)

    Here is a rough guess.

    September 28, 2004 at 4:20 am

    #524596

  • RE: Error while backing up of Table

    Hi ,

    On a default installation of SQL Server all of your drives are on "PRIMARY" filegroup. eg. (a: d: e  This error means that...

  • RE: Change time zone!!!

    Hi,

    SQL Server gets its time zone from the operating system. On the server go to control panel and choose Date and Time settings. There is a tab called Time Zone....

  • RE: T-SQL issue?? or do I have to UDF

    I used function's to do something similar. However I also made shure that the table was properly indexed and also made shure that in the select statement I never put a...

  • RE: Reprocess a cube and dimensions automatically

    If you use Enterprise Manager, on the machine that OLAP (AS) is installed, you will see a DTS task called Analysis Services Processing Task. You can do what you want to do...

  • RE: Disaster in the Real World - Hurricane

    Thanks for the article. I found it informative as I am not used to Hurricane's in South Africa. We don't have Hurricanes's, Tornado's and earthquakes!

     

  • RE: SQL Server 2005

    It looks very much like VB and I will have to "get over it" But one thing I miss is the Query builder. Where you get a graphical display of...

  • RE: Weird issue with DTS packages scheduled as a job.

    I have had a similar experiance where the JOB is successfull and it did not complete some steps. Use your DTS package logs to see what steps took 0 ms...

  • RE: Tables

    If your username is not a Data Base Owner you will have to specify the dbo.table. (Unless you fiddle around with allias's)

    However you do not have to specify the Database,...

  • RE: exclude sql statements from logging

    Hi

    Have you tried BULK INSERTS? If certain criteria is met the transaction will not be logged.

  • RE: Scheduling DTS packages

    Hi,

    I cant see what the problem is from the error log. Have you set the DTS package properties to create a log file. The package log file will give you a...

  • RE: Is there any way to find when an SQL Agent Job is disabled?

    Try SP_HELP_JOB @job_name = 'JOBNAME'. This will give you some of the info that you wan't but as to who modified the job I dont think that you can get...

Viewing 15 posts - 46 through 60 (of 158 total)