Analysis Services (SSAS)

Technical Article

RE: How to Execute quary in store procedure

  • Reply

But why do you want to create the temp table in two steps, is there any specific reason, you can as well create it with the CREATE table #mytable (column1 datatype ) syntax directly right? Sorry if I am missing anything here. Well if you are passing the table structure as input parameter to the […]

You rated this post out of 5. Change rating

2004-03-16

Technical Article

How to Execute quary in store procedure

  • Topic

i would like to create a temp table and insert values into the temp table in a store procedure, is it possible?, i have tried it as follows create procedure mype as   DECLARE @a varchar(100)   set @a= 'create table #mytable              ( itemcode varchar(15),                itemname varchar(50),                unitname varchar(15),                unitprice money               […]

You rated this post out of 5. Change rating

2004-03-16

1 reads

Technical Article

How to Execute quary in store procedure

  • Topic

i would like to create a temp table and insert values into the temp table in a store procedure, is it possible?, i have tried it as follows create procedure mype as   DECLARE @a varchar(100)   set @a= 'create table #mytable              ( itemcode varchar(15),                itemname varchar(50),                unitname varchar(15),                unitprice money               […]

You rated this post out of 5. Change rating

2004-03-16

3 reads

Technical Article

Program Documentation for Stored Procedure ?

  • Topic

Hi All, We program intensively in TSQL / stored Procedure, many business logic is in there. And I need to distribute the jobs to some SQL programmers. Is there any documentation tool that can properly / precisely dedscribe the flow of TSQL programs / stored procs ? Thanks for any help, Krist

You rated this post out of 5. Change rating

2004-03-13

1 reads

Technical Article

RE: Sum Aggregate

  • Reply

SELECT YearNumber, MonthNumber, SUM(Occurances) AS CountOfData FROM (select YEAR(DateField) AS YearNumber, MONTH(DateField) AS MonthNumber, Count(datacount) As Occurances FROM datatable GROUP BY SQLDate)Dates GROUP BY YearNumber, MonthNumber Order By YearNumber, MonthNumber This should give you what you are looking for.

You rated this post out of 5. Change rating

2004-03-11

Technical Article

Field level encryption...

  • Topic

Just looking for others who have had to implement field level encryption their databases.  A. What program/utility did you decide on?  We have been looking at dbEncrypt from Appsec Inc.  B. What performance impact did you encounter?  C. Did you have to re-write many of the stored-procs?  D. What processes also had to change like […]

2004-02-24

4 reads

Technical Article

RE: High Read Disk Queue Length

  • Reply

How much memory are being used by SQL Server instances? Can you post the result of "select * from sysprocesses where waittime > 0 order by waittime desc"? If there are any queries running, verify whether they are running in parallel.

2004-02-19

Blogs

SQL Saturday Boston 2024 Slides

By

Thanks to everyone that came to my talks. Slides are below. Best Practices for...

Small Data SF 2024

By

I can’t remember how I heard about Small Data SF 2024, but it caught...

A New Word: Moledro

By

moledro – n. a feeling of resonant connection with an author or artist you’ll...

Read the latest Blogs

Forums

7 sept, scheduled book

By philip.scott

Comments posted to this topic are about the item 7 sept, scheduled book

7 sept, schedlued article

By philip.scott

Comments posted to this topic are about the item 7 sept, schedlued article

6 sept, published book

By philip.scott

Comments posted to this topic are about the item 6 sept, published book

Visit the forum

Question of the Day

Azure Data Lake Storage Gen 2

Azure Data Lake Storage Gen 2 is built on ...?

See possible answers