Forum Replies Created

Viewing 15 posts - 5,281 through 5,295 (of 13,460 total)

  • RE: Data Entry/ Home Computer Jobs !

    derek.colley (7/2/2012)


    "minimal typing skills"? So you want your applicant not to be able to use a keyboard, then?

    yeah i was totally qualfied up until that;

    another victim of "you are too...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: how to split up the incentive for a member and his team leader ,maneger for admin view?

    i love to help those who help themselves;

    it looks like Chris@home spent a lot of time writing code and helping you out there in the other thread, but i don't...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Problems with xp_cmdshell

    this is a common security misconception/"gotcha". The problem is that when you access any resource OUTSIDE of SQL server, like network shares, local hard drives and folders,xp_cmdshell,bcp with a "trusted"...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Developer edition availability

    i'm in the US, but i ordered my from amazon for ~$44 USD;

    is it available on amazon.uk? (blocked at my job: no shopping allowed)

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: HR Awards - date problem

    i think you just want the items where the modulous of year(getdate) - year(EecDateOfSeniority) is zero;

    something like this:

    with OneSample

    AS

    (

    SELECT CONVERT(datetime,'12/30/2007') As EecDateOfSeniority UNION ALL

    SELECT CONVERT(datetime,'12/30/2004') As EecDateOfSeniority ...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Email from SQL Server 2008 R2 does not go out

    well the error you posted is related to NET SEND, and not database mail;

    i think your mixing the two up a little bit, and

    that NET SEND should...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Email from SQL Server 2008 R2 does not go out

    i was under teh impression that NET SEND doesn't exist on vista or windows 7 machines; could that be the problem?

    http://superuser.com/questions/38967/how-do-i-get-the-net-send-messenger-service-working-on-windows-7

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Search for values within a comma-separated string

    sure!

    parsename is just a handy built in function. built in functions will almost always perform better than code you build yourself, so if i can squeeze data into it's expected...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: UPDATE with CASE Statement not updating all Records

    looks to me like you'll need 200 update statements, one for each possibility: otherwise you end up with unintended updates.

    UPDATE SOMETABLE

    SET ABCField =

    CASE

    WHEN Field1 = '2012' THEN 'Y'

    ELSE...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Search for values within a comma-separated string

    excellent job providing the consumable DDL and insert statements!

    Thank you!

    here's a neat trick that might not work, depending on your data;

    it looks like comma separated, always 4 values, and the...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Scheduling a Processing and Snapshot for the Last Calendar Day of Each Month

    here's one way to do it:

    create a scheduled job that runs every day, but only does real work when the dates match the last day of the month:

    here's the formula,...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Server Name Related Problem

    if you renamed your server at the operating system level, the SQL server might still be remembering the old name;

    this is how you fix it:

    sp_dropserver 'old server name'

    sp_addserver 'new...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: Help with finding my posts

    yeah the MyPosts link is limited to 150, and i'm pretty sure it's not even in the posted order, either.

    I'm 8000+ posts deep, and when i need to recover a...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: How to check if I have VIEW DEFINITION?

    i'm getting closer:

    this query shows me my permissions, as well as the permissions i directly inherit from roles i've been assigned;

    it does not handle any recursive role-within-a-role yet;

    i'm thinking that's...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • RE: How to check if I have VIEW DEFINITION?

    ok a follow up to my own question:

    in SQL2005,

    SELECT * FROM fn_my_permissions(NULL,'DATABASE') for my example above only shows connect permission, but on SQL2008 and above, it shows the "VIEW...

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

Viewing 15 posts - 5,281 through 5,295 (of 13,460 total)