Forum Replies Created

Viewing 15 posts - 136 through 150 (of 212 total)

  • RE: Cannot test the registered server in SQL Server 2008, neither start, pause or stop

    Is the SQL Server service started? Check Windows Services (Start/Run/services.msc) for MSSQLSERVER or MSSQL$SQLEXPRESS.

  • RE: Indexes on Views

    Marv-1058651 (7/22/2010)


    Thanks for your advice.

    I tried that SQL on a view and i recieved the error below:

    "Cannot create index on view '[ViewName]' because the view is not schema bound"

    To...

  • RE: COPY SQL QUERY

    Jeff Moden (7/16/2010)


    seth delconte (7/16/2010)


    I think there's a way to do that other than running Profiler to record the queries...

    Cool... what is it?

    Typo...I meant I DON'T think there's a way...

  • RE: Named Pipes Provider, error: 40 - Could not open a connection to SQL Server

    Check to make sure that TCP port 1433 is not being blocked by a firewall; use Server Network Utility to make sure TCP/IP is enabled.

  • RE: COPY SQL QUERY

    I think there's a way to do that other than running Profiler to record the queries...

  • RE: COPY SQL QUERY

    ALTER TABLE changed_data ADD query_run VARCHAR(255) NULL ;

    GO

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

  • RE: Using .. in object identifiers

    Skipping the schema by using two dots just tells the server to use the default schema (usually dbo). AFAIK, there is no efficiency gain by using this, I think...

  • RE: Failed job

    Does your job use xp_sendmail? Is the table a permanent one or a temp table? When referencing the table, try using the 3-part table name ('dbname.dboname.tablename' if static...

  • Viewing 15 posts - 136 through 150 (of 212 total)