Forum Replies Created

Viewing 15 posts - 3,826 through 3,840 (of 13,469 total)

  • RE: SA Disabled\Locked

    I found this recently:

    if powershell is installed on the server, you can use that to add yourself (your domain login) as a sysadmin;

    this example does the same thing by...

  • RE: Trigger For External Server Insertion

    a trigger featuring a linked server was what i was suggesting to avoid; network problems or permissions issues related to which remote user is used to insert into the remote...

  • RE: Schema Comparison Across 8000 databases

    i spent a bit of time on this same thing before, and it really depends on the results you are looking for, and how deep you want to make them...

  • RE: conversion explanation requested

    Tobar (3/26/2013)


    I see that part, but the error I was getting, which I should have mentioned in the beginning, was

    "Error converting data type nvarchar to numeric". And I don't think...

  • RE: Trigger i Oracle

    take a look at the syntax for an oracle trigger here:

    there's an example there, and you can see how fields are referenced with the :columnname indicator

    see if that helps you...

  • RE: conversion explanation requested

    right, but if you try SELECT convert(decimal(3,1),'333.14')

    you get a conversion error;

    that's what i'm thinking is the issue; other daata than the examples you posted are outside of the data...

  • RE: How to impersonate an AD Login within a AD Group defined in SQL

    laker_42 (3/26/2013)


    t looks like I have to define every last login that will run the workbook on the Tableau Server.

    i don't think that's correct;

    you should be able to add just...

  • RE: Trigger i Oracle

    Minnu this looks a lot like homework, and we hate to do folks work on their behalf, because they don't learn the concepts they need later;

    Oracle triggers are different than...

  • RE: conversion explanation requested

    there must be more to the story;

    this works without an issue at all:

    With MyCTE (val)

    AS

    (

    SELECT '.7' UNION ALL

    SELECT '2' UNION ALL

    SELECT '1.3'

    )

    SELECT *,convert(decimal(3,1),val) FROM MyCTE

    could...

  • RE: Alpha Numeric number Generation

    i have some old examples in my snippets, but this just goes back to the same comments all other posters have made:

    bad idea. the posters so far on here all...

  • RE: Validating trace file events

    ok you are doing a server side trace, so you are good to go;

    when i read commandline, i had assumed a call to profiler.exe with some parameters to a...

  • RE: Lock only one row in update (lock a row)

    abitguru (3/25/2013)


    Thanks Lynn!!!

    Several post later I explain what I'm try to do. 😛

    I understand what you say about bottleneck, but I have no option (in my knowleage :-P). Because...

  • RE: Mostly accessed objects in database

    you can use some index stats to find those kinds of totals since the last time the service was stopped and started;

    it's not kept aywhere else unless you start capturing...

  • RE: Trigger For External Server Insertion

    timotech (3/25/2013)


    Hi All,

    Please i need an answer to this question. I have two servers, one locally and one hosted, i normally upload data to the online one using data export...

  • RE: How to merge below two SQL query in single one..?

    other possibility?

    SELECT T2.KWMENG,

    T1.NETWR,

    T1.NTGEW,

    T1.MATNR,

    ...

Viewing 15 posts - 3,826 through 3,840 (of 13,469 total)