Viewing 15 posts - 4,471 through 4,485 (of 13,469 total)
naga.rohitkumar (10/31/2012)
Hi to every one need reply soon1. what are the all possible ways to upgrade sqlserver 2005 work group edition into sql server standard edition.
If you want...
October 31, 2012 at 7:09 am
anandhaksc (10/30/2012)
Yes..But i need in Ireport expression..How to do it..please help me...
i had not heard of iReport before your post, i was expecting a SQL related question, of course.
i guess...
October 31, 2012 at 5:31 am
ok weird requirement, this won't work if ad Hoc is disabled, obviously.
this works for me on my dev machine, which does allow adhoc:
--DROP PROC pr_Processes
CREATE PROCEDURE pr_Processes
@SERVERNAME varchar(128)
AS
BEGIN --PROC
DECLARE @sql...
October 30, 2012 at 2:53 pm
justin_post (10/30/2012)
October 30, 2012 at 1:17 pm
justin_post (10/30/2012)
October 30, 2012 at 12:31 pm
He means do something like this:
create the view via TSQL, for example:
CREATE VIEW MyView
AS
SELECT
[Student Number],
IRN,
Name,
Gender,
Address,
city,
state,
...
October 30, 2012 at 12:22 pm
You mean like this?
SELECT *
FROM SomeTable
WHERE SomeColumn LIKE '%' + CHAR(33) + '%'
October 30, 2012 at 9:03 am
JeremyE (10/29/2012)
If all the stored procedures are in the same schema you could grant execute on the schema like so.
GRANT EXECUTE ON SCHEMA::[dbo] TO [UserOrRoleName]
but that would grant execute on...
October 29, 2012 at 2:06 pm
you can use a neat trick with RAISERROR to get an immediate result inside the loop, if that's what you want/need.
a basic example:
--print error immediately in batch
declare @i int,
...
October 29, 2012 at 2:02 pm
sounds like a case statement or a union all, but i'm having trouble figuring out where your data is
soemthing like this?
SELECT Servername, ApplicationID, 'Table1' AS Appserver FROM Table1 UNION...
October 29, 2012 at 1:49 pm
briancampbellmcad (10/29/2012)
October 29, 2012 at 11:27 am
i don't see index_id = 1 , which would be the clustered index.
I see index_id 0, which means the table is a heap, and all the downsides that entails.
what...
October 29, 2012 at 10:05 am
it gets a little outside of a lot of peoples comfort zones, but in .NET you can do a lot things on the client.. .left join/inner join/full join on the...
October 29, 2012 at 9:53 am
also, for the prerequisites:
install the AccessDatabaseEngine_x64.exe from microsoft:
http://www.microsoft.com/en-us/download/details.aspx?id=13255
make sure you open an Administrative command prompt window, and run it with the c:\Downloads\AccessDatabaseEngine_x64.exe /passive
command line flag;
this will force the...
October 29, 2012 at 8:39 am
Viewing 15 posts - 4,471 through 4,485 (of 13,469 total)