Viewing 15 posts - 91 through 105 (of 242 total)
Hi,
BOL is best option to find the answer of your questions.
DBCC DROPCLEANBUFFERS Removes all clean buffers from the buffer pool.
Use DBCC DROPCLEANBUFFERS to test queries with a cold buffer cache...
July 24, 2008 at 3:18 am
Hi Jason,
I think it should work.
I tried here and working fine at my machine.
July 23, 2008 at 11:30 pm
--Try this
CREATE TABLE Test(Col int DEFAULT 0)
INSERT INTO TEST DEFAULT values
SELECT Col FROM Test
Even you can use same query if Col is IDENTITY like:
CREATE TABLE Test(Col int Identity(1,1))
INSERT INTO...
July 23, 2008 at 11:11 pm
Hi
Just change your Group By statement like:
GROUP BY Tidspunkt,DATEADD(hour,0,DATEADD(hour, DATEDIFF(hour, 0, Tidspunkt), 0))
July 23, 2008 at 5:49 am
toolman (7/21/2008)
July 22, 2008 at 7:08 am
thatok (7/22/2008)
Ok. got that sorted by choosing non-queried for available values and setting the value to '=Parameters!EndPeriod.Value. However that makes my query extremly slowPlease help
thatok,
Its not clear about your source...
July 22, 2008 at 6:55 am
thegreatsamarth (7/22/2008)
Hello Hari...U can easily get all the column names..
refer the below query...
SELECT * FROM tempdb.sys.columns
WHERE object_id = (SELECT object_id FROM tempdb.sys.columns WHERE NAME = 'FirstName')
--Samarth
Samarth,
see the result now:
CREATE TABLE...
July 22, 2008 at 2:54 am
rosh (7/22/2008)
If so then see if this query helps you.
SELECT * FROM tempdb.sys.columns
WHERE object_id = (SELECT object_id FROM tempdb.sys.objects WHERE...
July 22, 2008 at 2:49 am
USE [AdventureWorks]
GO
SELECT JobCandidateID,Resume FROM HumanResources.JobCandidate
-- Consider Resume column
July 22, 2008 at 1:46 am
Hi Rosh,
Thanks for reply.
I know that temp tables get created into system DB (tempdb).
Can you write a query for that?
Suppose my stored procedure looks like this:
CREATE PROC TestProc
AS
BEGIN
...
July 22, 2008 at 12:45 am
Do they have same data types?
I think some column is of varchar
July 21, 2008 at 6:30 am
=JOIN(Parameters!ParameterName.Value,",")
or
=JOIN(Parameters!ParameterName.Label,",")
July 20, 2008 at 11:55 pm
Hi Satish,
Below mentioned link will help you a lot to learn SSRS
http://www.simple-talk.com/sql/learn-sql-server/beginning-sql-server-2005-reporting-services-part-1/
July 20, 2008 at 11:41 pm
Hi,
You need to write following expression in Group Header/Footer:
=SUM(Fields!FieldName.Value)
July 20, 2008 at 11:38 pm
Viewing 15 posts - 91 through 105 (of 242 total)