Viewing 15 posts - 1 through 15 (of 40 total)
Hi,
I unistalled sql and reinstalled it and it worked. Thank you very much
April 16, 2009 at 3:33 pm
You are right the file doesn't exist. Is it not supposed to copy the file during installation ? Do I have to re-install or I have to copty the file...
April 14, 2009 at 12:21 am
These are the startup parameters in my Sql Server Configuration path
-dC:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\DATA\master.mdf;-eC:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\LOG\ERRORLOG;-lC:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\DATA\mastlog.ldf
Dump Directory - C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\LOG
I'm not sure if this...
April 13, 2009 at 3:28 pm
this is the table
when I select
select @Col1
select @Col2
select @Col3 I get the right values. But when I execute the script it gives me
Msg 207, Level 16,...
November 20, 2008 at 7:54 am
It returns zero rows
November 10, 2008 at 1:19 am
Hi I did a check the non date valuse are zeros ......used isdate to determine non valid dates
--select distinct Firstdisbursementdate
--from tbSales
--where isdate(Firstdisbursementdate) =1
--select distinct Firstdisbursementdate
--from tbSales...
November 7, 2008 at 7:58 am
I tried using
FROM
dbo.tbSales
WHERE Case When ISDATE(Firstdisbursementdate) = 1 AND LEN(Firstdisbursementdate)>= 8
Then CONVERT(DATETIME,Firstdisbursementdate,120)
...
November 6, 2008 at 7:03 am
I have imported the file into the Xml data type and can view it as well.
How do I turn the imported XML Into A Relational Format and insert into my...
September 12, 2008 at 3:54 am
The tables have been reduced in size and I have listed the new tables. Can Bcp work on these ?
September 7, 2008 at 12:16 pm
They are two separate databases are on seperate servers and drives. So I have Server 1 as the source and Server 2 as the reporting server.
August 29, 2008 at 11:49 pm
I've attached the the spreadsheet with the tables I want to bcp out
August 29, 2008 at 3:34 pm
I know its wrong because when I look at my output and try and work it out manually its wrong. Thats why I'm wondering if my query is giving me...
August 13, 2008 at 12:52 am
USE EDW_Stage
DECLARE @Col1 VARCHAR(10),@Col2 VARCHAR(10),@Col3 VARCHAR(10)
SET @Col1 = (SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS
...
August 8, 2008 at 3:15 am
ENDED UP RE-WRITING IT
SET @Records = (SELECT COUNT(*) FROM EDW_STAGE..tbComm_3Months_Ago)
August 7, 2008 at 10:12 am
Viewing 15 posts - 1 through 15 (of 40 total)