Viewing 15 posts - 1 through 15 (of 15 total)
Questions from a newbie that's only been scripting queries for 2+ years:
You have it set up for deltas that are in table 2 that are not in table 1, to...
August 8, 2013 at 10:41 am
Are there any examples out there that can export data from a query into a text file using BIML? I am searching the interweb and cannot find any specifics...
August 8, 2013 at 8:49 am
Cool. I thought by looking at the Stairway series that this feature was added only to 2012.
August 8, 2013 at 7:57 am
Unfortunately, we only have 2008. I see the Stairway series for BIMS in 2012. Unless you can do something similar in 2008 that I do not know exists....
August 8, 2013 at 7:30 am
To add more to this. I heard that the bcp is kluged. It works fast, but it is ancient technology. So I was wondering if there was...
August 8, 2013 at 7:13 am
The temp table had 114 rows, why would it stop at 54?
August 2, 2013 at 11:02 am
I tried creating a table to do the same thing, but got the same error.
I need to populate the table, and then view the results.
Any help is appreciated.
Thanks,
Joe
December 6, 2012 at 5:47 am
Here it is. Thanks for helping:
IF object_id('tempdb..#tmptbl1') Is not null
drop table #tmptbl1
IF object_id('tempdb..#tmptbl2') Is not null
drop table #tmptbl2
-- load yes information into temp tbl
select ltrim(rtrim(table_name))as table_name,
case when AO...
November 19, 2012 at 11:33 am
So if this is the case, is there any way around the dynamic SQL? Thanks.
November 19, 2012 at 7:15 am
Actually, i cannot provide the code. Let me see what I can do with a do while loop.
Thanks,
November 15, 2012 at 8:40 am
In my select @SQL statement, I needed to put extra single quotes around the variable name. In this case: '''+@tablename+'''
Now my problem is I cannot select from the...
November 15, 2012 at 8:02 am
Figured it out. Thanks for your help.
November 15, 2012 at 7:02 am
I guess more information on what I'm trying to get would help.
The table we have actually has the counts, but we have multiple sources. The cursor gets the table...
November 15, 2012 at 6:50 am
This may help. What we do is a daily ETL and the tables created. Then we create a table where we send the table name and the record...
November 15, 2012 at 6:45 am
Viewing 15 posts - 1 through 15 (of 15 total)