Viewing 10 posts - 46 through 55 (of 55 total)
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...
August 2, 2011 at 7:02 am
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...
June 2, 2011 at 9:32 am
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...
June 2, 2011 at 8:24 am
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...
November 23, 2010 at 6:28 am
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...
November 19, 2010 at 11:49 am
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...
November 19, 2010 at 11:04 am
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...
November 19, 2010 at 10:03 am
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 ...
November 19, 2010 at 9:20 am
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...
November 19, 2010 at 8:55 am
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...
November 19, 2010 at 8:32 am
Viewing 10 posts - 46 through 55 (of 55 total)