Viewing 15 posts - 1,021 through 1,035 (of 2,486 total)
Are you specifying the query text in the report designer, or are you calling a stored procedure?
Iis the report running for the previous week, or just the past seven days?...
July 12, 2005 at 9:24 pm
You shouldn't need to have any script to transform numbers and dates. The ints should be fine with implicit conversions and there is a DateTime transformation that specifically handles importing...
July 12, 2005 at 5:14 pm
And don't forget our ever reliable friend Books Online
July 12, 2005 at 5:01 pm
The "WITH NORECOVERY" clause means that the database will stay in a restoring state so you can restore multiple backups and maintain transaction consistency. Without NORECOVERY, SQL Server would rollback any...
July 12, 2005 at 4:58 pm
DTS packages are stored as binary objects in the msdb database, as such you can't export all the details.
To get the whole package in a readable form, you could save...
July 12, 2005 at 12:44 am
I fail to see where the provided link has anything to do with field or row field terminators.
Surely any command with a syntax like,
bcp {[[database_name.][owner].]{table_name | view_name} | "query"}
{in | out...
July 12, 2005 at 12:33 am
You're almost there with your second example. Just wrap the drop in an EXEC statement.
EG: EXEC('DROP DATABASE ' + @DBVARIABLE)
Also, you could simplify creating the database name to
SELECT @DBVARIABLE...
July 11, 2005 at 10:22 pm
Sorry to come into this so late, I can only blame the timezones
How about a mini-MVP (Most Valued Poster) for the month?
Maybe...
July 11, 2005 at 7:31 pm
The switches for BCP have always held some sort of mystical property. I mean there is such a thing as too many options.
July 11, 2005 at 7:02 pm
Removing both would have caused BCP to use the defaults which are tab and newline.
July 11, 2005 at 6:03 pm
So are these the same servers or as you stated in your initial post "when published on different servers on different computers" unless the hardware and display properties are set...
July 11, 2005 at 5:18 am
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=9&messageid=199196
Please do not cross post.
Based on your response under the other post,
"yea,i am trying to do that thru the enterprise manager...any way around it? i dont want to...
July 11, 2005 at 5:14 am
You'd also have to take into account the display capabilities of the point where the reports are being viewed.
eg: If you develop a colorful report using 32-bit HiColor and the...
July 11, 2005 at 5:02 am
As per my earlier post "GO signals the end of a batch".
Did you run the statements both with and without the GO and see the results?
July 11, 2005 at 3:20 am
Ok, in the Object Browser for Query Analyzer ( F5 ), navigate down the tree till you find your stored procedure. ( You might need to refresh the list before...
July 11, 2005 at 1:36 am
Viewing 15 posts - 1,021 through 1,035 (of 2,486 total)