Forum Replies Created

Viewing 10 posts - 46 through 55 (of 55 total)

  • RE: Jobs for Data Scientists

    I havently really posting much to SQLServerCentral, whether it be my lack of DB knowledge (super low level, maggot-sized, junior dba), or my higher interest in the topic presented by...

  • RE: updating several tables and deleting the original rows

    Thanks for the advice!

    I am going to try some of the free webinars from Pragmatic Works. I learn more effectively through demos and hands-on.

    Also, I will start to participate...

  • RE: updating several tables and deleting the original rows

    This was exactly what I needed! Your sytax and comments were very clear, and this will definitely help me in the future.

    I have never used a CTE before, but after...

  • RE: Error in dynamic SQL statement

    I am a junior developer, so my answer may not be great, because I too am still learning (hence posting under SQL Server Newbies). I hope this helps.

    Assuming @EventList is...

  • RE: best course of action

    SOLVED!!!!!!!!

    Even though I am now just replying to my own replies, I have found the solution and it operates correctly!!

    I was even able to shorten it (removing the nested cursor).

    The...

  • RE: best course of action

    So I am receiving some errors when running the cursor. Can anyone provide some insight on this? The cursor and errors are below. The error states that it cannot find...

  • RE: best course of action

    Here is what i came up with.

    Thoughts? suggestions? corrections?

    DECLARE @id nvarchar(255)

    DECLARE @updatecommand nvarchar(255)

    DECLARE @id2 nvarchar(255)

    DECLARE @updatecommand2 nvarchar(255)

    DECLARE tableCursor CURSOR FOR

    SELECT TABLE_NAME

    FROM INFORMATION_SCHEMA.COLUMNS

    WHERE TABLE_NAME NOT LIKE '%aspnet%'

    ORDER...

  • RE: best course of action

    Here it is.

    However, something is not right at SET @updatecommand = N'UPPER(' + @id + ')'

    DECLARE @id nvarchar(255)

    DECLARE @updatecommand nvarchar(255)

    DECLARE columnCursor CURSOR FOR ...

  • RE: best course of action

    after looking through lowell's reply I thought of that (information schema columns)!

    I am working on a cursor that will utilize it and will post for suggestions and comments in a...

  • RE: best course of action

    Sorry, I am a junior developer and still learning both SQL code and application code. It has been passed down to me as a task to perform this in sql...

Viewing 10 posts - 46 through 55 (of 55 total)