Viewing 15 posts - 226 through 240 (of 654 total)
you can use xslt to transform your file into xml if you have fixed width columns. I use a front end app to do this. you can then import the file into sql
or...
July 18, 2007 at 3:59 am
July 18, 2007 at 3:54 am
RDO! I forgot to add that your system is due for an upgrade.
July 17, 2007 at 1:59 am
RDO uses ODBC underneath so it should be possible to connect to sql 2005 with out changing much. create a system dsn that points to your sql 2005 server and use...
July 17, 2007 at 1:57 am
Matt,
it was someone spamming the forums with stuff totally unrelated to sql. maybe i should have quoted it
July 17, 2007 at 12:26 am
what happens if you don't include the double qoutes on your send thingy i.e.
SET @proc = 'Send(' + @post + ')'
with an encoded @post as per my earlier example
July 16, 2007 at 10:42 am
mmm.. but we still have a lot of boxes on sql 2000
July 16, 2007 at 9:54 am
parse you @post and replace the double quotes with "
e.g.
DECLARE @var VARCHAR(50)
SET
@var
July 16, 2007 at 9:52 am
yes you can use table variables
DECLARE
@totalCount INT
DECLARE @tracker INT
DECLARE @Dkey AS datatype
SET
@tracker
July 16, 2007 at 8:20 am
the request came from high up, then tell them that this is a NO NO.
replicate the live on to Test and have the developers doing their thing there.
July 16, 2007 at 6:06 am
on which platform are we talking abt
i.e. development, test, production
my matrix for dev security would be
dev - full access
test - partial access
production - no access
July 16, 2007 at 5:59 am
i am assuming that you created the datareader user for use in an application, if that is the case then in sql why do you want to view the stored...
July 16, 2007 at 5:11 am
i second Jeff's idea of using bcp or osql.
or if you want you can just develop a .net app
July 16, 2007 at 5:04 am
Viewing 15 posts - 226 through 240 (of 654 total)