Viewing 15 posts - 901 through 915 (of 9,641 total)
I just enabled CDC on a test database to see how it creates the CDC tables. The CDC tables are created as system tables which are ignored by the...
July 11, 2014 at 8:28 am
Assuming the tables are in the same database I think you could do a query like this:
SELECT
NA.Name1,
NA.Name2,
NA.Name3,
...
July 11, 2014 at 8:09 am
Koen Verbeeck (7/10/2014)
So I tried to endorse Jeff on LinkedIn for BCP, but somehow it doesn't work.I saw Jeff was endorsed 9 times for SSIS. That was cruel. 😀
I don't...
July 10, 2014 at 7:38 am
I have BIDSHelper 1.6.5.0 installed in VS 2010. Same version of VS as you have. Wish I could tell you more.
July 9, 2014 at 11:18 am
If you give write access to a subscriber changes made on the subscriber never make it to the publisher and it also will put replication out of sync. ...
July 9, 2014 at 11:12 am
When running the report in BIDS all the work (other than the database work) is being done locally on your PC. When running in IE from a report server the...
July 9, 2014 at 11:10 am
What do you mean by a header row? By definition XML doesn't have rows, it has elements and attributes.
July 9, 2014 at 11:07 am
There are several products out there. I'm in the process of trying to find out what we want to audit and then picking the tool that does what we need...
July 9, 2014 at 11:04 am
You need to provide more information. What is the schema of the table(s)? What are the queries you are running? What defines fast?
July 9, 2014 at 10:53 am
This might work:
SELECT
OBJECT_NAME(P.object_id) AS tableName,
SUM(P.rows),
DDIUS.last_user_update,
DDIUS.last_system_update
FROM
sys.dm_db_index_usage_stats AS DDIUS
...
July 9, 2014 at 10:51 am
Sounds like you want to put a query in a SQL Agent Job which will allow you to schedule the execution for whatever frequency you need.
July 9, 2014 at 10:41 am
I've never done this, but I'd try putting setting the first object in my report to have the page break property set to before.
July 9, 2014 at 10:34 am
Matteo,
What version of SSIS are you using? This article was written a long time ago and the code even longer using SSIS 2005. There may be changes somewhere...
July 9, 2014 at 10:30 am
mortonsoft (7/9/2014)
July 9, 2014 at 7:47 am
hmbtx (7/8/2014)
What do you mean by "SSC questions"?
Questions posted on SQLServerCentral
Could you provide me with some idea as to what the DBA would do during the day and why they...
July 8, 2014 at 11:55 am
Viewing 15 posts - 901 through 915 (of 9,641 total)