Viewing 15 posts - 361 through 375 (of 548 total)
Smily,
They're making fun of you (in the good sense of that concept) because your problem sounds like you're from outer space. You need to come down to earth and describe...
July 21, 2007 at 12:55 pm
You need to describe your problem a little better, .e.g. show us what your data looks like. Have you actually tried your query on a SQL Server database? As it...
July 21, 2007 at 12:46 pm
I don't understand Rakesh's problem of wanting to do elementary arithmetic using tables of operators and operands. I mean, why would you want to do that?
And I don't understand Ninja's...
July 21, 2007 at 5:49 am
It could make sense on a server where you frequently create databases and you want to have a log file 'ready to go'. But my first reaction is to be...
July 21, 2007 at 5:36 am
It means the tape or hardware has gone bad.
This is the probable sequence:
1. a BAK file is generated and a CRC code is generated
2. the BAK file is written to...
July 21, 2007 at 5:01 am
Play around with this query. It should get you started. It produces a list of at most 49 family members. All you now need to do now is delete the...
July 20, 2007 at 11:36 pm
I know of no automated tool that does this. Most of the work is dealing with the functions for which you need to find the Oracle equivalent. It does help...
July 20, 2007 at 11:04 pm
This is what I use. In Query Analyzer
sp_addlinkedserver ORALINK,Oracle,MSDAORA,ORCL
go
sp_addlinkedsrvlogin ORALINK,false,null,USER,PASSWORD
go
ORALINK is a name of your choice and will be used by a SQL Server query
Oracle is a keyword and should...
July 20, 2007 at 10:51 pm
This is not a log text file but is part of the so called model database consisting of model.mdf and modellog.ldf which SQL Server uses as a template to create...
July 20, 2007 at 10:35 pm
How exact do you want to become? Why not measure the difference in seconds and see if it is exactly 3600*24 or 86400? But you might want to give a...
July 20, 2007 at 11:17 am
I'm going to cheat by adding a sequence number. Then it becomes fairly straight forward. Without the sequence number I don't see a way.
create table t(
seqno int,
id int,
...
July 20, 2007 at 6:17 am
This is a fortunate side effect of adding a clustered index plus doing an indexdefrag because it has to move around the contents of the data pages to get everything...
July 19, 2007 at 7:29 am
Will,
So you have a 7.5 GB database 99% of which contains blanks. I'm asking myself what was the orignal purpose of char columns? There must have once been a hard...
July 18, 2007 at 10:07 am
Played around with this a bit and must say that it's all very strange. It seems the space cannot be recovered with any kind of standard manipulation in Query Analyzer. Also,...
July 18, 2007 at 7:49 am
This was recently discussed on this forum at
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=324&messageid=374493
July 18, 2007 at 3:23 am
Viewing 15 posts - 361 through 375 (of 548 total)