Forum Replies Created

Viewing 15 posts - 7,801 through 7,815 (of 8,760 total)

  • RE: Are the posted questions getting worse?

    SQLRNNR (7/17/2014)


    Eirikur Eiriksson (7/17/2014)


    Grant Fritchey (7/17/2014)


    Threadizens!

    Make sure we talk if you're Telford this week. The Red Gat Army is travelling up there this afternoon.

    Would that be this bunch?

    😎

    That looks eerily...

  • RE: Are the posted questions getting worse?

    Koen Verbeeck (7/17/2014)


    Eirikur Eiriksson (7/17/2014)


    Grant Fritchey (7/17/2014)


    Threadizens!

    Make sure we talk if you're Telford this week. The Red Gat Army is travelling up there this afternoon.

    Would that be this bunch?

    😎

    Where is...

  • RE: Are the posted questions getting worse?

    Grant Fritchey (7/17/2014)


    Threadizens!

    Make sure we talk if you're Telford this week. The Red Gat Army is travelling up there this afternoon.

    Would that be this bunch?

    😎

  • RE: SSIS XML file import to variable

    Quick thought, I would, if possible, use SSIS to pass the file name and path to an OPENROWSET on the SQL Server.

    😎

  • RE: How do I secure the code of a stored procedure/function?

    Quick thought, have you looked into EXECUTE AS

    😎

  • RE: Moving a database from sql server 2005 to a new VM

    Joy Smith San (7/17/2014)


    Hi Team,

    Currently we have a database in SQL Server 2005.

    Decided to move that DB into a new VM where we need to install sql server 2008 R2.

    We...

  • RE: location of '-' in the comments Please Define Or Explain It To me

    Quick suggestion

    😎

    DECLARE @COMMENT NVARCHAR(200) = N'Work (210) 401-6838 for debtor(1) ''Guzman, Tarrasa'' status changed from Good to Bad';

    SELECT REPLACE(@COMMENT,N'-',N'') AS CLEAN_COMMENT

    Result

    CLEAN_COMMENT

    -----------------------------------------------------------------------------------

    Work (210) 4016838 for debtor(1) 'Guzman, Tarrasa' status changed from...

  • RE: notify when a particular field changes

    mick burden (7/17/2014)


    Thanks, dte will always change as it's a date and time field and is updated every 30 mins, the ipaddress field could remain the same over several days...

  • RE: notify when a particular field changes

    Quick thought on this problem, if the IP address is the unique key with a temporal attribute of Recorded Date (dte), there is no way of telling if an IP...

  • RE: Are the posted questions getting worse?

    Jack Corbett (7/16/2014)


    Eirikur Eiriksson (7/16/2014)


    No implied either, my respect on handling the situation! So far, JC is the only one that has managed to rub me the wrong...

  • RE: Join 2 table based on Date

    JA quick code here, not a full solution, just to get you going;-)

    😎

    USE tempdb;

    GO

    ;WITH EMP_TRAN AS

    (SELECT EmpID, TransDate FROM (VALUES

    ('00001','1/1/2014')

    ,('00001','1/2/2014')

    ...

  • RE: Encrypt SSN Example (TDE)

    This sample is kind of a walk through, add column, update with encrypted, mask the clear text etc..

    😎

    USE tempdb;

    GO

    CREATE TABLE dbo.Name_and_SSN

    (Full_Name VARCHAR(50),

    CLEAR_SSN VARCHAR(12));

    INSERT INTO dbo.Name_and_SSN (Full_Name,CLEAR_SSN)

    VALUES

    ('Egor Mcfuddle' ...

  • RE: One Size Does Not Fit All

    Miles Neale (7/16/2014)


    OCTom (7/16/2014)


    crussell-931424 (7/16/2014)


    I can't count the number of times management has presented me with an assignment which is the solution to some problem they have. Once implemented and...

  • RE: Simple Linked Server Query from SSMS to datatable syntax

    First thought would be a proper four part notation: [mylinkServerName].[Mydatabase].[my schema].[mytable]

    😎

  • RE: Encrypt SSN Example (TDE)

    Welsh Corgi (7/16/2014)


    I started out by asking a basic question about encryption.

    I am Grateful for the help and I got my answer. Then I asked about the next steps.

    If I...

Viewing 15 posts - 7,801 through 7,815 (of 8,760 total)