Viewing 15 posts - 5,536 through 5,550 (of 7,502 total)
Find out if your sqlserver service account has the needed privileges and the mapped drive for "T:\"
Try using UNC i.e. \\yourserver\yourshare\anotherpath\yourfile.ext
in stead of "t:\..."
With SQL2005 osql has been replaced...
October 19, 2007 at 6:34 am
Indeed, that's the first thing we did, specify a max server memory for each instance.
That, along with our implementation of Windows System Resource Manager, makes it all more manageble.
October 19, 2007 at 4:59 am
Marcus Farrugia (10/18/2007)
case when column1 =...
October 19, 2007 at 12:23 am
We have a 16Gb ram x64 server with a 24Gb pagefile. And we will change that to 4Gb pagefile asap because of this.
During a systems test, the sqlserver instance grabbed...
October 18, 2007 at 1:02 am
or in seconds
SELECT substring(convert(char(23),dateadd(ss,A.myavg,DATEADD(dd, DATEDIFF(dd,0,@x), 0)),121),11,8) as myavg
from (
SELECT avg(datediff(ss, DATEADD(dd, DATEDIFF(dd,0,@x), 0), @x)) as myavg
from whatever
)
A
for the moment I have no SSMS, so this tsql is...
October 17, 2007 at 1:14 pm
Maybe you'll be better off selecting timeparts from your datetime and averaging those numbers.
Have a look at http://www.sqlservercentral.com/articles/Advanced+Querying/workingwithdatetime/1634/
October 17, 2007 at 1:03 pm
maybe just a thought :
Maybe you may want to take a look at log-shipping or another kind of replication ?
Check SSC and BOL 😎
October 16, 2007 at 8:08 am
yep, a cte may be what you're looking for.
maybe even the (free) "Microsoft SQL Server Migration Assistant for Oracle" may help you out :w00t:
October 16, 2007 at 7:46 am
and if you have doubts, just put it between brackets.
SELECT @myvariable,@myvariable *(-1)
October 16, 2007 at 7:39 am
- [90 GB] : a normal xcopy would also need quit some time to copy it.
- [No we copy to one backup server and from there we restore on the...
October 16, 2007 at 7:14 am
- how many filegroups / files in the db ?
- how big is the backupfile(s)
- do you copy the backupfile(s) to local before the restore ?
- what kind of disk...
October 16, 2007 at 6:50 am
Yes you can, but will it give you the result you expect ?
select top 1 field2
from yourtable
where field2 is not null
order by id -- if id is...
October 16, 2007 at 3:22 am
does he also know what composite material the engine of his care is made of ? :hehe:
Do I know what exotic language is used for the SQL-engine ? No
Do I...
October 16, 2007 at 3:04 am
1) keep in mind there is no order in a table's rows.
If you want results handled in a certain order, you should use an order by clause in your...
October 16, 2007 at 2:49 am
Viewing 15 posts - 5,536 through 5,550 (of 7,502 total)