Viewing 15 posts - 6,226 through 6,240 (of 15,381 total)
Instead of detaching and moving files I would recommend creating a backup and then restoring that backup on your other server.
November 20, 2013 at 3:24 pm
nutty (11/20/2013)
Thanks for this.I am working in pl/sql and it says 'LEFT' as an invalid identifier
I don't speak Oracle. This a sql server site so everything around here is...
November 20, 2013 at 3:12 pm
shravan.gavva (11/20/2013)
I tried to use try-catchit says i have a syntax error...doesnt matter how many times I checked..
Can you post what you tried?
I have hardly 129 datatypes.
YIKES!!! 129...
November 20, 2013 at 2:52 pm
Oops I didn't see Alan's fine post when I posted my last response. It seems very similar to mine. The main difference is the one I posted will return 2...
November 20, 2013 at 2:43 pm
nutty (11/20/2013)
Apologies for not following the format. I will keep this in mind next time.
My desired output is
Parent_Count | Child_count
2 ...
November 20, 2013 at 2:42 pm
shravan.gavva (11/20/2013)
(
data_value varchar (50),
sql_data_type varchar (50)
)
insert into table1(data_value,sql_data_type)
values ('11/02/2013', 'DATE')
insert into table1(data_value,sql_data_type)
values ('', 'DATE')
insert into table1(data_value,sql_data_type)
values (11.3, 'decimal')
insert into table1(data_value,sql_data_type)
values ('not assigned', 'DATE')
insert into table1(data_value,sql_data_type)
values (null, 'varchar')
insert into...
November 20, 2013 at 2:36 pm
shravan.gavva (11/20/2013)
I could not change the datatype of data_value
Then you are going to have a long uphill battle validating all your datatypes. This is truly a nightmare.
Are you planning on...
November 20, 2013 at 2:32 pm
Hi and welcome to the forums. Since you are pretty new around here you have probably not seen the best practices article about how to post questions. You can find...
November 20, 2013 at 2:05 pm
shravan.gavva (11/20/2013)
I have two columns in the same table
One is data_value (varchar) and the other is sql_data_type (varchar). Data_value holds info like dates, decimals, etc..
sql_data_type holds info about what type...
November 20, 2013 at 1:58 pm
ritika rishi (11/20/2013)
Is there...
November 20, 2013 at 8:56 am
waxb18 (11/20/2013)
Im ever so sorry guys, i didnt see the 2nd pageThe best way to show the result would be to see the spreadsheet attached
OK this is my last attempt...
November 20, 2013 at 8:54 am
Duplicate post. Direct replies here. http://www.sqlservercentral.com/Forums/Topic1515817-391-1.aspx
November 20, 2013 at 7:40 am
I agree with Lynn about showing us what you want.
There is absolutely no need to resort to looping for this type of thing. We can help you find a solution...
November 20, 2013 at 7:27 am
Teee (11/20/2013)
Thanks for your response, I've managed to come up with a solution to split the dates:
-- Get comparison dates
Create Table #TempComparison(dteDateComparison varchar(36), bitProcessed bit)
IF (@dteDateComparison <> '')
Insert Into...
November 20, 2013 at 7:11 am
Jeff Moden (11/19/2013)
Sean Lange (11/19/2013)
Save yourself months of anguish and use the hierarchyid datatype. This is essentially what you are trying to recreate on your own.
BWAAA-HAAAA!!!! Save yourself continuous anguish...
November 19, 2013 at 1:59 pm
Viewing 15 posts - 6,226 through 6,240 (of 15,381 total)