Viewing 15 posts - 1,891 through 1,905 (of 2,486 total)
Having played with RS for a few months myself I find it extremely good for a beta product.
As for your "page break after a group" gripe. Well you said it...
December 9, 2003 at 5:27 pm
A couple of things to consider when setting up the maintenance plan,
1) What's the uptime requirement for the database?
2) How important is the data that is contained in the database,...
December 8, 2003 at 3:59 pm
To set Global Variables and save the changed values you will need to open the package and save it. Doing this via the DTS Designer will preserve the layout but...
December 8, 2003 at 3:51 pm
If the stored procedure are all in one file you can just run that file using OSQL. If they're in individual files you could do a bit of coding in...
December 8, 2003 at 3:30 pm
Take a look at the Meta Data functions.
@@PROCID returns the ID of the current procedure, OBJECT_NAME() returns the name of the database object. Used together OBJECT_NAME(@@PROCID) gives you the name...
December 8, 2003 at 3:28 pm
Don't use the '$' character in the name.
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
December 8, 2003 at 3:17 pm
If someone wanted to get really creative they could put togther a dynamic SQL statement based on syscolumns ...
Pass in a table name, retrieve the object...
December 2, 2003 at 4:42 pm
You could also try horizontal partioning and placing the partitions on seperate filegroups which reside on different physical raid volumes. The same can be done with the indexes. Check the...
December 2, 2003 at 3:15 pm
Is there any particular reason you are using the ROWLOCK hint?
If not remove it and let the server handle the locking.
From Books Online,
quote:
December 2, 2003 at 3:06 pm
Take a look at the following,
http://www.sqldts.com/default.aspx?214
Do you want to fail the task or simply not execute it?
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
December 2, 2003 at 3:02 pm
Well I'm impressed wasn't to bad a guess, at least it was something to do with tabbing
Hope this helps
Phill...
December 1, 2003 at 10:18 pm
Thanks noeld, whats 11 ???
Don't have my ASCII table handy.
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
December 1, 2003 at 9:59 pm
You could try outputting your results as one long formatted column using the ASCII code for the tab character (I think it's 11).
EG:
SELECT Column1 + Char(11)...
December 1, 2003 at 8:53 pm
I've just posted another VBScript that sets the DTS Package Logging properties for groups of DTS Packages. It's titled "Set logging properties for group of DTS packages". It should be...
December 1, 2003 at 3:43 pm
quote:
All I need now, for life to be perfect, is for someone to tell me how I get commas in the thousands...
December 1, 2003 at 3:08 pm
Viewing 15 posts - 1,891 through 1,905 (of 2,486 total)