Forum Replies Created

Viewing 15 posts - 5,146 through 5,160 (of 6,400 total)

  • RE: import a txt file in sqlserver

    Yep it is. If you right click the database you wish to import into, then in the tasks menu you should see Import Data.

  • RE: Run Procedure with breaks in between

    the only way to pause would be to add a WAITFOR DELAY into the stored proc. It would leave that SPID open so if its doing things inside a...

  • RE: import a txt file in sqlserver

    Yes, there are many different ways to do this. You have the Import/Export data wizard, bulk insert commands, bcp and SSIS.

    If its going to be a 1 time thing...

  • RE: Maintenance Plan Review

    durai nagarajan (5/9/2012)


    anthony.green,

    The drives that you proposing can i know it deeply, we have a virtual server and base configuration i dont have if i ask them to add a...

  • RE: using left join and TOP

    Hi and welcome to SSC, please could you follow the second link in my signature block and post the table definitions, sample data and your expected output of based on...

  • RE: Google Analytics SQL Import

    After changing my search terms fo SSIS Google Analytics some kind developer has written a plugin for GA which can be found here http://analyticssource.codeplex.com/. All you need to do...

  • RE: Google Analytics SQL Import

    HowardW (5/9/2012)


    It would definitely be more elegant to use the Google Analytics API (this has .Net libraries you can download and it looks pretty simple to interface with), then use...

  • RE: select XML data into a variable

    does this help

    declare @results xml

    set @results = (select name from sysobjects for XML AUTO)

    select @results

  • RE: Replace the Linked server

    Sony Francis @EY (5/9/2012)


    Any way other than replication ?

    Replication requires additional hardware( subscriber and distributer server). Expensiveeee!!!!!!!!!

    the publisher and distibution server can be the same box, so that would...

  • RE: cant get backup on drive C:\

    is the database stored on many different computers or is it on one central server?

    if its on a server and you want it to backup to a users workstation you...

  • RE: Full Text Index.

    the main thing to worry about is how often the table is updated as if you have set the FTC to be change tracking automatic then each update insert delete...

  • RE: Full Text Index.

    yes they are stored like any other index, you can query the space in the GUI by clicking properties of the FTC under the storage node in SSMS and look...

  • RE: cant get backup on drive C:\

    ensure that the account which is running the SQL service has the nessesary rights to write a file into the locations you wish for it to go.

  • RE: Error during SSRS Report Processing

    To add on from the above, does the user exist in the database it needs to connect to.

    If your using SQL authentication, has the DB been refreshed from a different...

  • RE: Maintenance Plan Review

    firstly if you can get more drives added to the server

    i've seen some people say that with the system databases (excl TempDB) that the MDF and LDF are ok on...

Viewing 15 posts - 5,146 through 5,160 (of 6,400 total)