Viewing 10 posts - 1 through 10 (of 10 total)
Brilliant! Thanks.
Did you use mono-space fonts then for the detail lines? If not, what method did you use to determine where an entry would wrap?
January 7, 2009 at 9:17 am
I'm good - thanks for the info and the chuckle.
December 4, 2008 at 6:09 am
Yikes - Dip, Dive, Duck and Dodge! Doesn't pay to leave the forums for a few hours.
Here's the scenario - I'm taking an existing procedure that historically examined each...
December 3, 2008 at 11:49 am
That's how I was going to approach it, just wanted to see if there were other options. Thanks for the feedback!
December 2, 2008 at 3:26 pm
If you need to see "into the database", you can create a snapshot of the mirror. That way you can query the data to prove it's in a state...
September 24, 2008 at 4:36 pm
Another option is to change the keyboard scheme to SQL 2000. Tools, Options, Environment, Keyboard - top of the dialog. I'd grown so accustomed to the shortcuts in...
September 22, 2008 at 8:22 pm
Try changing the parameter name
From
comm.Parameters.Add("newscat", SqlDbType.Int);
To
comm.Parameters.Add("@newscat", SqlDbType.Int);
To verify, if you have a development server with admin rights, you can perform a trace to examine the calls as server receives them.
September 13, 2008 at 8:22 pm
Try sp_refreshview.
sp_refreshview [ @viewname = ] 'viewname'
From BOL :
Updates the metadata for the specified non-schemabound view. Persistent metadata for a view can become outdated because...
August 20, 2008 at 6:39 pm
For simplicity, try the EXCEPT operator
SELECT * FROM Table_A
EXCEPT
SELECT * FROM Table_B
July 27, 2008 at 9:46 pm
That was my first guess. Can anyone confirm?
August 21, 2006 at 6:16 pm
Viewing 10 posts - 1 through 10 (of 10 total)