Viewing 15 posts - 1 through 15 (of 24 total)
For us, SSMS and SSDT are different tools that serve different purposes. We use both, all day, every day.
We use SSMS for system administration and general server management. SSMS also...
June 17, 2019 at 11:29 am
Eric M Russell (11/22/2016)
November 22, 2016 at 8:24 am
Grant Fritchey (11/21/2016)
November 22, 2016 at 8:00 am
Lowell (11/21/2016)
yes the views shread the XML, but once written...
November 22, 2016 at 7:56 am
Sean, that's another great idea. I tried it this morning, and actually have everything modularized and tidy.
My view performs the necessary unions, and I only need to add ONE LINE...
August 2, 2013 at 9:25 am
Thanks guys, all good points.
I think the kicker here is that a user may have access to departments and/or offices and/or regions. It's the "ORs" that are killing the query.
I...
August 1, 2013 at 11:43 am
More great ideas... thank you...
Carol... great point about periodic/quarterly/year-end processes. This is something that has bitten me in the past, and certainly something I will need to clarify!
After the first...
April 8, 2011 at 3:28 pm
Thank you Wayne, that is helpful and will be part of my toolkit 🙂 That covers the database system...
I was also hoping to hear basic ideas/approaches on the process...
April 4, 2011 at 10:10 am
This is good stuff... exactly what I need to troubleshoot a strange unique key violation with a MERGE.
Question though- why is the IDENTITY column of the type an INT, while...
November 4, 2010 at 6:33 am
Ah, happycat, that makes perfect sense. Looks like the object_id's for all my other tables were in sync between the two databases - but the object_id for the one table...
May 6, 2010 at 7:08 am
The plot thickens, a little.
I created a view on the server:
[font="Courier New"]CREATE VIEW MyView AS
SELECT * FROM sys.columns WHERE object_name(object_id) = 'MyTableName'
GO[/font]
If I then select from this view via...
May 6, 2010 at 6:07 am
Testing? We have end users available to do that. 😀
Actually, we do have a test team that will be hammering on the system - full regression testing for this release,...
May 5, 2010 at 7:28 am
Thank you for the feedback. I ended up writing an SMO app in c# that scripts out affected procs, modifies the param datatypes according to specs I have stored in...
May 4, 2010 at 4:20 pm
ALZDBA - This db is primarily used by a web application, and I work close with the front-end team. They will definitely be key players in this project. The DRI...
February 10, 2010 at 6:58 am
Thanks for the tips Emily- fortunately it looks like most of the naming is consistent, though there are a few exceptions.
Grant, I think "go slow" is great advice. Parts of...
February 10, 2010 at 6:53 am
Viewing 15 posts - 1 through 15 (of 24 total)