Forum Replies Created

Viewing 15 posts - 271 through 285 (of 1,048 total)

  • RE: Need to add a user to a read only database

    alter the database to read_write then add the user then change it back to read_only.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Data Growth

    Excellent Steve. I've been preaching this reality for a few years now but you summed it up quite nicely. I'm forwarding your column to a few people in this...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Error while bcp

    Not that I'm aware of. I usually use BULK INSERT VS BCP though.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Error while bcp

    Typical UNIX files have a single line-feed for each line (row) where Windows uses a CR-LF combination which should be compatible, but make sure the -r parameter is correct...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: 2008 R2 upgrade advisor error

    Some update that was installed earlier caused this.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Case Statement

    sandeep4testing (3/16/2012)


    Hi Friends,

    I'm learning the dynamic SQL Server,

    Any one can tell me what is the use of case statement and how we need to use case statement ?

    Thank's,

    Sandeep.

    It's a...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: How to do column mapping with data in text file?

    You can use bcp. Use BOL and see how to use it, it is a command line utility.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: How to do column mapping with data in text file?

    I assume you know the format of the data in the file, and data type expected in each column.

    Therefore I would create a staging table in SQL server, having columns...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: FTP From File Share (or SSRS) via SQL

    You could do this by writing the FTP requests to a table instead of a service broker queue, than have the service poll the table periodically. The downside to this...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Trying to figure out why this is a full table scan

    Yes, you want to change the nvarchar() to varchar() not the other way around. I thought that was in your temp table?

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: FTP From File Share (or SSRS) via SQL

    Not off the top of my head. I've used service broker as a TSQL interface for several back-end web services with excellent results.

    If you are not sure how to...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Trying to figure out why this is a full table scan

    aurato (3/1/2012)


    sturner (3/1/2012)


    aurato (3/1/2012)


    sturner (3/1/2012)


    change the dataype of the sopnumber in the temp table to char or varchar.

    I had a hunch this might be it. Is it safe to...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Trying to figure out why this is a full table scan

    aurato (3/1/2012)


    sturner (3/1/2012)


    change the dataype of the sopnumber in the temp table to char or varchar.

    I had a hunch this might be it. Is it safe to change the...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Trying to figure out why this is a full table scan

    change the dataype of the sopnumber in the temp table to char or varchar.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: FTP From File Share (or SSRS) via SQL

    A most robust and reliable method to do this is to have a separate process implemented as a service or a scheduled task that pushes the files to an http://FTP...

    The probability of survival is inversely proportional to the angle of arrival.

Viewing 15 posts - 271 through 285 (of 1,048 total)