Viewing 15 posts - 1 through 15 (of 91 total)
Well, the issue was my declaration of @i_col_lst nvarchar(100) was too small. Dummy!
April 1, 2011 at 11:55 am
Okay, my initial query was incorrect. Here is the actual query and the incorrect CAST results:
select distinct
CONVERT(VARCHAR(100), h.HRCHY_ID, 1) fConvert,
CAST(h.HRCHY_ID AS VARCHAR(100))...
March 14, 2011 at 1:27 pm
This is correct and I have modified my code to adhere to the new join syntax. Thank you!
David
March 14, 2011 at 8:59 am
Okay, the sp is not working. Here is the entire sp:
The code in bold is not working. The @v_pkStr variable is always NULL.
ALTER PROCEDURE [esell].[SP_VERIFY_DFT_COLUMNS]
...
March 11, 2011 at 7:42 pm
Does anyone know of any issues if tempdb and your user db's collations don't match?
February 16, 2011 at 2:28 pm
This is helpful. Thank you for the input.
🙂
February 16, 2011 at 8:35 am
Okay, that sounds like a good option. would you have any .cmd/SQL script examples that would demonstrate how this could be accomplished. Thank you.
February 16, 2011 at 7:47 am
I have used some code from your referenced articles. Below is the code I have so far.
DECLARE
@Parameter VARCHAR(8000),
@tabName VARCHAR(100),
...
January 14, 2011 at 11:17 am
Yes, that works! Thank you for your input!
🙂
September 10, 2010 at 8:13 am
I now have this working :-). What I did was use the BCP command to create the correct BCP format file. Here is the command that I used:
bcp...
April 28, 2010 at 12:10 pm
Gail, thank you for the query. I am viewing performance monitor right now and it is very helpful!
January 14, 2010 at 7:49 am
Gail, I know I can use performance monitor but can't you determine this with a query in SS? I am more of an Oracle DBA and you sure can...
January 14, 2010 at 7:22 am
The queries and indexes are optimized. They are only returning in some cases 3 rows. Would you have any scripts to cache the buffer cache hit ratio? ...
January 14, 2010 at 7:03 am
Viewing 15 posts - 1 through 15 (of 91 total)