Viewing 15 posts - 24,661 through 24,675 (of 26,490 total)
You'd be really amazed what could be done if you provided the DDL of the tables, sample data, expected results based on the sample data. The more information provided,...
June 9, 2008 at 4:37 pm
Moving the files is like...just copying the physical files ,,,right ??
-- Yes; but only in THIS PARTICULAR CASE.
And how to rename ....is it the same as right click the...
June 9, 2008 at 1:51 pm
If the database is using the Full RecoverY model, you need to run a transaction log backup to remove log records, thereby allowing you to then shrink the transaction log...
June 9, 2008 at 12:42 pm
First problem with your query is mixing join styles. You use the ANSI Standard for the LEFT OUTER JOIN, but keep the old style join for your INNER JOIN....
June 9, 2008 at 12:33 pm
I am going to give you the standard answer, "It Depends". Some will tell you to move them to their own set of drives, others won't. On our...
June 9, 2008 at 12:12 pm
If you are going to move the files from I to M and J to N, delete I and J, then rename M to I and N to J, the...
June 9, 2008 at 12:07 pm
I'd check the attributes on your E-Drive and the sub-directories. Sounds like compression is turned on at the file-system level.
😎
June 9, 2008 at 11:59 am
I'd have to agree with Jeff. I did take your code, and after some adjustments (my system at home is case sensitive) I have the following working, except I...
June 7, 2008 at 3:01 pm
A couple of things. One, is the interval time for the averaging fixed (ie 6:00 - 6:29, 6:30 - 6:59) or is it dynamic (one time it may be...
June 7, 2008 at 7:38 am
In addition to what Jeff said, it would also be nice to see what you have already tried to solve this problem. We don't want to start down the...
June 6, 2008 at 6:26 pm
use [YourDatabase]
go
select count(*) from sys.tables
go
June 6, 2008 at 2:53 pm
Looks like Jack beat me, but here is my code anyways.
declare @SQLCmd nvarchar(4000),
@TableNameOrig sysname,
@TableNameCopy...
June 6, 2008 at 1:40 pm
tim.pinder (6/6/2008)
Lynn Pettis (6/6/2008)
You also stated that [arrival date] and [arrival time] are both datetime fields, what does this data look like (sample values would be nice to see)?😎
I posted...
June 6, 2008 at 11:06 am
K. Brian Kelley (6/6/2008)
blandry (6/6/2008)
June 6, 2008 at 10:56 am
You also stated that [arrival date] and [arrival time] are both datetime fields, what does this data look like (sample values would be nice to see)?
😎
June 6, 2008 at 7:54 am
Viewing 15 posts - 24,661 through 24,675 (of 26,490 total)