Viewing 15 posts - 2,281 through 2,295 (of 13,462 total)
the question sounds a little bit like a turf war...don't want the dba to have full access to the box?
the answer is it makes my job substantially harder if i...
June 26, 2014 at 11:36 am
smacking myself in the head!
I didn't think of using FOR XML to handle the concatenation; that, sir, is beautiful and inspired.
You'd think i'd know better, so double kudos to...
June 25, 2014 at 9:17 am
what you really want to do is a side by side server upgrade.
on the 2008 server, you script out stuff, and run the scripts on the new server. no restoring...
June 25, 2014 at 6:33 am
this is typically dones via Reporting Services or a third party tools.
I've done it with a web service that cosumes a dataset and returns a binary blob, which cna be...
June 23, 2014 at 5:53 am
looks like you posted actual or peudocode from MySQL, I'm guessing?
In SQL Server, you'd have to use a procedure or a batch of code; functions are reserved for read access...
June 23, 2014 at 5:29 am
you could consider creating an easy way for some of the most prolific volunteers on the site to be able to feed a post to something for an automated removal;...
June 20, 2014 at 11:15 am
check the size of the table; small tables under something like 1000 pages of data will not be affected by a reindex. that could be what you are seeing: small...
June 20, 2014 at 5:20 am
i've used Test-Path to see if files or folders exist, and make a decision from there to do my logic; create files, process files, copy them or whatever.
#the detail file...
June 19, 2014 at 8:29 pm
There are 8000 files on the ftp site and you dont want to remove them from the site itself?
You really need to do one of the following :
1.remove them...
June 19, 2014 at 3:57 am
I'm with Lempster;
you have to either keep track of everything already processed in a database table or some otehr source, or move files that were processed to a different location(the...
June 18, 2014 at 7:09 am
what happens when you include the shcme aname explicitly?
select schema_name(schema_id),name, object_id (base_object_name),object_id (schema_name(schema_id) + '.' + base_object_name) from sys.synonyms
June 17, 2014 at 9:47 am
another thing i noticed, that was minor, but affected me nonetheless:
2008 has better exports to excel: it is able to name worksheets, and a report that had data that started...
June 17, 2014 at 8:00 am
small world, i just had to do this as well.
my hiccup was my original target server was 2008 standard, and not Enterprise, so i migrated reporting services, but the subscriptions...
June 17, 2014 at 7:29 am
without the install disk, it's not possible; you'll have to find the disk.
from there, it's pretty easy:
backup the existing encryption key right away, before you do anything else.
you need...
June 17, 2014 at 6:45 am
well, here's an example of how to generate 52452 integers based on your existing data;
you'd probably want to plug that into a formula that calculates latitide increments for every 25...
June 17, 2014 at 6:01 am
Viewing 15 posts - 2,281 through 2,295 (of 13,462 total)