Forum Replies Created

Viewing 15 posts - 961 through 975 (of 1,988 total)

  • RE: Microservices in SQL Server

    Matt Miller (4) - Monday, November 13, 2017 8:26 AM

    Jeff Moden - Monday, November 13, 2017 5:26...

  • RE: exec (@sp) running twice

    Is it possible something modified [RISE].[dbo].[tb_CompaniesToRun] while the process was running?  Since you're requerying that table every time you loop it's possible something was modifying those SP names while it was...

  • RE: Today's Random Word!

    ManicStar - Thursday, November 9, 2017 11:44 AM

    Pizza

    Windowsill

  • RE: Importing Variable length text files into SQL

    Try changing the format of the input file from fixed width to ragged right, you shouldn't need a pre process step.

  • RE: load data into 3 separate tables using tsql .

    vsamantha35 - Wednesday, November 8, 2017 2:32 PM

    Always the first row will be a bunch of characters indicating a header and date...

  • RE: Today's Random Word!

    Ed Wagner - Wednesday, November 8, 2017 12:38 PM

    SQLPirate - Wednesday, November 8, 2017 11:54 AM

    November 8, 2017 at 12:44 pm

    #1967238

  • RE: load data into 3 separate tables using tsql .

    This might work better as a preprocess step as this kind of logic generally lends itself better to scripting languages if you don't have an easy way to identify header...

  • RE: Deny delete for some users

    Yes if you know the login/logins at fault you can certainly script out the grant/deny permissions on the objects in question.

  • RE: What are you worth?

    kevlray - Wednesday, November 8, 2017 8:20 AM

    Well I work for a local government agency.  So our salary is public and set...

  • RE: Are the posted questions getting worse?

    ChrisM@Work - Wednesday, November 8, 2017 8:11 AM

    Phil Parkin - Wednesday, November 8, 2017 7:24 AM

    November 8, 2017 at 8:24 am

    #1967176

  • RE: Problem with updating numbers into an NVARCHAR column

    Assuming Anl2 is actually a nvarchar type you need to put the 01 in single quotes '01' , what's happening is SQL Server is seeing 01 as a number so...

  • RE: upload files

    I would definitely recommend number 3, let the OS handle the actual file management that's part of what it's there for after all.  In the database store whatever meta data...

  • RE: Today's Random Word!

    ManicStar - Tuesday, November 7, 2017 6:40 AM

    Ed Wagner - Tuesday, November 7, 2017 5:51 AM

    November 7, 2017 at 10:29 am

    #1967023

  • RE: Understanding of Unique Index

    Maybe the DBA's didn't quite understand what you were asking?  You are correct however if you already knowing certain columns will be unique adding more columns to that combination will...

  • RE: Need help with T-SQL

    Just?

    SELECT 'SELECT '+c.name+' FROM '+s.name+'.'+t.name+' WHERE FirstName = ''Desmond'''
    FROM sys.columns c
    INNER JOIN  sys.tables t on c.object_id=t.object_id
    INNER JOIN sys.schemas s on t.schema_id=s.schema_id

Viewing 15 posts - 961 through 975 (of 1,988 total)