|
More site info...
Microsoft SQL Server | Forum profile
|
|
Forum profile page for Microsoft SQL Server on http://www.aspfree.com.
This report page is the aggregated overview from a single forum: Microsoft SQL Server, located on the Message Board at http://www.aspfree.com.
This forum profile page summarizes the general forum statistics such as: Users Activity, Forum Activity, and Top Authors, which are reported in either a table or graph below for a given reporting time period.
Additional forum profile information for "Microsoft SQL Server" on the Message Board at http://www.aspfree.com is also shown in the following ways:
1) Latest Active Threads
2) Hot Threads for Last Week
Warning: These statistics are generated using 'best efforts' and can experience delays and reporting errors at times. Please note that such statistics do not constitute a forum's popularity and/or exact posting volumes at any given reporting period.
|
|
|
|
|
Posting activity on Microsoft SQL Server:
|
|
Week
|
Month
|
3 Months
|
|
Threads:
|
10
|
31
|
96
|
|
Post:
|
13
|
43
|
154
|
|
|
Microsoft SQL Server Posting activity graph:
|
Top authors during last week:
user's latest post:
[General] Is this possible?
Published (2009-11-24 07:50:00)
Your not in the right forum, your in the wrong website. This sounds like a Office issue at least. Read this: http://office.microsoft.com/en-us/a...0950951033.aspx
user's latest post:
[T-SQL] Count
Published (2009-11-23 12:50:00)
Not to worry. Done it by using HAVING. Thanks anyway.
user's latest post:
[Stored Procedures] Returning...
Published (2009-11-24 07:33:00)
Quote: Originally Posted by markoc are you trying to do something like: Code: CREATE TABLE dbo.tblComment ( Id int IDENTITY(20001,1) NOT NULL, KeyId int NULL, Line_No int NULL, Comment nvarchar(8000) NULL ) GO ALTER TABLE dbo.tblComment ADD CONSTRAINT PK_tblComment_ID PRIMARY KEY (ID) GO -- ################################## CREATE PROCEDURE Comment_Add ( @KeyID int, @Comment nvarchar(8000), @NewId int OUTPUT ) AS BEGIN DECLARE @LineNo int IF...
user's latest post:
Data Transfer from Access
Published (2009-11-19 11:12:00)
Hi all, I am new on the forum so hello! I am needing to do a data migration from an Access database to Mssql. I really havent found much info on the forums. Would you know how to do this? Thanks for helping.
user's latest post:
Data Transfer from Access
Published (2009-11-19 11:26:00)
Hi, and welcome to the forums. What version of MS SQLServer are you running?
user's latest post:
Data Transfer from Access
Published (2009-11-20 03:49:00)
Should be fairly easy and straight forward using linked tables. Depending on what version you have (of the admin tool I think) there may even be a data import tool that will just suck the schema and data straight out of your access table into mssql.
user's latest post:
[SQL Server 2000] How do i...
Published (2009-11-23 04:32:00)
I need to remove all double quotes from 1 field in my database. but it has over 200,000 records and 660 of them have double quotes atleast once or twce in the field. Is there an easy code to use to replace all double quotes with a space?
user's latest post:
[SQL Server 2000] How do i...
Published (2009-11-23 05:47:00)
This link says that we have a Replace function for sql server 2000. http://www.mssqltips.com/tip.asp?tip=1026 So try something like this Code: Update tblTableName Set FieldName=Replace(FieldName, '""',' ') I havent tested it, so please test it once for 1 record before.
user's latest post:
[Stored Procedures] Returning...
Published (2009-11-23 21:21:00)
are you trying to do something like: Code: CREATE TABLE dbo.tblComment ( Id int IDENTITY(20001,1) NOT NULL, KeyId int NULL, Line_No int NULL, Comment nvarchar(8000) NULL ) GO ALTER TABLE dbo.tblComment ADD CONSTRAINT PK_tblComment_ID PRIMARY KEY (ID) GO -- ################################## CREATE PROCEDURE Comment_Add ( @KeyID int, @Comment nvarchar(8000), @NewId int OUTPUT ) AS BEGIN DECLARE @LineNo int IF ( EXISTS( SELECT @LineNo = Line_No...
user's latest post:
[SQL Server 2000] SQL Server...
Published (2009-11-27 09:52:00)
Hello, I tried to run the ASP script with the same script for both Access and SQL Server. Access database works fine. SQL server database don't work and shows the syntax error. I think DateSerial causes this error. How do I change the query and make it work? student_dob >=#" & DateSerial(yr(3), mo(3), 3) & "# Thanks very much!
|
|
|
|
Latest active threads on Microsoft SQL Server::
Started 4 days, 16 hours ago (2009-11-24 07:50:00)
by ghadacr
Your not in the right forum, your in the wrong website. This sounds like a Office issue at least.
Read this:
http://office.microsoft.com/en-us/a...0950951033.a spx
Started 5 days, 3 hours ago (2009-11-23 21:21:00)
by markoc
are you trying to do something like:
Code:
CREATE TABLE dbo.tblComment
(
Id int IDENTITY(20001,1) NOT NULL,
KeyId int NULL,
Line_No int NULL,
Comment nvarchar(8000) NULL
)
GO
ALTER TABLE dbo.tblComment
ADD CONSTRAINT PK_tblComment_ID PRIMARY KEY (ID)
GO
-- ##################################
CREATE PROCEDURE Comment_Add
(
@KeyID ...
Started 5 days, 11 hours ago (2009-11-23 12:50:00)
by ldoodle
Not to worry. Done it by using HAVING.
Thanks anyway.
Started 5 days, 18 hours ago (2009-11-23 05:47:00)
by micky
This link says that we have a Replace function for sql server 2000.
http://www.mssqltips.com/tip.asp?tip=1026
So try something like this
Code:
Update tblTableName Set FieldName=Replace(FieldName, '""',' ')
I havent tested it, so please test it once for 1 record before.
Started 1 week, 2 days ago (2009-11-19 11:26:00)
by sync_or_swim
Hi, and welcome to the forums. What version of MS SQLServer are you running?
Started 1 week, 4 days ago (2009-11-17 09:16:00)
by mykeblack
Quote: Originally Posted by cijojohn Im using SQL server 2008 to import a database from a different server. both the servers are sql server 2008
Some of my source tables have identity column.
During import the identity columns are not getting created as identity in my destination database.
The column looses the identity property. i'm also loosing ...
Started 1 week, 4 days ago (2009-11-17 08:40:00)
by q97
Didn't I answer this question already?
You don't need to create anything in tempdb, you need to rethink your strategy. Use your own tables, and leave the system ones alone.
Ask again and I'm invoicing the full hour @$150+GST.
|
|
Hot threads for last week on Microsoft SQL Server::
Started 5 days, 18 hours ago (2009-11-23 05:47:00)
by micky
This link says that we have a Replace function for sql server 2000.
http://www.mssqltips.com/tip.asp?tip=1026
So try something like this
Code:
Update tblTableName Set FieldName=Replace(FieldName, '""',' ')
I havent tested it, so please test it once for 1 record before.
Started 5 days, 11 hours ago (2009-11-23 12:50:00)
by ldoodle
Not to worry. Done it by using HAVING.
Thanks anyway.
Started 5 days, 3 hours ago (2009-11-23 21:21:00)
by markoc
are you trying to do something like:
Code:
CREATE TABLE dbo.tblComment
(
Id int IDENTITY(20001,1) NOT NULL,
KeyId int NULL,
Line_No int NULL,
Comment nvarchar(8000) NULL
)
GO
ALTER TABLE dbo.tblComment
ADD CONSTRAINT PK_tblComment_ID PRIMARY KEY (ID)
GO
-- ##################################
CREATE PROCEDURE Comment_Add
(
@KeyID ...
Started 1 week, 2 days ago (2009-11-19 11:26:00)
by sync_or_swim
Hi, and welcome to the forums. What version of MS SQLServer are you running?
Started 4 days, 16 hours ago (2009-11-24 07:50:00)
by ghadacr
Your not in the right forum, your in the wrong website. This sounds like a Office issue at least.
Read this:
http://office.microsoft.com/en-us/a...0950951033.a spx
|
|