Forum Replies Created

Viewing 12 posts - 1 through 12 (of 12 total)

  • RE: Windows Authentication Vs Mixed Mode

    Windows Authentication mode allows a user to connect through a Microsoft Windows user account

    and

    Mixed Mode allows users to connect to an instance of SQL Server using either Windows Authentication or...

  • RE: Looping in select query

    certainly by looking at your requirement it is not clear what you want and why? but anyway i think your problem can be either resolved with some smart logic using...

  • RE: How to create a .SQL file with Parameters?

    can you tell me how are you thinking of passing parameters to text file (.sql ext)? sql file is not an exe to which you can pass parameters but it...

  • RE: Use variables in Data Flow

    if i am not wrong what i thought earlier is you are using sql variable in back-end but it seems that you want to format your query in the front-end...

  • RE: what is the datatype to store all type of data(image,binary.....) into database column

    hey what i think is you have variable type of data in your document. you definately need to select proper data type for data. if you have numeric value then...

  • RE: Long running queries

    hi frnd,

    I think first n foremost thing u need is to have proper indexes in place.

    I want to know which sql server u r using. it is a very expected...

  • RE: Error Locating Server/Instance Specified

    most probably as i believe, there is either something wrong with the code or some problem with your network if you are accessing server over network. r u always getting...

  • RE: Use variables in Data Flow

    Although i believe that dynamic query can be achieved by formatting query in the following way:

    declare @col varchar(30)

    set @col='empname'

    exec('select '+@col+',empname from test')

    declare @tab varchar(30)

    set @tab='test'

    exec('select empname...

  • RE: Use variables in Data Flow

    hi frnd,

    i dont think there is any option of setting column name to any variable and then later using that variable as column name.

    becuase variables are used for column value...

  • RE: procedure

    Thanks for your interest,

    Following is the example. hope it will help you for your problem.

    Create Function [dbo].[fn_ParseDelimitedStrings]

    (@String nvarchar(3500), @Delimiter char(1))

    Returns @Values Table

    (

    RowId int Not Null Identity(1,1) Primary Key

    ,Value...

  • RE: How to check the correctness of the data imported

    yes, this is the first thing you must always do when you migrate data from one source to another. you must always check your data consistency whether it is in...

  • RE: procedure

    unfortunately, sql server doesn't provide array since it is not a full fledge programming language. although the problem can be solved using concatenated string with some specific delimiter. for e.g....

Viewing 12 posts - 1 through 12 (of 12 total)