Forum Replies Created

Viewing 15 posts - 121 through 135 (of 1,884 total)

  • RE: connecting to remote server using dns name and password through ssis package in a sql server job

    It is where you say you map an SSIS package to the folder. Just map it not as X:\MyShare but as \\Server2\MyShare

    Regards,Yelena Varsha

  • RE: connecting to remote server using dns name and password through ssis package in a sql server job

    Hi,

    The solution is:

    1. Create local Windows accounts with the same user name /password on both servers if they are not in the same or trusting domains.

    2. In your SQL...

    Regards,Yelena Varsha

  • RE: SQL Server jobs to use file server name variable?

    That is exacty what I am doing.

    I store server names in a table in a database and then dynamic SQL Script that uses OPENROWSET is generated to use the...

    Regards,Yelena Varsha

  • RE: Let the Excel Play

    I prefer SSRS (Reporting Services) with its Export button where you can export to Excel, PDF and other formats.

    Regards,Yelena Varsha

  • RE: If You Ain't Cheatin'

    Hi All,

    I know lot of people with the position DBA who are actually business superusers who manage the application, user access, data as managed by application functionality and they...

    Regards,Yelena Varsha

  • RE: If You Ain't Cheatin'

    The only reason you are a member on this site because you want to better perform your job. And this does include the research and it does exclude relying on...

    Regards,Yelena Varsha

  • RE: If You Ain't Cheatin'

    Lynn,

    what I mean is that a lot of people on this site are not SQL Server professionals. Some members -yes, and of a very high standards. But a lot of...

    Regards,Yelena Varsha

  • RE: If You Ain't Cheatin'

    Steve Jones - Editor (8/25/2008)


    If you use Google to answer a question geared for your knowledge, such as an exam question, the Question of the Day, etc., then you're cheating....

    Regards,Yelena Varsha

  • RE: Go go go?

    GO should never be used as identifier.

    http://msdn.microsoft.com/en-us/library/ms189822.aspx

    Reserved Keywords (Transact-SQL)

    This is not T-SQL keyword now but is on the list on ODBC keywords (second list in the referenced article)...

    Regards,Yelena Varsha

  • RE: The Brainstorm Zone

    Steve,

    This is a know fact that changing the activity and even being asleep let your other brain grey cell work. I had to write a course paper on that many...

    Regards,Yelena Varsha

  • RE: Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'.

    On the Security tab of Linked Server properties you have to add your DOMAIN\sqlman login as Local Login and check Impersonate checkbox or add a remote server's valid login name...

    Regards,Yelena Varsha

  • RE: SQL Agent stopped running..

    Somebody must have run sp_configure or something. Did you try to reconfigure per the error message suggestions?

    Regards,Yelena Varsha

  • RE: Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'.

    To run as a job:

    Start your Agent on a domain account. Add this account to both SQL Servers with the appropriate rights to the databases before you start Agent on...

    Regards,Yelena Varsha

  • RE: Exponent Engima

    Hi,

    Good Question!!!! For once answered correctly.

    I would love to see i and other mathematical imaginary features and operations in SQL Server just a little bit more complex than listed...

    Regards,Yelena Varsha

  • RE: Owning the Spelling Suggestion Feature

    Try this to create and populate the table with numbers:

    CREATE TABLE [#tblNumbers]( [number] [int])

    Go

    insert #tblnumbers(number) values( 1)

    Go 100

    Declare @i int

    Set @i = 0

    Update #tblnumbers

    set @i = number =...

    Regards,Yelena Varsha

Viewing 15 posts - 121 through 135 (of 1,884 total)