Viewing 15 posts - 23,701 through 23,715 (of 26,490 total)
Shailesh Chaudhary (11/17/2008)
Citation(CitationID, Date , ISReportTaken) and ReportExport(CitationID, ApplicationID, ISExported)
I want to insert One column records from Citation table to reportExport with ApplicationID =2 and ISExported =1...
November 17, 2008 at 2:19 pm
Run this query and see what you find:
select * from msdb.dbo.backupset where database_name = 'DBSwsam' -- use the appropriate DBName here
November 17, 2008 at 2:10 pm
I also reread your orinial post, and have a change.
Select all records with an end date of yesterday:
select
*
from
dbo.myTable
where
EndDt...
November 17, 2008 at 2:04 pm
Looks like you are trying to backup to a mapped drive. That may be the problem. Can you change the destination of the backup file to use a...
November 17, 2008 at 1:58 pm
mpdillon (11/17/2008)
November 17, 2008 at 1:53 pm
If you have the space available on your server, you could restore it to a test database (using a different name, of course), being sure to move where the physical...
November 17, 2008 at 1:50 pm
Quinn (11/17/2008)
YesUse the data in the format provided.
Q
You are still missing the point. Is the DATA correct? That is what I was asking when I asked for the...
November 17, 2008 at 1:40 pm
Multiple inserts for what? Can you write:
create table #MyTest (
TestID int,
TestData varchar(10)
);
insert into #MyTest (TestID, TestData)
select 1, 'A';
insert into #MyTest (TestID,...
November 17, 2008 at 1:37 pm
Quinn (11/17/2008)
I need to summarize acres by ageclass.Thanks again.
Q
I know WHAT you want, but I was asking what should the results BE based on the sample data provided. You...
November 17, 2008 at 1:26 pm
Here is what I got, plus a slight mod towhat you provided.
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[timberstands](
[acres] [smallint] NULL,
...
November 17, 2008 at 1:24 pm
Based on the sample data, what is your expected results?
November 17, 2008 at 1:17 pm
Okay. I have no idea what you are trying to do or accomplish. The questions you are asking aren't making much sense, as they have little substance and...
November 17, 2008 at 1:12 pm
Glad to see you solved the problem.
November 17, 2008 at 1:07 pm
Slight correction. We are using SmartFTP, not CoreFTP. Obiously my memory was shaky on this, and it took quite a bit of time before I could connect to...
November 17, 2008 at 12:46 pm
It depends.
This is something you will have to determine based on your application and performance requirements, as well as the size of each of the tables. For very small...
November 17, 2008 at 12:42 pm
Viewing 15 posts - 23,701 through 23,715 (of 26,490 total)