Forum Replies Created

Viewing 15 posts - 886 through 900 (of 13,465 total)

  • RE: Scrub Personal Information Data

    scrubbing data is really nothing more than an update statement, but you have to come up with a pattern for your updates.

    in my case, I've got a suite of tables...

  • RE: Dataset does not fire stored proc in report preview

    preview mode creates a cache file, and does not always call the server to get the data; if you look, you should see a rdl.data file, i believe.

    delete that file,...

  • RE: Can we just lock the schema rather a DB?

    i looked at sp_applock, and it would not give you any granularity at the object level.

    I'm not sure if the OP is just second guessing SQL locking, and is...

  • RE: Adding Advanced Features to SQL Express 2016 upgrade installation

    I believe that only Standard and Enterprise have paths for in-place upgrades;

    all other versions, like express, require an uninstall and re-install, i think.

    so you'll want to either do a side-by-side...

  • RE: Server RestartTime vs Service RestartTime

    answering my own question, by converting ms_ticks to seconds, i think i see what i was after:

    --ServerRestartTimeServiceRestartTimeServiceUpTimeInDays

    2015-08-22 21:46:51.9802016-03-29 08:34:07.89087

    -- select

    DATEADD(second, -1 * ( ms_ticks / 1000),getdate()) as ServerRestartTime,

    ...

  • RE: SSRS Distribute Report by Person/Report Bursting

    you are looking for a data driven subscription, which is an enterprise feature; are you using SQL enterprise or standard?

    the subscription can use a table or view to feed the...

  • RE: SQL Server 2014 cant add any windows accounts

    i believe the GUI will DEFAULT to use Local Users to the server, and you explicitly need to select domain. annoying, for sure.

    so if i search for mydomain\lowell, it...

  • RE: need help to join login and host name/application

    Tac11 (6/23/2016)


    How can I add login name PLUS Host name or application name on below query?

    Select *

    From sysobjects

    Where type =’P’

    and DateDiff(D,refdate,getdate()) < 7;

    here's a snippet i use for auditing...

  • RE: Need Help with SQL Query

    reading it again, since you want to hav eby month, the date logic needs to be int he group by also:

    Select

    br.Branchno,

    DATEADD(mm, DATEDIFF(mm,0,vw.viewdate), 0) As MonthViewed,

    ...

  • RE: Need Help with SQL Query

    here's my best guess.

    Select

    br.Branchno,

    DATEADD(mm, DATEDIFF(mm,0,vw.viewdate), 0) As MonthViewed,

    Count(*) As TotalViews

    FROM Branch

    INNER JOIN Registration rg ON br.Branchno = rg.Branchno

    INNER JOIN Client cl ON rg.Clientno...

  • RE: How do you list the Extended Events for the Table

    Welsh Corgi (6/21/2016)


    The following list the Extended Properties for each column in a table:

    SELECT * FROM ::fn_listExtendedProperty

    (DEFAULT,'schema', 'dbo', 'table', 'Event', 'column',DEFAULT)

    How do you list the...

  • RE: peer to peer replication PK violation issue.

    dastagiri16 (6/20/2016)


    I have configured peer to peer replication for two nodes.

    i have initialised the subscription from backup.

    Both the nodes are sync after completion of the setup but when i inserting...

  • RE: Tuning SQL Query

    here's some of the things i could think of off the top of my head:

    1. Is the query itself SARG-able?( search arguments in WHERE statements will use an index?)

    look for...

  • RE: DDL Trigger - Initial Load of Table used to track Database Changes

    without your table definition so we know what you are auditing, we cannot help much, but what you can do is simply insert into your audit table, from the sys.tables...

  • RE: Computed column with leading static number

    nilknarf (6/17/2016)


    Trying create a column with leading code 12345 along with id number. 12345 999999999.

    so, a string that happens to contain numbers then, since you included a space?

    i...

Viewing 15 posts - 886 through 900 (of 13,465 total)