Viewing 15 posts - 4,786 through 4,800 (of 9,643 total)
What did you upgrade the Reporting Server or the Database Server?
July 7, 2009 at 8:54 am
I'd do something like this:
INSERT INTO testProb1 (
col1,
col2
)
SELECT
TD.col1,
TD.col2
FROM
testprodD AS TD LEFT JOIN
testProb1 AS...
July 7, 2009 at 8:53 am
July 7, 2009 at 8:45 am
I don't use prefixes on tables and stored procedures. I do tend to use prefixes on views (vw) and functions (fn) to differentiate them from tables and stored procedures....
July 7, 2009 at 8:26 am
I'm not a zealot either, but I prefer all lowercase with underscores instead of Pascal or CamelCase for object names, although I do like uppercase key words.
I don't like case...
July 7, 2009 at 8:15 am
What I have seen recommended in this case is to create a second table and load the data into it, then drop the source table and rename the new table...
July 7, 2009 at 8:06 am
rpyerneni (7/6/2009)
Jack,The ID can vary. It may be 5 or 6 or 7 or 8 charecters. I need to get the ID and replace it with another number.
With the code...
July 6, 2009 at 5:10 pm
Can you isolate the index on which this occurring? Is CheckDB returning any errors?
July 6, 2009 at 4:18 pm
Lutz has set you on the right direction, I think. Here is what Lutz was looking for and leading to, I think:
-- create test tables
DECLARE @tableA table
...
July 6, 2009 at 4:15 pm
Duh, once again I make the question more complex than it needs to be. :w00t:
Thanks for clearing it up Lynn.
July 6, 2009 at 3:56 pm
You need to use PATINDEX(). Something like this:
DECLARE @string VARCHAR(MAX)
SET @string = '
<>Agenda and Minute
<>Member Application'
SELECT
SUBSTRING(@string, PATINDEX('%32602%', @string),5)
Of course, since you already know what you...
July 6, 2009 at 3:55 pm
What UI are using to display the data? If you are using SSRS I think a matrix would do want you want. You can also search for crosstab...
July 6, 2009 at 3:48 pm
I have to say that I don't have any experience with clustering, but, based on what you are experiencing, I am wondering if the restart of the cluster services caused...
July 6, 2009 at 3:42 pm
You might want to look at signing your procedure.
I have played around with EXECUTE AS trying to get access to the view and function you are interested in...
July 6, 2009 at 3:23 pm
From the link in my previous post:
To execute a module specified with EXECUTE AS, the caller must have EXECUTE permissions on the module.
And
To specify the EXECUTE AS clause when...
July 6, 2009 at 1:56 pm
Viewing 15 posts - 4,786 through 4,800 (of 9,643 total)