Viewing 15 posts - 31 through 45 (of 69 total)
Once you start becoming a "lazy dba" and writing code that generates code - you begin the ascension into being efficient.
One absolutely stupid thing that I "picked up" was the...
March 10, 2010 at 6:39 am
I think the reality is, some of us are still better after several beers than many of our coworkers are sober - so as long as you can safely get...
March 8, 2010 at 6:53 am
I agree with Gail. I think the overuse of identities is a problem. Too often I come across data integrity issues caused by the theory of "identity on every...
March 1, 2010 at 6:30 am
sorry - had the message 1/2 typed out and got pulled away. you need to select the columns you want persisted into the XML- as you said
I need to...
February 24, 2010 at 10:09 am
Thanks - that would be an interesting use of QA. Our current structure really does not have QA in the loop when going to production or the build process,...
February 13, 2010 at 6:52 am
This might help, its not particularly difficult to setup - varbinary storage..
http://msdn.microsoft.com/en-us/library/cc278098.aspx
also, open SSMS, F1, search for this :encryption [SQL Server], functions
September 29, 2009 at 10:13 am
Good luck on your project.
Buenos Nochas! (my weak Espanol for good night)
September 28, 2009 at 9:25 pm
Another fun fact : NULL never equals NULL
SELECT * FROM ORDENES WHERE TRABAJO = NULL
The correct way:
SELECT * FROM ORDENES WHERE TRABAJO IS NULL
UPDATE <schema>.ORDENES
SET trabajo = 'wasoncenull'
WHERE trabajo...
September 28, 2009 at 8:02 pm
If you have it installed, your all set.
Connect up and edit the table - whats the issue?
Obviously going from a nullable field to non nullable will require you...
September 28, 2009 at 7:29 pm
Have you installed SSMS and connected to your server?
For a newbie, navigate to the table, right click modify, then check the allow nulls where applicable.
You can download SSMS express and...
September 28, 2009 at 6:53 pm
By in large, most companies I have worked for were very fair with their overtime requirements. You put in the hours when you need to, if you are putting...
August 7, 2009 at 6:51 am
Personally, I typically reduce stress with a 6 pack of really good beer and some good old Chicago Blues.
July 2, 2009 at 7:48 am
Thanks for the input. At this point, its "enforced in the application", but being in the data business I always have that preference to make the model truly express...
June 5, 2009 at 5:25 am
I would keep your order structure and probably create a SCHEDULED_ORDER table and have a job add the order to the table or the application pull in the defaults and...
May 26, 2009 at 8:41 am
Viewing 15 posts - 31 through 45 (of 69 total)