Viewing 15 posts - 4,711 through 4,725 (of 7,191 total)
A header and a footer? I'm out of my depth now. Sounds like something you'd user Reporting Services for. Do you have a sample of what the...
February 14, 2012 at 3:48 am
Sounds like you're being taught to run before you can walk. Those are columns, not rows.
SELECT col1, col2, col3 FROM MyDB.dbo.USERS
John
February 14, 2012 at 3:34 am
Does this mean it works?
You tell me - you have access to the file; I don't.
John
February 14, 2012 at 3:32 am
You haven't read about fully qualified object names, have you? Nor have you read Phil's suggestion properly. The only way your code will work is if you have...
February 14, 2012 at 3:30 am
Are you sure tm37_1_2_online isn't the database name, because dbo sounds like the schema name. Just swap it round with dbo and it should work.
As a bit of background...
February 14, 2012 at 3:22 am
Unless the USERS table exists in the default database for your user, you will need to qualify it with the database (and maybe also schema) name:
SELECT * FROM MyDB.MySchema.USERS
By the...
February 14, 2012 at 3:12 am
ram_kamboz2k7 (2/14/2012)
but does not work.
Error message? File not created? Data in wrong format in file? Other problem? Please be more specific, and help us to...
February 14, 2012 at 3:02 am
Welcome to SQLServerCentral. We're all to help you, however most of us draw the line at doing your homework for you. Please have a go at doing it...
February 14, 2012 at 2:53 am
Beware of SQL injection when you use dynamic SQL. I recommend you read this.
John
February 14, 2012 at 1:55 am
Please will you post some sample data and expected results based on that data? I'm struggling to understand whether you want everything between 7:30 and 8:30 on a particular...
February 13, 2012 at 8:37 am
Yes. After you restore the database from the backup, transactions commenced while the backup was being taken will either be rolled back or rolled forward, so that the database...
February 10, 2012 at 8:29 am
If you look at the properties of the Union All editor, you'll get a list of all columns in one input alongside a list of all columns in the other....
February 10, 2012 at 8:15 am
OK, so the MAJ Clients OLE DB Command only feeds the Union All (Tous les clients) transformation? Can you not restrict the number of columns in the output of...
February 10, 2012 at 6:57 am
Can you show us what your data flow looks like, please?
Thanks
John
February 10, 2012 at 4:31 am
Viewing 15 posts - 4,711 through 4,725 (of 7,191 total)