Viewing 15 posts - 106 through 120 (of 152 total)
please tell me if this logic is correct. I'm passing table name as parameter, the same tableName that will be used to create the *new table* called tempTable.
after the temp...
February 6, 2014 at 6:14 am
I edited your query to this:
DECLARE @SQLStatement NVARCHAR(2000);
SET @SQLStatement = 'CREATE TABLE dbo.Hosea_tblDATA_NOTE (';
SELECT @SQLStatement = @SQLStatement + ',' + c.name +' '+st.name +' '+cast(c.max_length as varchar(50))
FROM sys.tables t
JOIN...
February 6, 2014 at 3:45 am
Is that a dynamic sql, I'm just reading about it now and I haven't grasp it yet, can you explain your query to me please, also explaining dynamic sql.
I copied...
February 6, 2014 at 2:28 am
I want to create a new table with the about of that query, that output has to be my columns
February 6, 2014 at 2:06 am
How do I attach my bitmap picture to my report, on the conditions, e.g if Fields!Validation_Check.Value = Y, then watermark "Report In Error" on top of my report. And again...
January 10, 2014 at 2:46 am
I have created a picture so far, as to what I found so far through articles I found in the net, but then I'm not sure how to go on...
January 10, 2014 at 2:02 am
I thought maybe there could be another shorter way, I already implemented @startdate I was checking for other ways to implement it.
December 9, 2013 at 6:10 am
twin.devil (12/9/2013)
hoseam (12/9/2013)
twin.devil (12/9/2013)
December 9, 2013 at 3:21 am
twin.devil (12/9/2013)
December 9, 2013 at 2:57 am
Actually it was supposed to be SELECT CONVERT(DATETIME,'01' + @dt, 112) as [date], I still get the same error
December 9, 2013 at 1:53 am
A year will always be the current year. A day will always be '01'. I need a Month to start counting, which I get it from PAD, and the last...
December 9, 2013 at 1:27 am
If PAD is 4, then I know the Month is April. Then I need to pull data starting from April of 5 years back, which is 2008.
December 9, 2013 at 12:52 am
Jeff Moden (11/4/2013)
How many rows will this table eventually have and how often will it need to take new inserts or updates?
1. As many as it could
2. Not very often
November 4, 2013 at 11:38 pm
twin.devil (11/4/2013)
Now this is what I need Gauteng => Johannesburg in my hierarchy. how do I achieve that
place a parentID column ... following will be the values in...
November 4, 2013 at 6:40 am
Viewing 15 posts - 106 through 120 (of 152 total)