11,316,767 members (23,676 online)
Sign in
Email
Password
Forgot your password?
Sign in using
home
articles
Chapters and Sections
>
Search
Latest Articles
Latest Tips/Tricks
Top Articles
Beginner Articles
Technical Blogs
Posting/Update Guidelines
Article Help Forum
Article Competition
Submit an article or tip
Post your Blog
quick answers
Ask a Question
View Unanswered Questions
View All Questions...
C# questions
ASP.NET questions
C#3.5 questions
SQL questions
VB.NET questions
discussions
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work & Training Issues
Design and Architecture
ASP.NET
JavaScript
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
Adobe Technologies
C#
Free Tools
Objective-C
Ruby On Rails
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
.NET Framework
Android
iOS
Mobile
Sharepoint
Silverlight / WPF
Visual Basic
Web Development
Site Bugs / Suggestions
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
Product Showcase
Research Library
CodeProject Stuff
community
Who's Who
Most Valuable Professionals
The Lounge
The Insider News
The Weird & The Wonderful
The Soapbox
Press Releases
Non-English Language
>
General Indian Topics
General Chinese Topics
help
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
Site Map
Advertise with us
Employment Opportunities
About Us
The default search term operator is
AND
.
You can use brackets,
AND
,
OR
, and
NOT
to improve your search. For example:
C# AND NOT(VB or SQL)
A query of a single
*
will return everything, filtered by any filters.
Filter examples:
Search by Author
author:"author name"
Filter by tag
tag:C#
or
tag:(C++ or Java)
Wildcard search
use "?" or "*" eg.
gr?d
or
gr*
11,271 Results
Search
Everything
Articles
Technical Blogs
Tips & Tricks
Reference Articles
Research Library
Questions
Answers
Forum Messages
News Items
Just My Stuff
My Bookmarks
Sort by
Relevance
Rating (Hi - Lo)
Rating (Lo - Hi)
Popularity (Hi - Lo)
Popularity (Lo - Hi)
Votes (Hi - Lo)
Votes (Lo - Hi)
Modified (New - Old)
Modified (Old - New)
Thread Modified (New - Old)
Thread Modified (Old - New)
Created (New - Old)
Created (Old - New)
Title (A - Z)
Title (Z - A)
Author (A - Z)
Author (Z - A)
Price ($ - $$$)
Price ($$$ - $)
Duration (Short - Long)
Duration (Long - Short)
Match
All Fields
Title
Description
Author(s)
Tags
Any Date
Last 12 hours
Last 24 hours
Last week
Last 2 weeks
Last month
Last 3 months
Last 6 months
Last year
January
February
March
April
May
June
July
August
September
October
November
December
Rating Range
All - Including Unrated
1.0 - 5.0
2.0 - 5.0
3.0 - 5.0
4.0 - 5.0
4.5 - 5.0
4.8 - 5.0
5.0
Advanced Filters:
Article Topics
All Topics
Desktop Development
Web Development
Mobile Development
Cloud Computing
Enterprise Systems
Database
Multimedia
Languages
Platforms, Frameworks & Libraries
General Programming
Graphics / Design
Development Lifecycle
General Reading
Third Party Products
Mentor Resources
Internet of Things
Contests
Article License
All Licenses
Ms-RL
CPOL
CDDL
Ms-PL
MPL
CPL
Eclipse
MIT
BSD
Apache
CC (ASA 2.5)
Zlib
Public Domain
CC (Attr 3U)
CC (ASA 3U)
CC (BY-ND 3.0)
LGPL3
GPL3
Forums
All Forums
Feature Forums
General Programming
Web Development
Mobile Development
Product Lifecycle
Database & SysAdmin
General Discussions
Non-English Language
Page 1 of 226
Page Size:
10
·
25
·
50
Tag filtered by: SQL-server-2005
[x]
Huge Xml Document(more than 10GB) import to Sql Server 2005
by
- NA -
Answer
19 Mar 2015
license:
CPOL
is there any solution example in MS SQL .i have a only more than 2 gb xml file . i am unable to import in my data base .through the MS SQL . i am getting the error ."Msg 6365, Level 16, State 1, Line 1An XML operation resulted an XML data type exceeding 2GB in size....
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL-Server
C#3.5
rows into columns from one table to another table
by
CHill60
Answer
13 Mar 2015
license:
CPOL
This is an old question but I'm posting this solution to counter Solution 1 which uses a CURSOR - not a recommended approach (see SQL Server DO's and DONT's[^])The following solution uses constructs available from SQL 2005 - Common Table Expressions and Pivot. Some CP articles that may be...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL-Server
login form in c# windows application with sql server database?
by
Krunal Rohit
Answer
6 Mar 2015
license:
CPOL
http://www.c-sharpcorner.com/U...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL-Server
C#5
login form in c# windows application with sql server database?
by
Jon_adam
Question
6 Mar 2015
license:
CPOL
dear allHow to create a lo-gin page in C# and database is sql server 2005, with permeation?with regards.
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL-Server
C#5
how to write the code to insert the data to database after creating the relationship
by
Tadit Dash (????? ????? ???)
Answer
5 Mar 2015
license:
CPOL
The INSERT query should have a valid value for the Foreign Key column of that Table, where you are inserting a row.Otherwise it will give you foreign key constraint conflict error.
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
C#
ASP.NET
SQL-Server
NoEffort
how to write the code to insert the data to database after creating the relationship
by
- NA -
Question
5 Mar 2015
license:
CPOL
hello,i wanted to know how to write the insert query when we have created the foreign key in the database
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
C#
ASP.NET
SQL-Server
NoEffort
how to copy the tables from one database to another
by
Mika Wendelius
Answer
4 Mar 2015
license:
CPOL
Perhaps the easiest way is to use SELECT INTO structure.For example if both databases reside on the same SQL Server, something like:SELECT Column1, Column2, ....INTO NewTableFROM DatabaseName.Owner.TableNameFor more info, see INTO Clause[^]
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL-Server
how to copy the tables from one database to another
by
Peter Leow
Answer
4 Mar 2015
license:
CPOL
Refer: SQL SERVER – 2005 – Create Script to Copy Database Schema and All The Objects – Stored Procedure, Functions, Triggers, Tables, Views, Constraints and All Other Database Objects[^]
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL-Server
how to copy the tables from one database to another
by
- NA -
Question
4 Mar 2015
license:
CPOL
hello sir,i wanted to copy tables created in one database to the other database using sql server management studio 2005. can i know the steps to do the same
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL-Server
How to export SQL server 2005 database table to .DBF
by
manak chand
Answer
23 Feb 2015
license:
CPOL
This is a quick run through to generate Insert statements for all of the data in your table, using no scripts or add-ins to SQL Management Studio 2008:1.Right click on the database and go to Tasks -> Generate Scripts2.Select the tables (or object) that you want to generate the script...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL
SQL-Server
How to export SQL server 2005 database table to .DBF
by
Computer Wiz99
Question
23 Feb 2015
license:
CPOL
Hello. I have SQL Server 2005. I have my database and tables. I am trying to export the tables to .DBF file for a Foxpro program. How can I export or convert my SQL 2005 Database to a .DBF file for Foxpro?
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL
SQL-Server
how to send sms using way2sms and fullonsms in asp.net
by
RajeeshMenoth
Answer
19 Feb 2015
license:
CPOL
Ref This website:1) Send Sms from ASP.NET using Full On Sms2) Send free and bulk SMS to mobile numbers using Way2SMS and FullOnSMS accounts using ASP.Net
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
ASP.NET
SQL-Server
how to send sms using way2sms and fullonsms in asp.net
by
Rahul Oza
Answer
19 Feb 2015
license:
CPOL
this code throws error as "An exception of type 'System.Net.WebException' occurred in System.dll but was not handled in user codeAdditional information: The remote server returned an error: (403) Forbidden."Please help me....
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
ASP.NET
SQL-Server
how to show item in combobox as related to another combobox Item
by
- NA -
Question
5 Feb 2015
license:
CPOL
string ADDRES = Convert.ToString(comboBox1.SelectedItem); SqlConnection con = new SqlConnection(); con.ConnectionString = "Data source=.;User ID=sa;Password=password;Initial Catalog=bank"; string sql = "select NAME_PEOPLE from PEOPLE where...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
C#
SQL-Server
how to show item in combobox as related to another combobox Item
by
Varun_Kumar
Answer
5 Feb 2015
license:
CPOL
Hi Here i added solution please check thatprivate void Form2_Load(object sender, EventArgs e) { comboBox1.Items.Add("a"); comboBox1.Items.Add("b"); comboBox1.Items.Add("c"); comboBox1.Items.Add("d"); ...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
C#
SQL-Server
The Declare SQL construct or statement is not supported.
by
- NA -
Question
15 Jan 2015
license:
CPOL
DECLARE @maxcount1 float DECLARE @maxcount0 float DECLARE @start datetime SET @start = getdate() - 2 DECLARE @end datetime SET @end= getdate() + 2SELECT @maxcount1 = max(OnTimeCount),@maxcount0 = max(DueTimeCount)FROM (SELECT DISTINCT COUNT(DISTINCT CASE WHEN ontime = 1 THEN...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL-Server
Customize the built-in Outlook Select Names dialog (or any other)
by
Helmut Obertanner
Article
14 Jan 2015
license:
CPOL
In this article, you will learn how to customize the built-in Select Names dialog and use different external data sources for your own dialog.
Enterprise Systems
»
Office Development
»
Outlook
WinXP
Win2003
Vista
SQL-server-2005
C#3.0
.NET3.5
VS2008
C#
DBA
Dev
, +
Unable to attach sql database (Microsoft SQL Server, Error: 5120)
by
- NA -
Answer
8 Jan 2015
license:
CPOL
go to the file right click- property - security- full control -oksame on log file
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL
SQL-Server
Management Studio could not retrieve information about secondary database
by
SreeDBA
Question
6 Jan 2015
license:
CPOL
I'm trying to configure Log Shipping in SQL 2005. I have 2 servers,each running an instance of SQL 2005. The services are all high-permissions accounts.After I configure Log shipping for a database, the process completesand all tasks (Backup, copy, restore) Are listed as...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL
DBA
SQL-Server
database
SQL Server 2005 free auto-compete software
by
Suvendu Shekhar Giri
Answer
2 Jan 2015
license:
CPOL
Have you tried searching this in Google?There are few free addins and external tools available in the internet.1. Here is a detailed blog on ApexSQL Complete[^]2. dbForge SQL Complete[^]Hopefully, it helps.Note: I don't recommend to use third party plugins or tools because...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL-Server
SQL-Server
software
how to save path of image in database using asp.net
by
Nithu2015
Answer
2 Jan 2015
license:
CPOL
Try the following link!save image in folder and path to database in asp.net c#
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL-Server
C#3.5
VBScript RecordSet.RecordCount From Pivot Table
by
JM76
Answer
28 Dec 2014
license:
CPOL
Thank you very much!!!This solved my problemSet objRS = Server.CreateObject("ADODB.Recordset")objRS.CursorLocation = adUseClientobjRS.Open strSQL, objConn,,adLockReadOnly, adCmdText
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
VBScript
SQL-Server
VBScript RecordSet.RecordCount From Pivot Table
by
Maciej Los
Answer
28 Dec 2014
license:
CPOL
See this: RecordCount returns -1[^]
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
VBScript
SQL-Server
VBScript RecordSet.RecordCount From Pivot Table
by
JM76
Question
28 Dec 2014
license:
CPOL
Hi, I´m trying to ReDim my array from RecordCount, the problem is my query use PIVOT Table and then RecordSet.RecordCount return -1 I know that I can do two while, once for count and movefirts to works with datacount = 0While Not Recordset.EOF count = count + 1 ...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
VBScript
SQL-Server
How to sql server backup file convert to zip file?
by
Richard MacCutchan
Answer
23 Dec 2014
license:
CPOL
Take a look at http://msdn.microsoft.com/en-us/library/system.io.compression.zipfile%28v=vs.110%29.aspx[^].
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
C#
SQL-Server
how to send sms using way2sms and fullonsms in asp.net
by
DamithSL
Answer
21 Dec 2014
license:
CPOL
check below tutorial :Send free and bulk SMS to mobile numbers using Way2SMS and FullOnSMS accounts using ASP.Net[^]
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
ASP.NET
SQL-Server
How to get second last row of a table in SQL WITHOUT USING "ORDER BY"
by
/\jmot
Answer
15 Dec 2014
license:
CPOL
What about..using.http://msdn.microsoft.com/en-in/library/ms186734.aspx[^]andhttp://technet.microsoft.com/en-us/library/gg699618(v=sql.110).aspx[^]
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL-Server
SQL-Server
Interview
write a stored procedure to pass one value in one parameter and two values in another parameter in sql server
by
yusuf_ahmed
Answer
11 Dec 2014
license:
CPOL
ALTER PROCEDURE [dbo].[sp_Sample] @param1 VARCHAR(100),@name varchar(30)ASBegin DECLARE @Sql NVARCHAR(MAX) ---- SET @param1 = Replace(@param1, ',', ''',''') SET @Sql = '(select * from tblsample where name='''+ @name +''' and [Escalate to] IN ('+ @param1 + '))' exec...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL-Server
write a stored procedure to pass one value in one parameter and two values in another parameter in sql server
by
mudgilsks
Answer
8 Dec 2014
license:
CPOL
Hi, to achive the task you need to split the variable using split function.like thisselect value from fn_Split ('par1,par2',',')use the above query like this IN(select value from fn_Split (@param1,','))first execute thiscreate FUNCTION [dbo].[fn_Split](@sText...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL-Server
write a stored procedure to pass one value in one parameter and two values in another parameter in sql server
by
syed shanu
Answer
8 Dec 2014
license:
CPOL
Check this hope this will work for you.ALTER PROCEDURE [dbo].[sp_Sample] @param1 VARCHAR(100),@name varchar(30)ASBegin DECLARE @Sql NVARCHAR(MAX) ---- SET @param1 = Replace(@param1, ',', ''',''') SET @Sql = '(select * from tblsample where name='''+ @name +''' and...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL-Server
write a stored procedure to pass one value in one parameter and two values in another parameter in sql server
by
Member 9409254
Answer
8 Dec 2014
license:
CPOL
Alter procedure sp_sample3@Escalation varchar(30),@InClause NVARCHAR(100)asDECLARE @SafeInClause NVARCHAR(100)SET @SafeInClause = ',' + @InClause + ','SELECT * FROM tblSample WHERE [Escalate To]=@Escalation and CHARINDEX(',' + [Owner Dept] + ',', @SafeInClause) > 0exec...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL-Server
write a stored procedure to pass one value in one parameter and two values in another parameter in sql server
by
Member 9409254
Question
8 Dec 2014
license:
CPOL
Dear all,write a stored procedure to pass one value in one parameter and two values in another parameter in sql server.I was tried with the below code.I got result when i pass only param1 (multiple values)BUt when i add another param (@name)., not getting result.Please correct me...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL-Server
SQL Server Health Check Script with Powershell
by
Atul_Kapoor
Tip/Trick
3 Dec 2014
license:
CPOL
Perform SQL Server Instance health check simultaneously on more than one server using Powershell
Database
»
Database
»
Sql Server
SQL-server-2005
SQL
Windows
SQL-Server
Architect
DBA
Dev
QA
Beginner
Intermediate
, +
gridview binding ASP.net c#
by
MukeshPrasad533
Answer
1 Dec 2014
license:
CPOL
Hi You need to do the following stuff in your grid set Autogeneratedcolumn ="false"Thanks,Mukesh
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
C#
SQL-Server
C#4.0
Translate English to gujrati
by
vivek 1494
Answer
26 Nov 2014
license:
CPOL
hello i am vivek
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
ASP.NET
SQL-Server
HTML5/CSS
Operation did not succeed because the program cannot commit or quit a cell value change.
by
Jared Baszler
Answer
20 Nov 2014
license:
CPOL
I was getting this error in the following case:1. Have a grid of say 20 rows.2. My active cell was on say row 10. 3. I would filter the grid down to something less than 10 rows based on a simple find feature I have.4. This caused the error because the current cell address no longer...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
C#3.0
C#
SQL-Server
Encrypting all the Stored Procedures of a Database
by
qadirv
Tip/Trick
18 Nov 2014
license:
CPOL
Quick C# console application to encrypt all your database stored procedures
General Programming
»
Programming Tips
»
General
SQL-server-2005
C#
SQL-Server
Visual-Studio
SQL-Server
Encryption
smo
Unable to attach sql database (Microsoft SQL Server, Error: 5120)
by
Nagi Setty Akuthota
Answer
12 Nov 2014
license:
CPOL
Change the permission levels to FullControl for that *.mdf file, which ever you trying to attach the database for loggedIn user account.
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL
SQL-Server
how to store history of data changes
by
- NA -
Answer
12 Nov 2014
license:
CPOL
dasf dsafsdpublic static void mainResponse.Write("Error Message" + EX.exception);
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
C#
ASP.NET
SQL-Server
SQL Server service failed to start
by
Kiran Shrihari Shenvi
Answer
8 Nov 2014
license:
CPOL
To solve this problem, you may need to repair your SQL Server 2005Simple steps can be1. Update/Install .Net 2.0 framework. Windows Installer 3.1 available online recommended2. Download the setup file from Microsoft website...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL-Server
merge to table into one table avoiding duplicated values
by
Manas Bhardwaj
Answer
8 Nov 2014
license:
CPOL
Your question is not clear. But I am assuming that your first table is the Salary table and the second one which has been paid out.Based on the vagueness of your question, I guess this is what you want:SELECT Salary.ID, Salary.Name, Salary.Address, CASE WHEN...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL-Server
merge to table into one table avoiding duplicated values
by
Moses Geo
Question
8 Nov 2014
license:
CPOL
table 1ID Name Address Basic_Salary Basic_Allowance1 Moses MTM 1000 5002 GEO NGL 3000 1500Another table table 2ID Name Address Salary Allowance Month1 Moses MTM 800 220 NovI Need...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL-Server
delete all duplicate rows in a table (if a row is duplicated once, both rows should be deleted)
by
Shweta N Mishra
Answer
6 Nov 2014
license:
CPOL
You may try this alsoSELECT col1,col2,col3,col4, col5into #DuplicatesFROM table2GROUP BY col1,col2,col3,col4, col5HAVING count(1) > 1 delete from table2 tbl2 where exists(select col1,col2,col3,col4, col5 from #Duplicates dupwhere tbl2.col1=dup.col1 and tbl2.col2=dup.col2 and...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL
SQL-Server
delete all duplicate rows in a table (if a row is duplicated once, both rows should be deleted)
by
Member 10454138
Answer
6 Nov 2014
license:
CPOL
If I understand your requirements correctly.The primary key constraint on table1 needs to be dropped.--data setup for testingdeclare @table2 table(col1 int, col2 int, col3 int, col4 int, col5 int, col6 varchar(10));declare @table1 table(col1 int, col2 int, col3 int, col4 int, col5 int,...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL
SQL-Server
delete all duplicate rows in a table (if a row is duplicated once, both rows should be deleted)
by
DamithSL
Answer
6 Nov 2014
license:
CPOL
check this DEMO[^]you can use SQL INSERT INTO SELECT Statement[^] with group by
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL
SQL-Server
Unable to attach sql database (Microsoft SQL Server, Error: 5120)
by
Hossein.Ziabakhsh
Answer
6 Nov 2014
license:
CPOL
1- Run SQL Server Management as Administrator2- Login SQL Server with Windows Authenticate3- Attach you DB Files
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL
SQL-Server
delete all duplicate rows in a table (if a row is duplicated once, both rows should be deleted)
by
Manas Bhardwaj
Answer
5 Nov 2014
license:
CPOL
I am not sure why you need to delete rows before you copy them to Table1.What I would suggest is get the DISTINCT rows from Table2 and then insert them in Table1INSERT INTO Table1SELECT DISTINCT Column1, Column2, Column3 Column4, Column5 FROM Table2
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL
SQL-Server
delete all duplicate rows in a table (if a row is duplicated once, both rows should be deleted)
by
getbacktosrinu
Question
5 Nov 2014
license:
CPOL
My scenario is this:I have two tables table1 and table2.Both of them are identical except that table2 has no primary key or constraints.I need to copy data from table2 to table1.table1 does not accept duplicate rows.The primary key in table1 is based on 5 columns col1, col2,...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL
SQL-Server
need date as row wise for the range of dates
by
Maciej Los
Answer
4 Nov 2014
license:
CPOL
I prefer CTE[^] rather than WHILE loop ;)DECLARE @startDate DATETIME = '2014-10-30'DECLARE @finishDate DATETIME = '2014-11-04' ;WITH MyDates AS( SELECT @startDate AS MyDate UNION ALL SELECT DATEADD(DD,1,MyDate) AS MyDate FROM MyDates WHERE...
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL-Server
need date as row wise for the range of dates
by
DamithSL
Answer
4 Nov 2014
license:
CPOL
sample code:SET @CurrentDate = @startDateWHILE @CurrentDate
General Programming
»
Uncategorised Quick Answers
»
General
SQL-server-2005
SQL-Server
Page 1 of 226
1
2
3
4
5
6
7
8
9
10
First
·
Prev
·
Next
·
Last
Advertise
|
Privacy
|
Mobile
Web03 | 2.8.150321.1 | Last Updated 23 Mar 2015
Copyright ©
CodeProject
, 1999-2015
All Rights Reserved.
Terms of Service
Layout:
fixed
|
fluid