Viewing 15 posts - 2,761 through 2,775 (of 7,429 total)
It is generally possible barring differences. When you have a single MDF and no LDF then you use
sp_attach_single_file_db
but you stated you tried that already. Whats was the error you got...
June 30, 2003 at 4:17 am
quote:
PS: Can I use variable of TABLE data type as Output parameter. If yes, how? Examples please.
June 30, 2003 at 3:50 am
Take a look here for at a forum that asked the same
http://dbforums.com/t770846.html
and take a look here
http://www2.bus.orst.edu/faculty/brownc/lectures/db_tutor/database_languages.htm
and here
http://scis.acast.nova.edu/~jclevin/COURSE/DMS/database.html
Edited by - antares686 on 06/27/2003 05:07:21 AM
June 27, 2003 at 4:53 am
I suggest speaking with the vendors as to the loseless size they can achive. Also, if this is for compressing SQL Server backups then look at SQLZip (Lempel-Ziv compression) or...
June 27, 2003 at 4:19 am
Replication is enabled for specific databases and should not effect how the others operate. However, depending on push or pull an where the distributor is they can chnge the server...
June 27, 2003 at 4:05 am
You can use a temp table to retive the results into and use there (but can only return one resultset). Or OUTPUT variables if a fixed number of items return....
June 27, 2003 at 4:01 am
We test about once a month normally. Change the tapes out of cycle once every two years unless otherwise flaky. Have two backup sets (one local, one tape). And I...
June 27, 2003 at 3:52 am
Something like this developed into a function might do the trick.
Ex.
DECLARE @var varchar(40)
declare @tempVar varchar(40)
set @var = '48501239955.486'
set @tempVar = rtrim(ltrim(reverse(@var)))
select @var = reverse(left(@tempVar,charindex('.',@tempVar))), @tempVar =...
June 26, 2003 at 6:11 pm
Take a look here at this KB article http://support.microsoft.com/default.aspx?scid=kb;en-us;224071 it talks about moving databases. Moving logs are done the same way except you list the original position of the data...
June 26, 2003 at 4:01 am
Date time as expressed by BOL
quote:
Values with the datetime data type are stored internally by Microsoft SQL Server as two 4-byte integers....
June 26, 2003 at 3:58 am
Again check the Windows Event Viewer logs.
For example I get the same message you see when the tape needs to be cleaned. Checking in the Event VIewer logs give me...
June 26, 2003 at 3:50 am
Unless you createed and install script and script out to a restore there is no way. Is this going to be redistributable? If so then look into WISE, MS Installer,...
June 26, 2003 at 3:44 am
Because I am stepping in here now I would point it this way.
1) If the number of items will always be fixed or rarely add to then use a CONSTRAINT...
June 25, 2003 at 3:26 pm
Do you have the original DB or a backup somewhere? If so try installing to another server and do an import using the IMPORT/EXPORT wizard. Sounds like something in your...
June 25, 2003 at 11:20 am
Viewing 15 posts - 2,761 through 2,775 (of 7,429 total)