Viewing 15 posts - 16 through 30 (of 93 total)
Try this
select
acct from #table where acct like '[0-9]%' and
May 23, 2007 at 12:17 pm
You will need to create your SP wit the max number of parameters allowed and then design the logic around them based on their values. if you are using those...
May 23, 2007 at 12:00 pm
If you resut set:
1) is just for reporting purposes
2) will be no more than 65K lines
just use the excel functionality to connect to the SQL DB and crosstab the data.
Else...
May 23, 2007 at 11:56 am
You are right about declaring a local variable inside the SP, however, you can declare it as an INPUT parameter and never pass a value, in other words, pass a...
May 21, 2007 at 9:47 am
I have seen it before.
Right click on My Computer icon, select manage, Open the Event Viewer Tree, Select Application and check there for the time of the error to see...
May 17, 2007 at 6:54 am
what you want is to group by column1 and 2 and count column2 then PIVOT the results
May 17, 2007 at 6:48 am
Will this HELP?
declare
@Table1 as table (
IDENTITY_KEY
int
,PARENT_CODE int
May 17, 2007 at 6:40 am
Sorry I cannot offer additional help. I took the programmer approach..."puched the car up the hill and puched back down". I did not have any more issues after the re-install. And...
May 11, 2007 at 12:04 pm
Try this using the same logic as above:
SELECT
*,(select count(value) as
May 11, 2007 at 11:51 am
To find out the "schema", which in this case I think will be the database in ORACLE go to the Object Explorer expand the Linked Servers branch to the Tables...
May 11, 2007 at 11:36 am
Try this to see what happens
update linkedoracleserver..ORACLETABLE
set fieldname = 'TT'
May 10, 2007 at 8:28 am
Open a new query window switch to the DB in question and run: select * from
May 10, 2007 at 7:59 am
David you are not alone. Same happened to me a couple of months ago. I posted the message here, even sent to a MS contact and got no answers. All...
May 10, 2007 at 7:47 am
Your issue rings a bell, but cannot remember exactly the solution. Check your SQL Server Configuration Manager \ Network configuration and there the "VIA Properties" Virtual Interface Adapter protocol. I think...
May 9, 2007 at 11:52 am
I will assume your TempDB is on the C drive under the SQL directory and it is filling up your drive space which is causing problems.
So, go ahead and move the...
May 9, 2007 at 11:40 am
Viewing 15 posts - 16 through 30 (of 93 total)