Viewing 15 posts - 6,016 through 6,030 (of 6,102 total)
Glad it was something simple like that!
K. Brian Kelley
September 12, 2001 at 11:01 am
We're running a couple of servers with multiple instances, but that's for Active/Active clustering. Biggest issue is resource usage. As Sean already pointed out, a poorly written query...
September 12, 2001 at 10:57 am
If you know the starting point based on the primary key, you could use SET ROWCOUNT to return back X records. For instance, consider the sample table:
CREATE TABLE TestData...
September 12, 2001 at 10:42 am
To add it back, it depends on your version.
SQL Server 7:
EXEC sp_addextendedproc 'xp_cmdshell', 'xpsql70.dll'
SQL Server 2000:
EXEC sp_addextendedproc 'xp_cmdshell', 'xplog70.dll'
K. Brian Kelley
September 11, 2001 at 7:57 am
We use a VBScript job step to do our dirty work calling the File Scripting Object as Andy has mentioned. There should be some pretty basic examples at
September 11, 2001 at 7:33 am
You said you found out that the server has an E: drive, but the error you're getting sounds like there may not be one there. Can you either verify...
September 11, 2001 at 7:29 am
Yes, my organization has two of us that are DBAs that happen to be data analysts part of the time. We've also got a full time data analyst and...
September 10, 2001 at 1:26 pm
It's always nice when it's a simple thing like that... but getting to the answer is often oh so annoying!
K. Brian Kelley
September 10, 2001 at 9:32 am
It depends on which function you use. If you use IDENT_CURRENT('<table name>'), then it'll return the identity value based on the last insert. If you use SCOPE_IDENTITY(), it'll...
September 10, 2001 at 8:42 am
Where I work we don't use Visual Studio to check in and out our stored procs. What we do is save off any stored procs to files and then...
September 10, 2001 at 8:33 am
I'm not having any problems when I explicitly define someone to have EXECUTE access (whether GRANT or DENY), either. What about when you deny access, even to a sysadmin...
September 10, 2001 at 7:55 am
That's where QA has saved our necks. We have a change control process where the manager wanting the change has to sign off, then it has to be reviewed...
September 6, 2001 at 12:29 pm
We use the DB Maintenance Wizard heavily at my org, and we've not had much in the way of problems. It's like EM or any other tool... in the...
September 6, 2001 at 12:16 pm
I've found this article to be very true. We've got three DBAs where I work. One was solely a production DBA, but he's now doing DTS packages and...
September 4, 2001 at 9:44 am
What we do is only the keep the latest backup on disk on the SQL Server itself. All over backups are moved over and renamed on a server dedicated...
September 4, 2001 at 9:41 am
Viewing 15 posts - 6,016 through 6,030 (of 6,102 total)