Viewing 15 posts - 1,576 through 1,590 (of 2,635 total)
A couple of notes about importing DTS packages in SSMS:
You have to have saved the packages as structured storage files first and you'll need to download and install the...
Greg
May 1, 2007 at 3:07 pm
Please post your SELECT statement.
Thanks,
Greg
Greg
May 1, 2007 at 2:27 pm
Or you could create 7 monthly schedules for the job, each specifying a different day. For example:
schedule 1 - day 1 of every month
schedule 2 - day 2 of every...
Greg
May 1, 2007 at 2:09 pm
I forgot to ask if there is already data in the table that violates the check constraint. If there is, you'll either need to clean it up before adding the...
Greg
May 1, 2007 at 10:31 am
Hmm. AUTO_FIX only works if the user name and login name are identical. If they're not, you'll have to use the UPDATE_ONE argument and specify the user and login that...
Greg
May 1, 2007 at 10:28 am
John,
The place to run T-SQL code is in Query Analyzer, which can be started from Enterprise Manager or from the SQL Server Program group.
You can set ID as the primary...
Greg
May 1, 2007 at 10:09 am
alter table testdate with check
add constraint datecheck check (col1 > col2)
Greg
Greg
May 1, 2007 at 9:54 am
James,
If you work 12 hour days, how long do your DBAs work?!? ![]()
Greg
Greg
May 1, 2007 at 9:31 am
I became a DBA after being a developer for 11 years, though I worked on
a mainframe OLTP system rather than SQL Server. Frankly, I don't know
any DBAs who weren't...
Greg
April 30, 2007 at 4:44 pm
Simon,
You can script out SQL Server logins with their passwords. I've used sp_help_revelogin, as described in this article http://support.microsoft.com/kb/246133/en-us, many times. Next time, eh?
Greg
Greg
April 30, 2007 at 9:28 am
I think that info is stored in master. You can see it in the system table spt_server_info.
As for fixing it, one thing that comes to mind is to backup...
Greg
April 27, 2007 at 10:02 am
Only the person who requested this information can tell you what output is expected. While someone on this forum can probably help you with syntax, you should post what you've...
Greg
April 27, 2007 at 9:35 am
You don't specify if you want to set up built-in SQL Server log shipping (available in Enterprise Edition) or if you're setting up a home grown version.
If you're going the...
Greg
April 27, 2007 at 9:20 am
Have you installed Standard edition on the new server? You'll have to do that before moving anything from the old server.
Greg
Greg
April 26, 2007 at 11:52 am
Viewing 15 posts - 1,576 through 1,590 (of 2,635 total)