Forum Replies Created

Viewing 15 posts - 6,226 through 6,240 (of 13,877 total)

  • RE: SQL comma separated values and a loop

    First thing I'd suggest is removing this line:

    INNER JOIN dbo.Drops D ON J.JobID = D.JOBID

    As it is no...

  • RE: Schema

    padmakumark26 (12/8/2016)


    With user which have default schema we can access object without specifying schema name right ?

    Like select * from table .

    But i cannot access like that it is...

  • RE: Schema

    padmakumark26 (12/8/2016)


    I created a user (User1) and Schema (shema1). Made schema1 as defult user schema.

    Now i cannot access table name without schema1.table name. Select * from table don't work

    I...

  • RE: Send an E-mail from SQL Server without SMTP

    Maybe you can use an external SMTP provider. Have a look here[/url].

  • RE: t-sql 2012 possible join to same table

    dianerstein 8713 (12/7/2016)


    I only want 1 parameter value that can be obtained from the query where the parameter value = '16-17'. However I want to include logic that will also...

  • RE: Identify if index exists on partition function

    Can you use something like this?

    IF NOT EXISTS(SELECT * FROM sys.indexes WHERE object_id = object_id('schema.tablename') AND NAME ='indexname')

    --Do stuff

  • RE: t-sql 2012 possible join to same table

    dianerstein 8713 (12/7/2016)


    In a t-sql 2012 column I have a column called test1 defines as (varchar(10),not null) in a table called tab. The values in this column look like '16-17'...

  • RE: t-sql 2012 check for bit value = 1

    wendy elizabeth (12/7/2016)


    In an existing sql server 2012 database, there are lots of columns defined as (bit,null). When the value is checked to be = 0, the results are returned...

  • RE: SQL comma separated values and a loop

    paul 69259 (12/7/2016)


    Thank you Thom,

    That appears to be nearly there the only problem now is if a job doesn't have any additional drops it doesnt show the collection and...

  • RE: SQL comma separated values and a loop

    IF my understanding is correct, STUFF should do what you want.

    You had the same idea as me, though STUFF is not doing much here other than removing an unwanted character;...

  • RE: SQL comma separated values and a loop

    So ... a single row in the Jobs table can have multiple related rows in the Drops table, is that correct?

    If so, you could make use of the FOR XML...

  • RE: SQL and EXcel

    clucasi (12/7/2016)


    i am trying to convert xlsx to xls using DTS script task,but because the server hasn't got excel installed its throwing an error..Would it be ok to load MS...

  • RE: SSIS2012 - Package parameters - Error: Accessing variable

    Brandon Groom (12/5/2016)


    I had this error also and it turned out to be a source code promotion merge issue with the project file. After the merge, the parameter ID in...

  • RE: To create a stored procedure

    swarun999 (12/5/2016)


    create procedure spgetuserdetails

    (

    @UserId nvarchar(255),

    @Password nvarchar(255)

    )

    as

    begin

    declare @count int

    select @count = count(*) from UsersTable where UserId = @UserId and [Password] = @Password

    if(@count = 0)

    begin

    Print...

  • RE: Query optimization

    One thing you could also try is putting the results of the entire source query into a temp table, then indexing the temp table, then merging from only the temp...

Viewing 15 posts - 6,226 through 6,240 (of 13,877 total)