Viewing 15 posts - 1 through 15 (of 16 total)
I use CTE's to accomplish these type of delete and or archive tasks.
For example:
WITH AuditRecordsToArchiveTop10000 AS (
SELECT TOP 10000 *
...
March 6, 2012 at 5:39 pm
The decryption process with gpg and ssis is on this site:
http://codingstuffs.blogspot.com/2007/03/pgp-inside-ssis-package.html
October 28, 2008 at 10:05 pm
--recipient "YOUR-NAME" --output "C:\A_20081023.zip.gpg"
--encrypt "C:\A_20081023.zip"
If using GPG remember to look at the syntax here:
October 23, 2008 at 10:36 pm
Look at this site:
http://codingstuffs.blogspot.com/2007/03/pgp-inside-ssis-package.html
September 11, 2008 at 4:52 pm
I just posted the article you stated sorry.
October 24, 2004 at 3:58 am
Take a look at this article it should answer all of your questions
October 24, 2004 at 3:54 am
Here's the MS KB for more info if you need it.
http://support.microsoft.com/default.aspx?scid=kb;EN-US;314546
October 24, 2004 at 3:52 am
Your attach statement should look something like this (substitute the drive, directory, and filename for your drive, directory and filename):
In Query analyzer:
use master
go
sp_attach_db 'mydb','E:\Sqldata\mydb.mdf','E:\Sqldata\mydb.ldf'
go
You can also use enterprise manager and...
October 23, 2004 at 9:37 pm
SQL Server archives your errorlogs every time you stop/start SQL server or when you issue the sp_cycle_errorlog command. Within these errorlogs (by default there are 6) you will see an...
October 23, 2004 at 5:38 am
Take a look at this article:
http://support.microsoft.com/default.aspx?scid=kb;en-us;304101
October 23, 2004 at 4:48 am
Look at these articles:
http://support.microsoft.com/default.aspx?scid=kb;EN-US;187370
October 23, 2004 at 4:34 am
Create a job with the SQL Server Agent. See BOL for more info on how to create jobs.
October 23, 2004 at 4:15 am
It's known to happen. You may want to try this to get them back:
1. At the command prompt, type in the following: unlodctr.exe MSSQLServer
2. Then...
October 22, 2004 at 1:50 am
Take a look at the sp_fulltext_catalog sproc in BOL. This should answer your question.
October 22, 2004 at 12:46 am
Viewing 15 posts - 1 through 15 (of 16 total)