Viewing 15 posts - 796 through 810 (of 2,486 total)
"But now I cannot connect with my web pages. I have so much SQL written into my VBScript code, I dont know if it is good with SQL Server or...
September 15, 2005 at 5:43 pm
" have not been able to preserve the Primary and Foreign Key relationships between the tables in the Target Access Database."
Are you referring to items like auto numbers, etc... This can...
September 15, 2005 at 5:42 pm
Personally I prefer DTSBackup2000 http://www.sqldts.com/default.aspx?242
But, like everything with SQL there are many ways. Try this for transferring directly from the table http://www.sqldts.com/default.aspx?204
Always be aware that if the package...
September 15, 2005 at 5:32 pm
Rudy, That's probably what I'm thinking of then.
Homebrew01, Honestly, I wouldn't run this at all. There are plenty of easier ways to get this information is a much more "usable"...
September 15, 2005 at 4:26 pm
First one for sushila...
First, God created man. Then he had a better idea
A couple from Monty Python, always a source of enjoyment
"And now for something completely different..."
"I don't wanna talk...
September 15, 2005 at 6:45 am
Actually, if the guys didn't run such a good site we wouldn't be here in the first place.
So I guess the onus is back on them
September 15, 2005 at 5:48 am
Yes you can query the system tables, but I was talking about a single command.
It might have been in an earlier version of SQL Server. It showed the basic...
September 15, 2005 at 2:51 am
So will this be a CMS type system along the lines of http://www.dotnetnuke.com, or an application/code generation tool along the lines of CodeSmith, ASPRunner.Net, ASPMaker.Net, etc...
September 14, 2005 at 8:27 pm
So just take the field out of the select, or concatenate it with the name, or use a case, or ...
September 14, 2005 at 8:15 pm
You can achieve this using a derived table.
select t1.id , t1.name , t2.childcount from mytable as t1 left join ( select parentid as id ,...
September 14, 2005 at 7:45 pm
Save yourself the problems of working out what is compatible with what and worrying about MS Exchange connectivity and security.
Install xp_smtp_sendmail from http://www.sqldev.net there are versions of the DLL...
September 14, 2005 at 4:59 pm
Sorry, I help people reach their goals, I don't do their work for them.
If you can't take the information I've provided and re-build your query, I'm not going to do it...
September 14, 2005 at 4:25 am
"what do u mean about seriousness.
Do this is the way u ask a person who need help?"
Given your history, under this and other usernames on this forum, yes this is...
September 14, 2005 at 3:44 am
Use this bit to get the results without using a cursor. Replace <<mydb>> with a database that exists on your server.
if not exists (select * from dbo.sysobjects where id...
September 14, 2005 at 1:55 am
Viewing 15 posts - 796 through 810 (of 2,486 total)