Forum Replies Created

Viewing 15 posts - 6,226 through 6,240 (of 26,490 total)

  • RE: Cross Join Help

    dwilliscp (7/25/2014)


    INSERT INTO [dbo].[Resource_Mat] ([Plant], [Material_number], [Production_Version], [Resource_Code], [Std_Batch_Size], [UOM], [Std_Run_Time], [Time_UOM], [Batch_Min], [Batch_Max], [Stocking_Strategy], [Trans_Type], [Recipe_Status], [Short_Description], [Rounding_Value], [Distribution_Key]) VALUES (N'CHANC', N'11C-8260', N'0001', N'SIL', N'15.000', N'KG', N'0.100', N'H', N'0.000',...

  • RE: Error when selecting top N records from oracle

    Okay, I still have to ask. Are you sure there is data in all three tables?

  • RE: I am Confused about SQL Server performance

    crmitchell (7/25/2014)


    Lynn Pettis (7/25/2014)


    crmitchell (7/25/2014)


    Coderx7 (7/24/2014)


    Difference between SQL Server and Oracle.

    If you want to treat the loop inserting 1000 rows of data as a single transaction in SQL Server you...

  • RE: Datime time based syncronization

    rajemessage 14195 (7/25/2014)


    two server can have same timezone and they can get updated from internet also, but will they keep same datetime uptothe second over time.

    yours sincerely

    There is always the...

  • RE: I am Confused about SQL Server performance

    crmitchell (7/25/2014)


    Coderx7 (7/24/2014)


    Evil Kraig F (7/24/2014)


    Coderx7 (7/24/2014)


    I really cant get the part to insert 1000 rows at once! How is that even possible? is it mot dangerous ? since it...

  • RE: Error when selecting top N records from oracle

    edit: Never mind, reread the post and saw that if the TOP 100 was removed the query ran.

  • RE: Fantasy Football 2014

    The first year of the league it was 16 teams. Starting with the second year Dan dropped it to 12 teams. He would be the one to explain...

  • RE: I am Confused about SQL Server performance

    One thing to remember about Oracle and SQL Server, they are not the same. The internals are different, and there for how the operate is different.

    For example, the following...

  • RE: Multiple updates using a CTE

    ksrikanth77 (7/23/2014)


    Sorry Lynn,

    I replaced the # while formatting the text to update in the Site, I am using #temp tables in the query.

    Well, you changed the entire meaning of the...

  • RE: Multiple updates using a CTE

    First, you aren't using actual temporary tables but permanent tables as temporary tables.

    Try this:

    Begin

    SELECT

    A.[Entry No_],

    A.[G_L Account No_],

    A.[Gen_ Prod_...

  • RE: how to call dynamic query stored procedure in select statement

    shah_khan_1289 (7/23/2014)


    this is my first sp

    create proc createSp1(@acc varchar(20),@columnname varchar(25))

    as

    declare @value flaot;

    set @query='select top 1 @value='+@columnname+' distict where DISTRICT='+@District;

    -- select @query;

    EXEC sp_executesql @query,N'@value nvarchar OUTPUT',@value OUTPUT;

    select @value...

  • RE: 'PARSENAME' not working

    Thought I'd try and see if there was an alternative:

    create table #phoneNums (phone varchar(50));

    insert into #phoneNums values ('800-555-1212');

    insert into #phoneNums values ('888-555-1212');

    insert into #phoneNums values ('336-555-1212');

    insert into #phoneNums values ('804-555-1212');

    insert...

  • RE: 'PARSENAME' not working

    This:

    create table #phoneNums (phone varchar(50));

    insert into #phoneNums values ('800-555-1212');

    insert into #phoneNums values ('888-555-1212');

    insert into #phoneNums values ('336-555-1212');

    insert into #phoneNums values ('804-555-1212');

    insert into #phoneNums values ('652-555-1212');

    insert into #phoneNums values ('704-555-1212');

    insert into...

  • RE: Downgrading from SQL Server 2014 to SQL Server 2012

    pmscorca (7/23/2014)


    I don't use the Retail channel to buy SQL Server.

    I repeat that I know that SQL Server 2014 has rights to downgrade.

    Simply, I want to know how technically I...

  • RE: Downgrading from SQL Server 2014 to SQL Server 2012

    Eirikur Eiriksson (7/23/2014)


    pmscorca (7/23/2014)


    Hi,

    I need to know how I can downgrade to a SQL Server 2014 installation to SQL Server 2012.

    Thanks

    First suggestion would be to install the SQL 2012 alongside...

Viewing 15 posts - 6,226 through 6,240 (of 26,490 total)