Forum Replies Created

Viewing 15 posts - 1,096 through 1,110 (of 1,884 total)

  • RE: backing up jobs

    Answers above are correct unless Helen is asking about Scheduled Tasks. I too would like to know how to move Scheduled Tasks from Server to Server including schedules and executables...

    Regards,Yelena Varsha

  • RE: dba wannabe (certification question)

    If I would not be MCDBA on 2000, then I would just pass 1 exam: 70-228, SQL Server 2000 Administration (the official exam title is longer). With this certification you may...

    Regards,Yelena Varsha

  • RE: Insolate production environment from test and DTS packages

    Some (not all) recommendations:

    1 You may save packages as Visual basic files and search for the production server string if it completely absent. There will be text like this:

    oConnection.ConnectionProperties("Data Source")...

    Regards,Yelena Varsha

  • RE: Running VBScript

    You may use xp_cmdshell or use Execute Process task.

    Regards,Yelena Varsha

  • RE: Count a string value within a VARCHAR column

    I would use PATINDEX and SUBSTRING functions to isolate the strings and then group by your numbers. PATINDEX shows the first position of the character in the string.

    For example,

    select patindex('%.%','ctim=0.0.0.12888&track=5')

    will...

    Regards,Yelena Varsha

  • RE: Running VBScript

    We had some problems when creating ActiveX script jobs. What we did is to save a script as a file with extension vbs (like mysript.vbs) and then create a job...

    Regards,Yelena Varsha

  • RE: How to remove all data from all tables in a database?

    did you try sp_msforeachtable with truncate table statement? Additionally, in the previous post of JG the type should be U, not P

    Regards,Yelena Varsha

  • RE: Question of the Day for 18 Jan 2006

    oops... knew the answer but got distracted by the tables A and B positions and accidentally clicked the correct position but the wrong operator.

    Regards,Yelena Varsha

  • RE: Where is the licensing mode selection screen /utility?

    Dan,

    I would like to see if the server is installed in accordance with the purchased license. In our place we have internal/external software audits. Also, I need to make sure that...

    Regards,Yelena Varsha

  • RE: Installing SQLServer 2005

    It is OK to do new things not on the first try. I had a blue screen with STOP error myself the first time I tried.

    Regards,Yelena Varsha

  • RE: Column Triggers

    Hi,

    I did not try it myself, but did you follow the example in

    http://msdn2.microsoft.com/en-us/library/ms186329.aspx

    It says in the middle after the first example:

    To test for updates that affect columns other...

    Regards,Yelena Varsha

  • RE: How do I get prev/current/next record (no cursor)?

    Hello,

    I  don't see anything wrong with the cursors when you have to access the previous /current/next record. The performance issues may be also if you put too much processing into...

    Regards,Yelena Varsha

  • RE: Ranking query

    You may order by your fields, output into temp table with Identity property:

    create table ##Ranked ( Rank int  IDENTITY, Customer int NOT NULL,SortStart int NOT NULL, SortEnd int NOT NULL)

    GO

    Insert...

    Regards,Yelena Varsha

  • RE: Installing SQLServer 2005

    You don't need Visual Studio for installing SQL Server 2005. It installs some components of Visual Studio 2005: Analysys Services, Integration Services and Reporting Services projects.

    Regards,Yelena Varsha

  • RE: Cannot Open SQL Server Log Subdirectories

    Log files are just text files. Try to connect by mapping a drive from your computer and browse to the directory where the logs are.

    Regards,Yelena Varsha

Viewing 15 posts - 1,096 through 1,110 (of 1,884 total)