Incorrect syntax errors in sql server function. Please help.
This is my sql server function: create function dbo.CleanTheStringAdv (@theString nvarchar(500), @CleanMode as int) returns nvarchar(500) begin --define variables declare...
View ArticleI Cant find Sql Server 2014 express edition after installing it. How do I...
Hello, I have Installed Sql Server 2014 Express edition and downloaded the AdventureWorks 2014 database and Back up files.I cannot find an Icon for the Sql Server on my Desktop to start the...
View Articlesql server function never gets executed. Was able to create it without any...
Below is the function: create function dbo.CleanTheStringAdv (@theString as nvarchar(500), @CleanMode as nvarchar(500)) returns nvarchar(500) AS begin --define variables declare...
View ArticleHow to find a record then edit using sql server management studio
Hello,A very basic question:I want to find a record stored in MS SQL Server 2008 express database table then edit the record.I tried to do it using SQL Server 2008 management studio express because I...
View ArticleSQL Server 2012 installation
During the installation of Microsoft SQL Server 2012 Express with Advanced features, I get this error ' Library not registered'when I hit cancel and proceed, the installation is completed with errors...
View Articlehow to use multiple statements inside the "THEN" block of CASE statement?
Below is the code:SET @strTempString = case @strKeyModeWHEN 'AUTO/CYCLE'THEN @strRefID + '|' + @strRetIDWHEN 'CYCLE'THEN @strRefID + '|' + @strRetIDWHEN 'COMMERCIAL'THEN @strRefID + '|' +...
View Articlesql server function returns nothing. Please help
Below are the functions: create function dbo.BuildRecordKey (@strRefID as nvarchar(500), @strRetID as nvarchar(500), @strFName as nvarchar(500), @strLName as nvarchar(500), @strZIPorPolType as...
View ArticleThe remote procedure call failed. [0x800706be]
I have just installed "SQL Server 2008 R2 Express with Advanced Services" on my Windows 7 workstation. I'm going through the Walkthrough: Installing and Configuring SQL Server 2008 R2 Express with...
View ArticleUnable to execute update query. Can't we use a query within a update query...
Below is the query: UPDATE (select * from [HR_DEV_DM].[CFQ_TEST].CFQ_Referrals as CFRQ LEFT JOIN [HR_DEV_DM].[CFQ_TEST].t_Chg_Rsns as CHGRSNS ON CFRQ.RecChangeID = CHGRSNS.Chg_ReasID) INNER JOIN...
View ArticleNeed help in troubleshooting slow MSSL DB
Hi All, Need help in trobleshooting a slow database. One of our customer setup having below configuration is performing very slow. Customer setup configuration: OS: 64 bit Windows 2008 server machine...
View ArticleSQL Server Express 2014 CTP2 LocalDB
I just installed 2014 SQL Express and everything looked like it worked just fine.Too fine for my own good because it updated the database files to version 782 and now I am stuck.I cannot get SQL Server...
View ArticleWhy does web platform installer only offer older versions of SQL server express
Pardon a possibly dumb question, but -- I just fired up a new server with Windows 2012 as the OS. When adding the IIS role, I was prodded to install the Web Platform Installer to make everything else...
View ArticleSQL Server Express 2012 SP2 installation hangs during extract phase
Greetings!I am having an issue with trying to silent install SQL Server Express 2012 SP2 (x86).I have a proprietary installation framework, which is calling the SQL Server Express installer.The SQL...
View ArticleHow to install sql server on Windows 8
Hello Everyoene,I want to install Sql server express or any free edition of sql server in Windows 8. Can some one suggext how to do this?RegardsGautamGautam S
View ArticleTrouble using the "into" keyword in a select statement
I was able to run the below query fine:SELECT QTTYP.Qt_Grp, CFQR.ReferralCode, CFQR.RecKey, Count(CFQR.RecKey) AS Cnt FROM [HR_DEV_DM].[CFQ_TEST].CFQ_Referrals as CFQR INNER JOIN...
View ArticleDoes it exist a boolean data type in SQL SERVER ?
Hello. A question please. To define a column of a table in SqlServer, Does it exist a boolean data type ? Thanks...
View ArticleOverlapped I/O operation in progress on install and crypt provider not...
I have found a solution to the above problem with a SQL server express 2008 install, it's a buggy windows update, KB2918614 and when other programs are installed (On one system there were a couple of...
View Articlehow to recover deleted attached mdf file from sql server management studio
Hi everyone I've faced very bad problem I had a mdf file that created in visual studio, and then I had attached this file to sql server management studio and after that, when I wanted to deattach this...
View ArticleNon-Production Environment Defintion
We are a software application development company and we develop java based application connecting SQL server as a back end DB. Which eventually gets deployed on customer site. For development and...
View ArticleHow do I open the Database Tables in the Object Explorer window.
I tried clicking on them and right clicking but they dont open.
View Article