Viewing 15 posts - 12,031 through 12,045 (of 13,469 total)
I'm watching this thread because others more knowledgable than me might throw something out there.
As far as I know, you can capture the print messages from an application, but not...
September 12, 2008 at 10:41 am
i can emulate the same error if the payments table has a row with nulls in the REFERENCE column.
other than that, maybe it's a difference in coallation between the two...
September 11, 2008 at 8:21 am
two things i see...can reference be null in the payments? also i prefer to use a left join syntax instead..
1a - select * from import_cc_requests where reference not in (select...
September 10, 2008 at 6:30 pm
yeah i think we need to see the trigger code itself...it might not be designed to handle multiple rows on insert or something basic like that.
show us the code so...
September 5, 2008 at 9:30 am
that's actually a good question.
It kind of depends on your data...
I'm still playing with Jeff Moden's awesome example, but with the openrowset function, I think you need to know the...
September 4, 2008 at 5:27 am
here's just a couple of things that I see wrong with your on-the-fly code:
1. SET "@TblName = (your code) would return null if a full part tablename wasn't passed...
September 3, 2008 at 10:47 am
make sure your data fields are NVARCHAR, not plain old varchar.
after that, make sure when you are inserting the data that you specifically cast them as nvarchar...selecting a varchar into...
September 1, 2008 at 9:11 pm
it looks like you are just trying to make a single procedure return a variety of different values...sort of a do-all proc.
I would suggest getting rid of the case...
August 30, 2008 at 5:57 am
when you delete a file, regardless of the recycle bin, the file is still there, but the disk space it used is open for use by other programs...if you hurry...
August 29, 2008 at 9:59 am
this was a neat question; you could schedule the procedure I made belowto run every thirty minutes, and query the table WHORESULTS on demand:
[font="Courier New"]CREATE PROCEDURE PR_CAPTURESP_WHO
AS
BEGIN
SET NOCOUNT ON
IF NOT...
August 28, 2008 at 11:29 am
maybe a comma in the exisitng data is affecting the real data you are looking at...
Can you search the file for a pre-existing commas before you replace the tabs with...
August 28, 2008 at 8:56 am
well your example shows up just fine for me...
renamed the file to "Artists_mini.csv" ,as only one period is allowed to exist for a text server to see it:
selected...
August 28, 2008 at 8:46 am
thomas.lemesurier (8/28/2008)
August 28, 2008 at 5:29 am
here's my suggestion:
add a folder which contains all of your .csv files as a linked server.
a text linked server will show evert .txt file and every.csv file as a table...
so...
August 27, 2008 at 12:02 pm
not enough information I think...Can you post the full CREATE FUNCTION statement you are using?
I'm guessing from what you posted the "parameter" you are trying to pass is a tablename...
the...
August 26, 2008 at 7:24 pm
Viewing 15 posts - 12,031 through 12,045 (of 13,469 total)