Forum Replies Created

Viewing 15 posts - 6,616 through 6,630 (of 7,600 total)

  • RE: Only allow users to see their own records

    I don't see why it would necessarily be that bad, at least for a straightforward "row must match the username" check. I've done these a few times w/o any...

  • RE: Remove characters after last slash in string

    And, finally, you don't really need SUBSTRING, LEFT is good enough :-):

    SELECT @string, LEFT(@string, LEN(@string) - CHARINDEX('\', REVERSE(@string)) + 1)

  • RE: Only allow users to see their own records

    I wouldn't try using views, as then the table/view name changes every time, so you're forced to use dynamic SQL, which causes additional security headaches.

    Instead, I suggest creating a controller...

  • RE: Alpha Numeric number Generation

    Your stated incrementation method is so unusual and customized that I'd suggest just creating table with pre-generated key values; and, when you need to increment by one, instead of...

  • RE: Database Restore Causes Database User To Become Inoperable

    SQLKnowItAll (3/22/2013)

    IT is worth noting that we have 6 different environments and making sure all logins have a synced sid is sometimes not realistic. So that is why I...

  • RE: Database Restore Causes Database User To Become Inoperable

    SQLKnowItAll (3/22/2013)


    ScottPletcher (3/22/2013)


    SQLKnowItAll (3/22/2013)


    ScottPletcher (3/22/2013)


    IF you can very briefly drop the problem login(s) on your clients' machines, and immediately recreate them, you can fix this problem once and for all!...

  • RE: Database Restore Causes Database User To Become Inoperable

    SQLKnowItAll (3/22/2013)


    ScottPletcher (3/22/2013)


    IF you can very briefly drop the problem login(s) on your clients' machines, and immediately recreate them, you can fix this problem once and for all! Then...

  • RE: Database Restore Causes Database User To Become Inoperable

    IF you can very briefly drop the problem login(s) on your clients' machines, and immediately recreate them, you can fix this problem once and for all! Then you would...

  • RE: script

    frecal (3/21/2013)


    Thanks Very much for this i was trying to also get it to work using this method (it is easier to follow). but get an error like

    Msg 1033, Level...

  • RE: Performance tuning

    Very little to go on ... but here's my best guess so far:

    IF EXISTS(SELECT 1 FROM sys.objects WHERE name = 'FACT_SalesAnalysis')

    DROP TABLE FACT_SalesAnalysis

    -- ...

  • RE: Average hourly rowcounts

    SELECT

    DATEADD(HOUR, DATEDIFF(HOUR, 0, RunDateTime), 0) AS AvgHourlyDateTime,

    --DATEADD(MILLISECOND, -3, DATEADD(HOUR, DATEDIFF(HOUR, 0, RunDateTime) + 1, 0)) AS AvgHourlyEndDateTime,

    AVG([RowCount]) AS...

  • RE: SQL Server Logon Trigger Problems

    It looks to me like you're checking all connections to the database. If there are many such connections for different users, that could be a drag on the trigger.

    So,...

  • RE: Performance Problem

    Would need to also at least see the DDL ("CREATE TABLE"/"CREATE INDEX") for the tables, including all indexes.

  • RE: script

    You can use COALESCE(): for only 4 values, it's actually clearer to me personally (ymmv) than the other method.

    SELECT

    t.id,

    COALESCE(t.field1, t.field2, t.field3, t.field4)...

  • RE: How to interprete the unused space ?

    Lynn Pettis (3/20/2013)


    You do realize that shrinking a database will fragment the indexes used by the queries run to generate the reports and that this will impact the performance of...

Viewing 15 posts - 6,616 through 6,630 (of 7,600 total)