Forum Replies Created

Viewing 15 posts - 3,631 through 3,645 (of 3,665 total)

  • RE: create table from views

    My apologies but but when I first replied I missed that you had tried:

    SELECT * into Tbl_Cars FROM V_Cars

    Try just the select statement

    SELECT * FROM V_Cars

    Does it return any records?

  • RE: create table from views

    You need to spend a bit more time learning how to create tables.

    CREATE TABLE Tbl_Cars

    AS

    SELECT * FROM V_Cars

    is not valid SQL. You cannot load data into a table that...

  • RE: SSIS Flat File source

    I agree with Crispin. That's why I started my reply with "If were using SSIS...".

    I'd much rather to this in VB.

  • RE: SSIS Flat File source

    If I were using SSIS, and since I'm reasonable new at SSIS, I would load both files into SQL tables and then generate a new file from these 2 tables.

    However,...

  • RE: DTS fails when it is scheduled

    Looking at the "Access Denied" in the error statement I would say that the scheduled DTS is running as a different user when scheduled. That user does not have...

  • RE: SQL Job failing because of Job owner

    Could you make sa the owner? The job would then run using the system account.

  • RE: approle

    avamin (8/19/2008)


    rbarry: To clarify, I suggested creating a single windows user that only the app will use to talk to database. Sorry if my earlier post was not clear.

    Wouldn't it...

  • RE: SQL Server to start in which account?

    I'm with Terry on this one. Actually, we also used SQLAdmin.

    One problem that exists with the local system account is that is does not have rights on other servers....

  • RE: SQL Job failing because of Job owner

    Instead of changing the user you may have to drop the user then add the user again being careful to use the proper case.

  • RE: Sql Server Agent Job

    I'm just grasping at straws here but try scheduling the job to run around 5:15.

    Just a wild guess but I'm wondering if for some reason the data is not available...

  • RE: Sql Server Agent Job

    Double check the time when the job runs. Is it possible it's running after the table has been truncated?

  • RE: Updating a field

    You got an error with VARCHAR(MAX) because that is only valid in SQL 2005 and 2008.

  • RE: .LDF FILE

    You can use DBCC SHRINKFILE or make the changes from the database properties using SSMS. SSMS will then use DBCC SHRINKFILE to make the changes.

  • RE: How to use temp tables as DTS destination tables in transform data tasks

    If you want to use temp table try using ## instead of #.

  • RE: Logins and Users

    Kayuca,

    You might want to take a look at the resources that are available for certifications. These resources could provide a good list of the topics that you need to...

Viewing 15 posts - 3,631 through 3,645 (of 3,665 total)