Viewing 15 posts - 9,361 through 9,375 (of 13,461 total)
is there a downloadable demo of this, even crippleware for using only the Adventureworks db or something?
this sounds too good to be true, so I'd like to see it form...
May 26, 2010 at 7:12 am
for me, i use a rule of thumb of 10% of the mdf size as the needed log size, but the correct answer is "it depends".
If your database is in...
May 26, 2010 at 7:09 am
you didn't print the actual error, so this is just a guess: the error was constraint name "pk_username_profile " already exists
search your script for pk_username_profile and see if it...
May 26, 2010 at 7:01 am
J this thread was the most valuable thing of the week for me; i learned a lot. thank you very much.
I had to change your udf very slightly; i converted...
May 25, 2010 at 3:57 pm
J that got me looking in the right direction;
for whatever reason, my dll's class name is a little weird; i used hte deploy option, and then when i scripted the...
May 25, 2010 at 3:39 pm
J i've got a question for you regarding deployment;
i created a new VS project named "MyCLRProjects, and added only your Partial Public class as an example;
it compiled, and i was...
May 25, 2010 at 1:16 pm
do you still have FTP access to the root of your web site? can't you download the suite of pages, as well as the mySQL database and rehost it somewhere...
May 25, 2010 at 11:42 am
Maxthere is not a ton of options,as you've identified;
the parameter @recipients,@copy_recipients and @blind_copy_recipients for sp_send_dbmail is a varchar max, expecting a semicolon seperated list of recipients;
if all the recipients can...
May 25, 2010 at 11:37 am
bigclick (5/25/2010)
oh yeah I've suffered through that same situation before, I feel for...
May 25, 2010 at 11:24 am
_ms65g_ (5/25/2010)
SELECT TOP 100 CLACCT, DATE
FROM
(
SELECT CLACCT, CAST(MONTH AS VARCHAR(2)) + CAST(YEAR AS VARCHAR(4)) AS DATE
FROM cu102 (nolock)
) D
WHERE DATE > 062007
this should be a lesson to never store...
May 25, 2010 at 10:04 am
proof of concept for Steve's idea;i thought that was kind of neat:
--results:
Status cnv ...
May 25, 2010 at 9:33 am
first, i would suggest not killing any connections, whether you know they are in use or not.
just because they 've connected for a long time, does not mean they are...
May 25, 2010 at 8:37 am
without dropping it, the calculated column would need a different name; it depends on what you really need;
since I would prefer not to delete delete data by dropping a column,i...
May 25, 2010 at 8:24 am
Vishal Singh (5/25/2010)
This is how the sample data looks like:
INSERT INTO [tbl1] ([PrimaryID],[RelatedID],[RelationID],[PosID])VALUES(1,78628,4,1)
INSERT INTO [tbl1] ([PrimaryID],[RelatedID],[RelationID],[PosID])VALUES(1,89059,4,1)
INSERT INTO [tbl1] ([PrimaryID],[RelatedID],[RelationID],[PosID])VALUES(1,89230,4,1)
INSERT INTO [tbl1] ([PrimaryID],[RelatedID],[RelationID],[PosID])VALUES(1,89235,4,1)
looks very easy to re-format; all four values appear...
May 25, 2010 at 7:24 am
ugg; one-time imports are sometimes the most time consuming...can we see a row or two of sample data? enough to make a format file so you could test a bcp...
May 25, 2010 at 7:01 am
Viewing 15 posts - 9,361 through 9,375 (of 13,461 total)