Viewing 15 posts - 391 through 405 (of 460 total)
The idea was that the average typist could type more code per minute using lowercase and underscore formatting than when using Pascal or Camel case for user-defined entities
With all...
October 7, 2010 at 6:29 am
Hugo, thanks VERY much for your script and, even more, your explanation. Simple and to the point, thorough.
Posts like this one are why I sometimes spend more time than...
October 5, 2010 at 7:20 am
Hmmmmmmm...... did you search this site? When I looked up my script to do this, the first thing in it was this comment:
-- FROM http://www.sqlservercentral.com/Forums/Topic853747-146-1.aspx
😉
Rich
September 28, 2010 at 5:45 pm
Nadrek, good ideas.
I'd add *.cab files to your list: you can always re-load them if you move them off to a removable disk.
Rich
September 21, 2010 at 8:44 am
Here's a quick and dirty VB Script I munged together from the interwebs to pull out Image data from a SQL table and write the stored PDF files to disk....
September 20, 2010 at 12:54 pm
hallhome (9/15/2010)
September 20, 2010 at 9:46 am
Mike Hinds (9/9/2010)
What we finally did was:[font="Courier"]EXEC sp_msForEachTable 'DENY SELECT ON ? TO [TheUser]'
GO
GRANT SELECT ON [dbo].[AllowedTable] TO [TheUser]
GO[/font]
For anyone considering this, sp_msForEachTable is "non-supported".
But what happens when you add...
September 10, 2010 at 8:38 am
GilaMonster (9/8/2010)
yessen (9/8/2010)
September 9, 2010 at 6:26 am
I just spent 2 weeks(!!) cleaning up a lookup table in a third-party ERP application that allowed (and still allows, but for the now-rescinded, application level user permissions) free-form entry...
August 31, 2010 at 6:16 pm
You're welcome! Nice to know it helped, and good to hear back that I wasn't typing into the ether!
This is an incredibly useful site, full of knowledgeable articles, thoughtful...
August 29, 2010 at 7:59 pm
I often use something along the lines of this to read in Excel data. The IMEX=1 trick will save you a lot of grief from SQL incorrectly "guessing" what...
August 27, 2010 at 7:21 am
I'm pretty new to RS, but I will suggest one benefit I've found to putting some formatting in SQL and not in RS: maintainability.
I find it much easier and more...
August 25, 2010 at 9:53 am
I've run into a similar problem importing data from Excel. There's a connection string parameter you can add to prevent SQL from "guessing" how to import the data:
http://microsoftdw.blogspot.com/2005/11/excel-data-not-coming-into-ssis-right.html
Maybe there's...
August 25, 2010 at 9:20 am
However, I set it to delete all the shipped log files that are older than 7 days.
So, lets say something bad happens, I tell my SQL Management Studio to restore...
August 15, 2010 at 9:37 am
wilson.higdon (8/4/2010)
rmechaber (7/22/2010)
August 5, 2010 at 6:15 am
Viewing 15 posts - 391 through 405 (of 460 total)