Viewing 15 posts - 166 through 180 (of 253 total)
Here's how I'd do what I think you're trying to do:
-- Create Logins for the SQL Server and SQL Agent services. (Could either be be one account for both, or separate...
February 23, 2005 at 10:25 am
Took a while to find it again, but in BOL, under contents, look under:
Creating and Maintaining Databases
Databases
Database Design Considerations
Estimating the Size of a Database
...that and the three entries...
February 23, 2005 at 8:05 am
Would the function ISNUMERIC() help in filtering numeric data from character data? You could use it in a CASE statement:
CASE
when ISNUMERIC(value) then <numeric value processing>
else <character value...
February 17, 2005 at 4:36 pm
The solution was to install proper error handling. Detect the timeout condition, issue rollbacks, close the DTC transaction properly. (This, needless to say, was not the fix used; no, the...
February 9, 2005 at 8:25 pm
I hit something like this once. It's complex, and may not be what you're dealing with, but sounds very similar. I do not use entirely technical terms below; this is...
February 9, 2005 at 11:37 am
And that goes double for xp_schedulersignal!
Philip
February 1, 2005 at 4:26 pm
I'm looking into the restriction of access rights (via "guest" and "public") in the master database, and have a question. In the list of procedures to remove access to, you list...
February 1, 2005 at 4:21 pm
One way to check if a database file (master or otherwise) is in use: while SQL Server is running and the database is attached, try and rename the file. (Windows...
January 31, 2005 at 3:57 pm
Alternatively:
IF OBJECT_ID('tempdb..##stuff') is not null
DROP TABLE ##stuff
Avoids direct access to system tables. Supplemental checks for "is ##stuff actually a table" might be advisable. Also, while I haven't...
January 27, 2005 at 3:01 pm
Quickest way: run sp_detach on the database, copy the files to the new machine, then use sp_attach on the new box
Next-quickest: Create a complete backup, then restore the backup on...
January 26, 2005 at 11:33 am
It's got to be at least as tough as mom says.
- If I can create a backup of your database, and create it on a volume I can access, and restore...
January 25, 2005 at 2:54 pm
SQL Server hitting the network for NT account verification has got to be a factor in here somewhere. I am by no means conversant with the subject, but if you're granting...
January 25, 2005 at 9:38 am
I attended a few user groups sessions (in Chicago) with the idea of getting information and ideas--maybe getting answers to problems I was working, maybe giving answers to others problems....
January 24, 2005 at 4:25 pm
Alternatively, you can mess with job ownership. If a job is owned by a specific SQL login (NT groups are not eligible), that login can start, stop, review, etc. that...
January 18, 2005 at 8:22 am
Both Remi and Mark suggest a course of action similar to the one I implemented at my last position: tight control over code produced by the development team. [Note that...
January 18, 2005 at 8:13 am
Viewing 15 posts - 166 through 180 (of 253 total)