Viewing 15 posts - 6,451 through 6,465 (of 7,505 total)
use UNC-naming :
XCOPY C:\MSSQL\BACKUP\*.* \\myserver.mydomain.com\bu2tapeDay$\mysqlservername\Database\ /c /s /k /h /v /y
------ yourfileserver -----\-- share --\-subfolder-\--subfolder--
This is the same stuff you enter when mapping the drive in explorer !
November 24, 2005 at 12:16 am
first of all : don't mess with master unless you know what you are doing ![]()
master keeps the inventory of databases, locations, users,....
It is...
November 23, 2005 at 4:17 am
Can you check these settings using REGEDIT
![]()
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer\[yourinstancename]\SuperSocketNetLib\Tcp]
and
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer\[yourinstancename]]
November 23, 2005 at 4:12 am
can you post you job's DDL ? (full)
btw don't use a domainadmin account to run your sqlserver ! ![]()
Keep the guideline...
November 16, 2005 at 7:21 am
first check that your sqlserver agent service account has the needed rights to you networkdrive.
I use this doscmd to do the job (without problems)
XCOPY C:\MSSQL\BACKUP\*.* \\myserver.mydomain.com\bu2tapeDay$\mysqlservername\Database\ /c /s /k...
November 16, 2005 at 2:49 am
just my 2ct
how about ...
Select inv.*
FROM dbo.Inventory inv
where not exists ( select *
FROM dbo.InvHist IH
where IH.InvID = inv.InvID)
![]()
November 15, 2005 at 6:08 am
These are some items I've added to the great doc :
(formatting is not what it should be in html
)
November 14, 2005 at 4:21 am
just my 2ct to add to Daniel's reply :
another downside with DTS it when there are schema-changes ! ![]()
IMO for this prod to...
November 9, 2005 at 3:09 am
in sql2000 that would not be needed because your image col is just a pointer in your table. That pointer points to a blob address which is like a varchar...
November 8, 2005 at 2:41 pm
From Books online :
Returns primary key information for a single table in the current environment.
sp_pkeys [ @table_name = ] 'name'
[ , [ @table_owner = ] 'owner' ]
[...
November 8, 2005 at 3:48 am
There is no "out of the box" data-encryption within sqlserver 2000.
you can however encrypt you code (e.g. create procedure , create view, ...) using the with encryption keyword.
Check Books online...
November 8, 2005 at 3:40 am
You may want to run sp_updatestats and dbcc updateusage() before you collect and interprete these statistics data ! ![]()
(Check books online !)
Plan it in...
November 8, 2005 at 3:32 am
indeed, once you are sa, you are a "god" for sqlserver.
You cannot deny sa anything !
If you remove builti\administrators, make sure your sqlserver (and agent) service account is a local...
November 7, 2005 at 1:58 am
IMO your user has SA-authority ! ![]()
![]()
The only way a non-sysadm user gets rights to a db...
November 7, 2005 at 12:52 am
Another downside of sp_rename for stored procs is that it does not alter the create-text !!!!
So when you script your db using SQLDMO or other stuff to readout the...
November 4, 2005 at 6:59 am
Viewing 15 posts - 6,451 through 6,465 (of 7,505 total)